lincity-1.13.1/0000777000175000017500000000000010073426330010253 500000000000000lincity-1.13.1/intl/0000777000175000017500000000000010073426327011227 500000000000000lincity-1.13.1/intl/ChangeLog0000644000175000017500000000011107627052670012715 000000000000002002-08-06 GNU * Version 0.11.5 released. lincity-1.13.1/intl/Makefile.in0000644000175000017500000002515407627052670013226 00000000000000# Makefile for directory with message catalog handling in GNU NLS Utilities. # Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library 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. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = .. VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ transform = @program_transform_name@ libdir = @libdir@ includedir = @includedir@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/intl aliaspath = $(localedir) subdir = intl INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` l = @INTL_LIBTOOL_SUFFIX_PREFIX@ AR = ar CC = @CC@ LIBTOOL = @LIBTOOL@ RANLIB = @RANLIB@ YACC = @INTLBISON@ -y -d YFLAGS = --name-prefix=__gettext DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ -DLIBDIR=\"$(libdir)\" -DIN_LIBINTL @DEFS@ CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) HEADERS = $(COMHDRS) libgnuintl.h loadinfo.h COMHDRS = gmo.h gettextP.h hash-string.h plural-exp.h eval-plural.h os2compat.h SOURCES = $(COMSRCS) intl-compat.c COMSRCS = bindtextdom.c dcgettext.c dgettext.c gettext.c \ finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c \ explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y \ plural-exp.c localcharset.c localename.c osdep.c os2compat.c OBJECTS = @INTLOBJS@ bindtextdom.$lo dcgettext.$lo dgettext.$lo gettext.$lo \ finddomain.$lo loadmsgcat.$lo localealias.$lo textdomain.$lo l10nflist.$lo \ explodename.$lo dcigettext.$lo dcngettext.$lo dngettext.$lo ngettext.$lo \ plural.$lo plural-exp.$lo localcharset.$lo localename.$lo osdep.$lo GETTOBJS = intl-compat.$lo DISTFILES.common = Makefile.in \ config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES) DISTFILES.generated = plural.c DISTFILES.normal = VERSION DISTFILES.gettext = COPYING.LIB-2.0 COPYING.LIB-2.1 libintl.glibc DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \ COPYING.LIB-2 gettext.h libgettext.h plural-eval.c # Libtool's library version information for libintl. # Before making a gettext release, the gettext maintainer must change this # according to the libtool documentation, section "Library interface versions". # Maintainers of other packages that include the intl directory must *not* # change these values. LTV_CURRENT=4 LTV_REVISION=0 LTV_AGE=2 .SUFFIXES: .SUFFIXES: .c .y .o .lo .sin .sed .c.o: $(COMPILE) $< .c.lo: $(LIBTOOL) --mode=compile $(COMPILE) $< .y.c: $(YACC) $(YFLAGS) --output $@ $< rm -f $*.h .sin.sed: sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@ mv t-$@ $@ INCLUDES = -I.. -I. -I$(top_srcdir)/intl all: all-@USE_INCLUDED_LIBINTL@ all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed all-no: all-no-@BUILD_INCLUDED_LIBINTL@ all-no-yes: libgnuintl.$la all-no-no: libintl.a libgnuintl.a: $(OBJECTS) rm -f $@ $(AR) cru $@ $(OBJECTS) $(RANLIB) $@ libintl.la libgnuintl.la: $(OBJECTS) $(LIBTOOL) --mode=link \ $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \ $(OBJECTS) @LTLIBICONV@ -lc \ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ -rpath $(libdir) \ -no-undefined libintl.h: libgnuintl.h cp $(srcdir)/libgnuintl.h libintl.h charset.alias: config.charset $(SHELL) $(srcdir)/config.charset '@host@' > t-$@ mv t-$@ $@ check: all # This installation goal is only used in GNU gettext. Packages which # only use the library should use install instead. # We must not install the libintl.h/libintl.a files if we are on a # system which has the GNU gettext() function in its C library or in a # separate library. # If you want to use the one which comes with this version of the # package, you have to use `configure --with-included-gettext'. install: install-exec install-data install-exec: all if test "$(PACKAGE)" = "gettext" \ && test '@INTLOBJS@' = '$(GETTOBJS)'; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ orig=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ if test @GLIBC21@ = no; then \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ fi; \ fi; \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ test -f $(DESTDIR)$(localedir)/locale.alias \ && orig=$(DESTDIR)$(localedir)/locale.alias \ || orig=$(srcdir)/locale.alias; \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ : ; \ fi install-data: all if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \ $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \ dists="COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common)"; \ for file in $$dists; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \ dists="$(DISTFILES.generated)"; \ for file in $$dists; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ $(INSTALL_DATA) $$dir/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ dists="$(DISTFILES.obsolete)"; \ for file in $$dists; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-strip: install installdirs: if test "$(PACKAGE)" = "gettext" \ && test '@INTLOBJS@' = '$(GETTOBJS)'; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi # Define this as empty until I found a useful application. installcheck: uninstall: if test "$(PACKAGE)" = "gettext" \ && test '@INTLOBJS@' = '$(GETTOBJS)'; then \ rm -f $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libintl.$la; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ if test -f $(DESTDIR)$(localedir)/locale.alias; then \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext"; then \ for file in VERSION ChangeLog COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi info dvi: $(OBJECTS): ../config.h libgnuintl.h bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo textdomain.$lo: gettextP.h gmo.h loadinfo.h dcigettext.$lo: hash-string.h explodename.$lo l10nflist.$lo: loadinfo.h dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: plural-exp.h dcigettext.$lo: eval-plural.h tags: TAGS TAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES) id: ID ID: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES) mostlyclean: rm -f *.a *.la *.o *.lo core core.* rm -f libintl.h charset.alias ref-add.sed ref-del.sed rm -f -r .libs _libs clean: mostlyclean distclean: clean rm -f Makefile ID TAGS if test "$(PACKAGE)" = gettext; then \ rm -f ChangeLog.inst $(DISTFILES.normal); \ else \ : ; \ fi maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." # GNU gettext needs not contain the file `VERSION' but contains some # other files which should not be distributed in other packages. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: Makefile if test "$(PACKAGE)" = gettext; then \ additional="$(DISTFILES.gettext)"; \ else \ additional="$(DISTFILES.normal)"; \ fi; \ $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \ for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ cp -p $$dir/$$file $(distdir); \ done Makefile: Makefile.in ../config.status cd .. \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: lincity-1.13.1/intl/config.charset0000644000175000017500000003341207627052670013775 00000000000000#! /bin/sh # Output a system dependent table of character encoding aliases. # # Copyright (C) 2000-2002 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library 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. # # The table consists of lines of the form # ALIAS CANONICAL # # ALIAS is the (system dependent) result of "nl_langinfo (CODESET)". # ALIAS is compared in a case sensitive way. # # CANONICAL is the GNU canonical name for this character encoding. # It must be an encoding supported by libiconv. Support by GNU libc is # also desirable. CANONICAL is case insensitive. Usually an upper case # MIME charset name is preferred. # The current list of GNU canonical charset names is as follows. # # name used by which systems a MIME name? # ASCII, ANSI_X3.4-1968 glibc solaris freebsd # ISO-8859-1 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-2 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-3 glibc solaris yes # ISO-8859-4 osf solaris freebsd yes # ISO-8859-5 glibc aix hpux irix osf solaris freebsd yes # ISO-8859-6 glibc aix hpux solaris yes # ISO-8859-7 glibc aix hpux irix osf solaris yes # ISO-8859-8 glibc aix hpux osf solaris yes # ISO-8859-9 glibc aix hpux irix osf solaris yes # ISO-8859-13 glibc # ISO-8859-14 glibc # ISO-8859-15 glibc aix osf solaris freebsd # KOI8-R glibc solaris freebsd yes # KOI8-U glibc freebsd yes # KOI8-T glibc # CP437 dos # CP775 dos # CP850 aix osf dos # CP852 dos # CP855 dos # CP856 aix # CP857 dos # CP861 dos # CP862 dos # CP864 dos # CP865 dos # CP866 freebsd dos # CP869 dos # CP874 woe32 dos # CP922 aix # CP932 aix woe32 dos # CP943 aix # CP949 osf woe32 dos # CP950 woe32 dos # CP1046 aix # CP1124 aix # CP1125 dos # CP1129 aix # CP1250 woe32 # CP1251 glibc woe32 # CP1252 aix woe32 # CP1253 woe32 # CP1254 woe32 # CP1255 glibc woe32 # CP1256 woe32 # CP1257 woe32 # GB2312 glibc aix hpux irix solaris freebsd yes # EUC-JP glibc aix hpux irix osf solaris freebsd yes # EUC-KR glibc aix hpux irix osf solaris freebsd yes # EUC-TW glibc aix hpux irix osf solaris # BIG5 glibc aix hpux osf solaris freebsd yes # BIG5-HKSCS glibc solaris # GBK glibc aix osf solaris woe32 dos # GB18030 glibc solaris # SHIFT_JIS hpux osf solaris freebsd yes # JOHAB glibc solaris woe32 # TIS-620 glibc aix hpux osf solaris # VISCII glibc yes # TCVN5712-1 glibc # GEORGIAN-PS glibc # HP-ROMAN8 hpux # HP-ARABIC8 hpux # HP-GREEK8 hpux # HP-HEBREW8 hpux # HP-TURKISH8 hpux # HP-KANA8 hpux # DEC-KANJI osf # DEC-HANYU osf # UTF-8 glibc aix hpux osf solaris yes # # Note: Names which are not marked as being a MIME name should not be used in # Internet protocols for information interchange (mail, news, etc.). # # Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications # must understand both names and treat them as equivalent. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM host="$1" os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'` echo "# This file contains a table of character encoding aliases," echo "# suitable for operating system '${os}'." echo "# It was automatically generated from config.charset." # List of references, updated during installation: echo "# Packages using this file: " case "$os" in linux* | *-gnu*) # With glibc-2.1 or newer, we don't need any canonicalization, # because glibc has iconv and both glibc and libiconv support all # GNU canonical names directly. Therefore, the Makefile does not # need to install the alias file at all. # The following applies only to glibc-2.0.x and older libcs. echo "ISO_646.IRV:1983 ASCII" ;; aix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "IBM-850 CP850" echo "IBM-856 CP856" echo "IBM-921 ISO-8859-13" echo "IBM-922 CP922" echo "IBM-932 CP932" echo "IBM-943 CP943" echo "IBM-1046 CP1046" echo "IBM-1124 CP1124" echo "IBM-1129 CP1129" echo "IBM-1252 CP1252" echo "IBM-eucCN GB2312" echo "IBM-eucJP EUC-JP" echo "IBM-eucKR EUC-KR" echo "IBM-eucTW EUC-TW" echo "big5 BIG5" echo "GBK GBK" echo "TIS-620 TIS-620" echo "UTF-8 UTF-8" ;; hpux*) echo "iso88591 ISO-8859-1" echo "iso88592 ISO-8859-2" echo "iso88595 ISO-8859-5" echo "iso88596 ISO-8859-6" echo "iso88597 ISO-8859-7" echo "iso88598 ISO-8859-8" echo "iso88599 ISO-8859-9" echo "iso885915 ISO-8859-15" echo "roman8 HP-ROMAN8" echo "arabic8 HP-ARABIC8" echo "greek8 HP-GREEK8" echo "hebrew8 HP-HEBREW8" echo "turkish8 HP-TURKISH8" echo "kana8 HP-KANA8" echo "tis620 TIS-620" echo "big5 BIG5" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "hp15CN GB2312" #echo "ccdc ?" # what is this? echo "SJIS SHIFT_JIS" echo "utf8 UTF-8" ;; irix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-9 ISO-8859-9" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" ;; osf*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "cp850 CP850" echo "big5 BIG5" echo "dechanyu DEC-HANYU" echo "dechanzi GB2312" echo "deckanji DEC-KANJI" echo "deckorean EUC-KR" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "GBK GBK" echo "KSC5601 CP949" echo "sdeckanji EUC-JP" echo "SJIS SHIFT_JIS" echo "TACTIS TIS-620" echo "UTF-8 UTF-8" ;; solaris*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-3 ISO-8859-3" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "koi8-r KOI8-R" echo "BIG5 BIG5" echo "Big5-HKSCS BIG5-HKSCS" echo "gb2312 GB2312" echo "GBK GBK" echo "GB18030 GB18030" echo "cns11643 EUC-TW" echo "5601 EUC-KR" echo "ko_KR.johap92 JOHAB" echo "eucJP EUC-JP" echo "PCK SHIFT_JIS" echo "TIS620.2533 TIS-620" #echo "sun_eu_greek ?" # what is this? echo "UTF-8 UTF-8" ;; freebsd* | os2*) # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just # reuse FreeBSD's locale data for OS/2. echo "C ASCII" echo "US-ASCII ASCII" for l in la_LN lt_LN; do echo "$l.ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \ lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do echo "$l.ISO_8859-1 ISO-8859-1" echo "$l.DIS_8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do echo "$l.ISO_8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO_8859-4 ISO-8859-4" done for l in ru_RU ru_SU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO_8859-5 ISO-8859-5" echo "$l.CP866 CP866" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ja_JP.Shift_JIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; netbsd*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-15 ISO-8859-15" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "BIG5 BIG5" echo "SJIS SHIFT_JIS" ;; beos*) # BeOS has a single locale, and it has UTF-8 encoding. echo "* UTF-8" ;; msdosdjgpp*) # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "#" echo "# The encodings given here may not all be correct." echo "# If you find that the encoding given for your language and" echo "# country is not the one your DOS machine actually uses, just" echo "# correct it in this file, and send a mail to" echo "# Juan Manuel Guerrero " echo "# and Bruno Haible ." echo "#" echo "C ASCII" # ISO-8859-1 languages echo "ca CP850" echo "ca_ES CP850" echo "da CP865" # not CP850 ?? echo "da_DK CP865" # not CP850 ?? echo "de CP850" echo "de_AT CP850" echo "de_CH CP850" echo "de_DE CP850" echo "en CP850" echo "en_AU CP850" # not CP437 ?? echo "en_CA CP850" echo "en_GB CP850" echo "en_NZ CP437" echo "en_US CP437" echo "en_ZA CP850" # not CP437 ?? echo "es CP850" echo "es_AR CP850" echo "es_BO CP850" echo "es_CL CP850" echo "es_CO CP850" echo "es_CR CP850" echo "es_CU CP850" echo "es_DO CP850" echo "es_EC CP850" echo "es_ES CP850" echo "es_GT CP850" echo "es_HN CP850" echo "es_MX CP850" echo "es_NI CP850" echo "es_PA CP850" echo "es_PY CP850" echo "es_PE CP850" echo "es_SV CP850" echo "es_UY CP850" echo "es_VE CP850" echo "et CP850" echo "et_EE CP850" echo "eu CP850" echo "eu_ES CP850" echo "fi CP850" echo "fi_FI CP850" echo "fr CP850" echo "fr_BE CP850" echo "fr_CA CP850" echo "fr_CH CP850" echo "fr_FR CP850" echo "ga CP850" echo "ga_IE CP850" echo "gd CP850" echo "gd_GB CP850" echo "gl CP850" echo "gl_ES CP850" echo "id CP850" # not CP437 ?? echo "id_ID CP850" # not CP437 ?? echo "is CP861" # not CP850 ?? echo "is_IS CP861" # not CP850 ?? echo "it CP850" echo "it_CH CP850" echo "it_IT CP850" echo "lt CP775" echo "lt_LT CP775" echo "lv CP775" echo "lv_LV CP775" echo "nb CP865" # not CP850 ?? echo "nb_NO CP865" # not CP850 ?? echo "nl CP850" echo "nl_BE CP850" echo "nl_NL CP850" echo "nn CP865" # not CP850 ?? echo "nn_NO CP865" # not CP850 ?? echo "no CP865" # not CP850 ?? echo "no_NO CP865" # not CP850 ?? echo "pt CP850" echo "pt_BR CP850" echo "pt_PT CP850" echo "sv CP850" echo "sv_SE CP850" # ISO-8859-2 languages echo "cs CP852" echo "cs_CZ CP852" echo "hr CP852" echo "hr_HR CP852" echo "hu CP852" echo "hu_HU CP852" echo "pl CP852" echo "pl_PL CP852" echo "ro CP852" echo "ro_RO CP852" echo "sk CP852" echo "sk_SK CP852" echo "sl CP852" echo "sl_SI CP852" echo "sq CP852" echo "sq_AL CP852" echo "sr CP852" # CP852 or CP866 or CP855 ?? echo "sr_YU CP852" # CP852 or CP866 or CP855 ?? # ISO-8859-3 languages echo "mt CP850" echo "mt_MT CP850" # ISO-8859-5 languages echo "be CP866" echo "be_BE CP866" echo "bg CP866" # not CP855 ?? echo "bg_BG CP866" # not CP855 ?? echo "mk CP866" # not CP855 ?? echo "mk_MK CP866" # not CP855 ?? echo "ru CP866" echo "ru_RU CP866" echo "uk CP1125" echo "uk_UA CP1125" # ISO-8859-6 languages echo "ar CP864" echo "ar_AE CP864" echo "ar_DZ CP864" echo "ar_EG CP864" echo "ar_IQ CP864" echo "ar_IR CP864" echo "ar_JO CP864" echo "ar_KW CP864" echo "ar_MA CP864" echo "ar_OM CP864" echo "ar_QA CP864" echo "ar_SA CP864" echo "ar_SY CP864" # ISO-8859-7 languages echo "el CP869" echo "el_GR CP869" # ISO-8859-8 languages echo "he CP862" echo "he_IL CP862" # ISO-8859-9 languages echo "tr CP857" echo "tr_TR CP857" # Japanese echo "ja CP932" echo "ja_JP CP932" # Chinese echo "zh_CN GBK" echo "zh_TW CP950" # not CP938 ?? # Korean echo "kr CP949" # not CP934 ?? echo "kr_KR CP949" # not CP934 ?? # Thai echo "th CP874" echo "th_TH CP874" # Other echo "eo CP850" echo "eo_EO CP850" ;; esac lincity-1.13.1/intl/locale.alias0000644000175000017500000000514107627052670013425 00000000000000# Locale name alias data base. # Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library 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. # The format of this file is the same as for the corresponding file of # the X Window System, which normally can be found in # /usr/lib/X11/locale/locale.alias # A single line contains two fields: an alias and a substitution value. # All entries are case independent. # Note: This file is far from being complete. If you have a value for # your own site which you think might be useful for others too, share # it with the rest of us. Send it using the `glibcbug' script to # bugs@gnu.org. # Packages using this file: bokmal no_NO.ISO-8859-1 bokmċl no_NO.ISO-8859-1 catalan ca_ES.ISO-8859-1 croatian hr_HR.ISO-8859-2 czech cs_CZ.ISO-8859-2 danish da_DK.ISO-8859-1 dansk da_DK.ISO-8859-1 deutsch de_DE.ISO-8859-1 dutch nl_NL.ISO-8859-1 eesti et_EE.ISO-8859-1 estonian et_EE.ISO-8859-1 finnish fi_FI.ISO-8859-1 français fr_FR.ISO-8859-1 french fr_FR.ISO-8859-1 galego gl_ES.ISO-8859-1 galician gl_ES.ISO-8859-1 german de_DE.ISO-8859-1 greek el_GR.ISO-8859-7 hebrew he_IL.ISO-8859-8 hrvatski hr_HR.ISO-8859-2 hungarian hu_HU.ISO-8859-2 icelandic is_IS.ISO-8859-1 italian it_IT.ISO-8859-1 japanese ja_JP.eucJP japanese.euc ja_JP.eucJP ja_JP ja_JP.eucJP ja_JP.ujis ja_JP.eucJP japanese.sjis ja_JP.SJIS korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR lithuanian lt_LT.ISO-8859-13 nb_NO no_NO.ISO-8859-1 nb_NO.ISO-8859-1 no_NO.ISO-8859-1 norwegian no_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 portuguese pt_PT.ISO-8859-1 romanian ro_RO.ISO-8859-2 russian ru_RU.ISO-8859-5 slovak sk_SK.ISO-8859-2 slovene sl_SI.ISO-8859-2 slovenian sl_SI.ISO-8859-2 spanish es_ES.ISO-8859-1 swedish sv_SE.ISO-8859-1 thai th_TH.TIS-620 turkish tr_TR.ISO-8859-9 lincity-1.13.1/intl/ref-add.sin0000644000175000017500000000210107627052670013161 00000000000000# Add this package to a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library 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. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// ta :a s/ @PACKAGE@ / @PACKAGE@ / tb s/ $/ @PACKAGE@ / :b s/^/# Packages using this file:/ } lincity-1.13.1/intl/ref-del.sin0000644000175000017500000000202407627052670013201 00000000000000# Remove this package from a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library 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 # Library General Public License for more details. # # You should have received a copy of the GNU Library 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. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// s/ @PACKAGE@ / / s/^/# Packages using this file:/ } lincity-1.13.1/intl/gmo.h0000644000175000017500000001125707627052670012113 00000000000000/* Description of GNU message catalog format: general file layout. Copyright (C) 1995, 1997, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _GETTEXT_H #define _GETTEXT_H 1 #include /* @@ end of prolog @@ */ /* The magic number of the GNU message catalog format. */ #define _MAGIC 0x950412de #define _MAGIC_SWAPPED 0xde120495 /* Revision number of the currently used .mo (binary) file format. */ #define MO_REVISION_NUMBER 0 /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work when cross-compiling. */ #if __STDC__ # define UINT_MAX_32_BITS 4294967295U #else # define UINT_MAX_32_BITS 0xFFFFFFFF #endif /* If UINT_MAX isn't defined, assume it's a 32-bit type. This should be valid for all systems GNU cares about because that doesn't include 16-bit systems, and only modern systems (that certainly have ) have 64+-bit integral types. */ #ifndef UINT_MAX # define UINT_MAX UINT_MAX_32_BITS #endif #if UINT_MAX == UINT_MAX_32_BITS typedef unsigned nls_uint32; #else # if USHRT_MAX == UINT_MAX_32_BITS typedef unsigned short nls_uint32; # else # if ULONG_MAX == UINT_MAX_32_BITS typedef unsigned long nls_uint32; # else /* The following line is intended to throw an error. Using #error is not portable enough. */ "Cannot determine unsigned 32-bit data type." # endif # endif #endif /* Header for binary .mo file format. */ struct mo_file_header { /* The magic number. */ nls_uint32 magic; /* The revision number of the file format. */ nls_uint32 revision; /* The following are only used in .mo files with major revision 0. */ /* The number of strings pairs. */ nls_uint32 nstrings; /* Offset of table with start offsets of original strings. */ nls_uint32 orig_tab_offset; /* Offset of table with start offsets of translated strings. */ nls_uint32 trans_tab_offset; /* Size of hash table. */ nls_uint32 hash_tab_size; /* Offset of first hash table entry. */ nls_uint32 hash_tab_offset; /* The following are only used in .mo files with minor revision >= 1. */ /* The number of system dependent segments. */ nls_uint32 n_sysdep_segments; /* Offset of table describing system dependent segments. */ nls_uint32 sysdep_segments_offset; /* The number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Offset of table with start offsets of original sysdep strings. */ nls_uint32 orig_sysdep_tab_offset; /* Offset of table with start offsets of translated sysdep strings. */ nls_uint32 trans_sysdep_tab_offset; }; /* Descriptor for static string contained in the binary .mo file. */ struct string_desc { /* Length of addressed string, not including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* The following are only used in .mo files with minor revision >= 1. */ /* Descriptor for system dependent string segment. */ struct sysdep_segment { /* Length of addressed string, including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* Descriptor for system dependent string. */ struct sysdep_string { /* Offset of static string segments in file. */ nls_uint32 offset; /* Alternating sequence of static and system dependent segments. The last segment is a static segment, including the trailing NUL. */ struct segment_pair { /* Size of static segment. */ nls_uint32 segsize; /* Reference to system dependent string segment, or ~0 at the end. */ nls_uint32 sysdepref; } segments[1]; }; /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF, regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */ #define SEGMENTS_END ((nls_uint32) ~0) /* @@ begin of epilog @@ */ #endif /* gettext.h */ lincity-1.13.1/intl/gettextP.h0000644000175000017500000001676607627052670013147 00000000000000/* Header describing internals of libintl library. Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _GETTEXTP_H #define _GETTEXTP_H #include /* Get size_t. */ #ifdef _LIBC # include "../iconv/gconv_int.h" #else # if HAVE_ICONV # include # endif #endif #include "loadinfo.h" #include "gmo.h" /* Get nls_uint32. */ /* @@ end of prolog @@ */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif #ifndef W # define W(flag, data) ((flag) ? SWAP (data) : (data)) #endif #ifdef _LIBC # include # define SWAP(i) bswap_32 (i) #else static inline nls_uint32 SWAP (i) nls_uint32 i; { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } #endif /* In-memory representation of system dependent string. */ struct sysdep_string_desc { /* Length of addressed string, including the trailing NUL. */ size_t length; /* Pointer to addressed string. */ const char *pointer; }; /* The representation of an opened message catalog. */ struct loaded_domain { /* Pointer to memory containing the .mo file. */ const char *data; /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */ int use_mmap; /* Size of mmap()ed memory. */ size_t mmap_size; /* 1 if the .mo file uses a different endianness than this machine. */ int must_swap; /* Pointer to additional malloc()ed memory. */ void *malloced; /* Number of static strings pairs. */ nls_uint32 nstrings; /* Pointer to descriptors of original strings in the file. */ const struct string_desc *orig_tab; /* Pointer to descriptors of translated strings in the file. */ const struct string_desc *trans_tab; /* Number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Pointer to descriptors of original sysdep strings. */ const struct sysdep_string_desc *orig_sysdep_tab; /* Pointer to descriptors of translated sysdep strings. */ const struct sysdep_string_desc *trans_sysdep_tab; /* Size of hash table. */ nls_uint32 hash_size; /* Pointer to hash table. */ const nls_uint32 *hash_tab; /* 1 if the hash table uses a different endianness than this machine. */ int must_swap_hash_tab; int codeset_cntr; #ifdef _LIBC __gconv_t conv; #else # if HAVE_ICONV iconv_t conv; # endif #endif char **conv_tab; struct expression *plural; unsigned long int nplurals; }; /* We want to allocate a string at the end of the struct. But ISO C doesn't allow zero sized arrays. */ #ifdef __GNUC__ # define ZERO 0 #else # define ZERO 1 #endif /* A set of settings bound to a message domain. Used to store settings from bindtextdomain() and bind_textdomain_codeset(). */ struct binding { struct binding *next; char *dirname; int codeset_cntr; /* Incremented each time codeset changes. */ char *codeset; char domainname[ZERO]; }; /* A counter which is incremented each time some previous translations become invalid. This variable is part of the external ABI of the GNU libintl. */ extern int _nl_msg_cat_cntr; #ifndef _LIBC const char *_nl_locale_name PARAMS ((int category, const char *categoryname)); #endif struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname, char *__locale, const char *__domainname, struct binding *__domainbinding)) internal_function; void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain, struct binding *__domainbinding)) internal_function; void _nl_unload_domain PARAMS ((struct loaded_domain *__domain)) internal_function; const char *_nl_init_domain_conv PARAMS ((struct loaded_l10nfile *__domain_file, struct loaded_domain *__domain, struct binding *__domainbinding)) internal_function; void _nl_free_domain_conv PARAMS ((struct loaded_domain *__domain)) internal_function; char *_nl_find_msg PARAMS ((struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, size_t *lengthp)) internal_function; #ifdef _LIBC extern char *__gettext PARAMS ((const char *__msgid)); extern char *__dgettext PARAMS ((const char *__domainname, const char *__msgid)); extern char *__dcgettext PARAMS ((const char *__domainname, const char *__msgid, int __category)); extern char *__ngettext PARAMS ((const char *__msgid1, const char *__msgid2, unsigned long int __n)); extern char *__dngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int n)); extern char *__dcngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category)); extern char *__dcigettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category)); extern char *__textdomain PARAMS ((const char *__domainname)); extern char *__bindtextdomain PARAMS ((const char *__domainname, const char *__dirname)); extern char *__bind_textdomain_codeset PARAMS ((const char *__domainname, const char *__codeset)); #else extern char *libintl_gettext PARAMS ((const char *__msgid)); extern char *libintl_dgettext PARAMS ((const char *__domainname, const char *__msgid)); extern char *libintl_dcgettext PARAMS ((const char *__domainname, const char *__msgid, int __category)); extern char *libintl_ngettext PARAMS ((const char *__msgid1, const char *__msgid2, unsigned long int __n)); extern char *libintl_dngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n)); extern char *libintl_dcngettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category)); extern char *libintl_dcigettext PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category)); extern char *libintl_textdomain PARAMS ((const char *__domainname)); extern char *libintl_bindtextdomain PARAMS ((const char *__domainname, const char *__dirname)); extern char *libintl_bind_textdomain_codeset PARAMS ((const char *__domainname, const char *__codeset)); #endif /* @@ begin of epilog @@ */ #endif /* gettextP.h */ lincity-1.13.1/intl/hash-string.h0000644000175000017500000000357407627052670013563 00000000000000/* Description of GNU message catalog format: string hashing function. Copyright (C) 1995, 1997, 1998, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* @@ end of prolog @@ */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(Args) Args # else # define PARAMS(Args) () # endif #endif /* We assume to have `unsigned long int' value with at least 32 bits. */ #define HASHWORDBITS 32 /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ static unsigned long int hash_string PARAMS ((const char *__str_param)); static inline unsigned long int hash_string (str_param) const char *str_param; { unsigned long int hval, g; const char *str = str_param; /* Compute the hash value for the given string. */ hval = 0; while (*str != '\0') { hval <<= 4; hval += (unsigned long int) *str++; g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); if (g != 0) { hval ^= g >> (HASHWORDBITS - 8); hval ^= g; } } return hval; } lincity-1.13.1/intl/plural-exp.h0000644000175000017500000001030407627052670013412 00000000000000/* Expression parsing and evaluation for plural form selection. Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _PLURAL_EXP_H #define _PLURAL_EXP_H #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* This is the representation of the expressions to determine the plural form. */ struct expression { int nargs; /* Number of arguments. */ enum operator { /* Without arguments: */ var, /* The variable "n". */ num, /* Decimal number. */ /* Unary operators: */ lnot, /* Logical NOT. */ /* Binary operators: */ mult, /* Multiplication. */ divide, /* Division. */ module, /* Modulo operation. */ plus, /* Addition. */ minus, /* Subtraction. */ less_than, /* Comparison. */ greater_than, /* Comparison. */ less_or_equal, /* Comparison. */ greater_or_equal, /* Comparison. */ equal, /* Comparison for equality. */ not_equal, /* Comparison for inequality. */ land, /* Logical AND. */ lor, /* Logical OR. */ /* Ternary operators: */ qmop /* Question mark operator. */ } operation; union { unsigned long int num; /* Number value for `num'. */ struct expression *args[3]; /* Up to three arguments. */ } val; }; /* This is the data structure to pass information to the parser and get the result in a thread-safe way. */ struct parse_args { const char *cp; struct expression *res; }; /* Names for the libintl functions are a problem. This source code is used 1. in the GNU C Library library, 2. in the GNU libintl library, 3. in the GNU gettext tools. The function names in each situation must be different, to allow for binary incompatible changes in 'struct expression'. Furthermore, 1. in the GNU C Library library, the names have a __ prefix, 2.+3. in the GNU libintl library and in the GNU gettext tools, the names must follow ANSI C and not start with __. So we have to distinguish the three cases. */ #ifdef _LIBC # define FREE_EXPRESSION __gettext_free_exp # define PLURAL_PARSE __gettextparse # define GERMANIC_PLURAL __gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION __gettext_extract_plural #elif defined (IN_LIBINTL) # define FREE_EXPRESSION libintl_gettext_free_exp # define PLURAL_PARSE libintl_gettextparse # define GERMANIC_PLURAL libintl_gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION libintl_gettext_extract_plural #else # define FREE_EXPRESSION free_plural_expression # define PLURAL_PARSE parse_plural_expression # define GERMANIC_PLURAL germanic_plural # define EXTRACT_PLURAL_EXPRESSION extract_plural_expression #endif extern void FREE_EXPRESSION PARAMS ((struct expression *exp)) internal_function; extern int PLURAL_PARSE PARAMS ((void *arg)); extern struct expression GERMANIC_PLURAL attribute_hidden; extern void EXTRACT_PLURAL_EXPRESSION PARAMS ((const char *nullentry, struct expression **pluralp, unsigned long int *npluralsp)) internal_function; #if !defined (_LIBC) && !defined (IN_LIBINTL) extern unsigned long int plural_eval PARAMS ((struct expression *pexp, unsigned long int n)); #endif #endif /* _PLURAL_EXP_H */ lincity-1.13.1/intl/eval-plural.h0000644000175000017500000000554607627052670013561 00000000000000/* Plural expression evaluation. Copyright (C) 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef STATIC #define STATIC static #endif /* Evaluate the plural expression and return an index value. */ STATIC unsigned long int plural_eval PARAMS ((struct expression *pexp, unsigned long int n)) internal_function; STATIC unsigned long int internal_function plural_eval (pexp, n) struct expression *pexp; unsigned long int n; { switch (pexp->nargs) { case 0: switch (pexp->operation) { case var: return n; case num: return pexp->val.num; default: break; } /* NOTREACHED */ break; case 1: { /* pexp->operation must be lnot. */ unsigned long int arg = plural_eval (pexp->val.args[0], n); return ! arg; } case 2: { unsigned long int leftarg = plural_eval (pexp->val.args[0], n); if (pexp->operation == lor) return leftarg || plural_eval (pexp->val.args[1], n); else if (pexp->operation == land) return leftarg && plural_eval (pexp->val.args[1], n); else { unsigned long int rightarg = plural_eval (pexp->val.args[1], n); switch (pexp->operation) { case mult: return leftarg * rightarg; case divide: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg / rightarg; case module: #if !INTDIV0_RAISES_SIGFPE if (rightarg == 0) raise (SIGFPE); #endif return leftarg % rightarg; case plus: return leftarg + rightarg; case minus: return leftarg - rightarg; case less_than: return leftarg < rightarg; case greater_than: return leftarg > rightarg; case less_or_equal: return leftarg <= rightarg; case greater_or_equal: return leftarg >= rightarg; case equal: return leftarg == rightarg; case not_equal: return leftarg != rightarg; default: break; } } /* NOTREACHED */ break; } case 3: { /* pexp->operation must be qmop. */ unsigned long int boolarg = plural_eval (pexp->val.args[0], n); return plural_eval (pexp->val.args[boolarg ? 1 : 2], n); } } /* NOTREACHED */ return 0; } lincity-1.13.1/intl/os2compat.h0000644000175000017500000000302207627052670013227 00000000000000/* OS/2 compatibility defines. This file is intended to be included from config.h Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* When included from os2compat.h we need all the original definitions */ #ifndef OS2_AWARE #undef LIBDIR #define LIBDIR _nlos2_libdir extern char *_nlos2_libdir; #undef LOCALEDIR #define LOCALEDIR _nlos2_localedir extern char *_nlos2_localedir; #undef LOCALE_ALIAS_PATH #define LOCALE_ALIAS_PATH _nlos2_localealiaspath extern char *_nlos2_localealiaspath; #endif #undef HAVE_STRCASECMP #define HAVE_STRCASECMP 1 #define strcasecmp stricmp #define strncasecmp strnicmp /* We have our own getenv() which works even if library is compiled as DLL */ #define getenv _nl_getenv /* Older versions of gettext used -1 as the value of LC_MESSAGES */ #define LC_MESSAGES_COMPAT (-1) lincity-1.13.1/intl/libgnuintl.h0000644000175000017500000002435507627052670013503 00000000000000/* Message catalogs for internationalization. Copyright (C) 1995-1997, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _LIBINTL_H #define _LIBINTL_H 1 #include /* The LC_MESSAGES locale category is the category used by the functions gettext() and dgettext(). It is specified in POSIX, but not in ANSI C. On systems that don't define it, use an arbitrary value instead. On Solaris, defines __LOCALE_H (or _LOCALE_H in Solaris 2.5) then includes (i.e. this file!) and then only defines LC_MESSAGES. To avoid a redefinition warning, don't define LC_MESSAGES in this case. */ #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun)) # define LC_MESSAGES 1729 #endif /* We define an additional symbol to signal that we use the GNU implementation of gettext. */ #define __USE_GNU_GETTEXT 1 /* Provide information about the supported file formats. Returns the maximum minor revision number supported for a given major revision. */ #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ ((major) == 0 ? 1 : -1) /* Resolve a platform specific conflict on DJGPP. GNU gettext takes precedence over _conio_gettext. */ #ifdef __DJGPP__ # undef gettext #endif /* Use _INTL_PARAMS, not PARAMS, in order to avoid clashes with identifiers used by programs. Similarly, test __PROTOTYPES, not PROTOTYPES. */ #ifndef _INTL_PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define _INTL_PARAMS(args) args # else # define _INTL_PARAMS(args) () # endif #endif #ifdef __cplusplus extern "C" { #endif /* We redirect the functions to those prefixed with "libintl_". This is necessary, because some systems define gettext/textdomain/... in the C library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer). If we used the unprefixed names, there would be cases where the definition in the C library would override the one in the libintl.so shared library. Recall that on ELF systems, the symbols are looked up in the following order: 1. in the executable, 2. in the shared libraries specified on the link command line, in order, 3. in the dependencies of the shared libraries specified on the link command line, 4. in the dlopen()ed shared libraries, in the order in which they were dlopen()ed. The definition in the C library would override the one in libintl.so if either * -lc is given on the link command line and -lintl isn't, or * -lc is given on the link command line before -lintl, or * libintl.so is a dependency of a dlopen()ed shared library but not linked to the executable at link time. Since Solaris gettext() behaves differently than GNU gettext(), this would be unacceptable. The redirection happens by default through macros in C, so that &gettext is independent of the compilation unit, but through inline functions in C++, in order not to interfere with the name mangling of class fields or class methods called 'gettext'. */ /* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS. If he doesn't, we choose the method. A third possible method is _INTL_REDIRECT_ASM, supported only by GCC. */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS) # if __GNUC__ >= 2 && (defined __STDC__ || defined __cplusplus) # define _INTL_REDIRECT_ASM # else # ifdef __cplusplus # define _INTL_REDIRECT_INLINE # else # define _INTL_REDIRECT_MACROS # endif # endif #endif /* Auxiliary macros. */ #ifdef _INTL_REDIRECT_ASM # define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname)) # define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring # define _INTL_STRINGIFY(prefix) #prefix #else # define _INTL_ASM(cname) #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_gettext (const char *__msgid); static inline char *gettext (const char *__msgid) { return libintl_gettext (__msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define gettext libintl_gettext #endif extern char *gettext _INTL_PARAMS ((const char *__msgid)) _INTL_ASM (libintl_gettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current LC_MESSAGES locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dgettext (const char *__domainname, const char *__msgid); static inline char *dgettext (const char *__domainname, const char *__msgid) { return libintl_dgettext (__domainname, __msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define dgettext libintl_dgettext #endif extern char *dgettext _INTL_PARAMS ((const char *__domainname, const char *__msgid)) _INTL_ASM (libintl_dgettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcgettext (const char *__domainname, const char *__msgid, int __category); static inline char *dcgettext (const char *__domainname, const char *__msgid, int __category) { return libintl_dcgettext (__domainname, __msgid, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcgettext libintl_dcgettext #endif extern char *dcgettext _INTL_PARAMS ((const char *__domainname, const char *__msgid, int __category)) _INTL_ASM (libintl_dcgettext); #endif /* Similar to `gettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_ngettext (__msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define ngettext libintl_ngettext #endif extern char *ngettext _INTL_PARAMS ((const char *__msgid1, const char *__msgid2, unsigned long int __n)) _INTL_ASM (libintl_ngettext); #endif /* Similar to `dgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_dngettext (__domainname, __msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define dngettext libintl_dngettext #endif extern char *dngettext _INTL_PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n)) _INTL_ASM (libintl_dngettext); #endif /* Similar to `dcgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); static inline char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) { return libintl_dcngettext (__domainname, __msgid1, __msgid2, __n, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcngettext libintl_dcngettext #endif extern char *dcngettext _INTL_PARAMS ((const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category)) _INTL_ASM (libintl_dcngettext); #endif /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_textdomain (const char *__domainname); static inline char *textdomain (const char *__domainname) { return libintl_textdomain (__domainname); } #else #ifdef _INTL_REDIRECT_MACROS # define textdomain libintl_textdomain #endif extern char *textdomain _INTL_PARAMS ((const char *__domainname)) _INTL_ASM (libintl_textdomain); #endif /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bindtextdomain (const char *__domainname, const char *__dirname); static inline char *bindtextdomain (const char *__domainname, const char *__dirname) { return libintl_bindtextdomain (__domainname, __dirname); } #else #ifdef _INTL_REDIRECT_MACROS # define bindtextdomain libintl_bindtextdomain #endif extern char *bindtextdomain _INTL_PARAMS ((const char *__domainname, const char *__dirname)) _INTL_ASM (libintl_bindtextdomain); #endif /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bind_textdomain_codeset (const char *__domainname, const char *__codeset); static inline char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) { return libintl_bind_textdomain_codeset (__domainname, __codeset); } #else #ifdef _INTL_REDIRECT_MACROS # define bind_textdomain_codeset libintl_bind_textdomain_codeset #endif extern char *bind_textdomain_codeset _INTL_PARAMS ((const char *__domainname, const char *__codeset)) _INTL_ASM (libintl_bind_textdomain_codeset); #endif #ifdef __cplusplus } #endif #endif /* libintl.h */ lincity-1.13.1/intl/loadinfo.h0000644000175000017500000001373707627052670013131 00000000000000/* Copyright (C) 1996-1999, 2000-2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _LOADINFO_H #define _LOADINFO_H 1 /* Declarations of locale dependent catalog lookup functions. Implemented in localealias.c Possibly replace a locale name by another. explodename.c Split a locale name into its various fields. l10nflist.c Generate a list of filenames of possible message catalogs. finddomain.c Find and open the relevant message catalogs. The main function _nl_find_domain() in finddomain.c is declared in gettextP.h. */ #ifndef PARAMS # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES # define PARAMS(args) args # else # define PARAMS(args) () # endif #endif #ifndef internal_function # define internal_function #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif /* Separator in PATH like lists of pathnames. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define PATH_SEPARATOR ';' #else /* Unix */ # define PATH_SEPARATOR ':' #endif /* Encoding of locale name parts. */ #define CEN_REVISION 1 #define CEN_SPONSOR 2 #define CEN_SPECIAL 4 #define XPG_NORM_CODESET 8 #define XPG_CODESET 16 #define TERRITORY 32 #define CEN_AUDIENCE 64 #define XPG_MODIFIER 128 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE) #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER) struct loaded_l10nfile { const char *filename; int decided; const void *data; struct loaded_l10nfile *next; struct loaded_l10nfile *successor[1]; }; /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ extern const char *_nl_normalize_codeset PARAMS ((const char *codeset, size_t name_len)); /* Lookup a locale dependent file. *L10NFILE_LIST denotes a pool of lookup results of locale dependent files of the same kind, sorted in decreasing order of ->filename. DIRLIST and DIRLIST_LEN are an argz list of directories in which to look, containing at least one directory (i.e. DIRLIST_LEN > 0). MASK, LANGUAGE, TERRITORY, CODESET, NORMALIZED_CODESET, MODIFIER, SPECIAL, SPONSOR, REVISION are the pieces of the locale name, as produced by _nl_explode_name(). FILENAME is the filename suffix. The return value is the lookup result, either found in *L10NFILE_LIST, or - if DO_ALLOCATE is nonzero - freshly allocated, or possibly NULL. If the return value is non-NULL, it is added to *L10NFILE_LIST, and its ->next field denotes the chaining inside *L10NFILE_LIST, and furthermore its ->successor[] field contains a list of other lookup results from which this lookup result inherits. */ extern struct loaded_l10nfile * _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *special, const char *sponsor, const char *revision, const char *filename, int do_allocate)); /* Lookup the real locale name for a locale alias NAME, or NULL if NAME is not a locale alias (but possibly a real locale name). The return value is statically allocated and must not be freed. */ extern const char *_nl_expand_alias PARAMS ((const char *name)); /* Split a locale name NAME into its pieces: language, modifier, territory, codeset, special, sponsor, revision. NAME gets destructively modified: NUL bytes are inserted here and there. *LANGUAGE gets assigned NAME. Each of *MODIFIER, *TERRITORY, *CODESET, *SPECIAL, *SPONSOR, *REVISION gets assigned either a pointer into the old NAME string, or NULL. *NORMALIZED_CODESET gets assigned the expanded *CODESET, if it is different from *CODESET; this one is dynamically allocated and has to be freed by the caller. The return value is a bitmask, where each bit corresponds to one filled-in value: XPG_MODIFIER, CEN_AUDIENCE for *MODIFIER, TERRITORY for *TERRITORY, XPG_CODESET for *CODESET, XPG_NORM_CODESET for *NORMALIZED_CODESET, CEN_SPECIAL for *SPECIAL, CEN_SPONSOR for *SPONSOR, CEN_REVISION for *REVISION. */ extern int _nl_explode_name PARAMS ((char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset, const char **special, const char **sponsor, const char **revision)); /* Split a locale name NAME into a leading language part and all the rest. Return a pointer to the first character after the language, i.e. to the first byte of the rest. */ extern char *_nl_find_language PARAMS ((const char *name)); #endif /* loadinfo.h */ lincity-1.13.1/intl/bindtextdom.c0000644000175000017500000002324007627052670013640 00000000000000/* Implementation of the bindtextdomain(3) function Copyright (C) 1995-1998, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ /* Contains the default location of the message catalogs. */ extern const char _nl_default_dirname[]; /* List with bindings of specific domains. */ extern struct binding *_nl_domain_bindings; /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define BINDTEXTDOMAIN __bindtextdomain # define BIND_TEXTDOMAIN_CODESET __bind_textdomain_codeset # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define BINDTEXTDOMAIN libintl_bindtextdomain # define BIND_TEXTDOMAIN_CODESET libintl_bind_textdomain_codeset #endif /* Prototypes for local functions. */ static void set_binding_values PARAMS ((const char *domainname, const char **dirnamep, const char **codesetp)); /* Specifies the directory name *DIRNAMEP and the output codeset *CODESETP to be used for the DOMAINNAME message catalog. If *DIRNAMEP or *CODESETP is NULL, the corresponding attribute is not modified, only the current value is returned. If DIRNAMEP or CODESETP is NULL, the corresponding attribute is neither modified nor returned. */ static void set_binding_values (domainname, dirnamep, codesetp) const char *domainname; const char **dirnamep; const char **codesetp; { struct binding *binding; int modified; /* Some sanity checks. */ if (domainname == NULL || domainname[0] == '\0') { if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; return; } __libc_rwlock_wrlock (_nl_state_lock); modified = 0; for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding != NULL) { if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The current binding has be to returned. */ *dirnamep = binding->dirname; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->dirname; if (strcmp (dirname, result) != 0) { if (strcmp (dirname, _nl_default_dirname) == 0) result = (char *) _nl_default_dirname; else { #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, dirname, len); #endif } if (__builtin_expect (result != NULL, 1)) { if (binding->dirname != _nl_default_dirname) free (binding->dirname); binding->dirname = result; modified = 1; } } *dirnamep = result; } } if (codesetp) { const char *codeset = *codesetp; if (codeset == NULL) /* The current binding has be to returned. */ *codesetp = binding->codeset; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->codeset; if (result == NULL || strcmp (codeset, result) != 0) { #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, codeset, len); #endif if (__builtin_expect (result != NULL, 1)) { if (binding->codeset != NULL) free (binding->codeset); binding->codeset = result; binding->codeset_cntr++; modified = 1; } } *codesetp = result; } } } else if ((dirnamep == NULL || *dirnamep == NULL) && (codesetp == NULL || *codesetp == NULL)) { /* Simply return the default values. */ if (dirnamep) *dirnamep = _nl_default_dirname; if (codesetp) *codesetp = NULL; } else { /* We have to create a new binding. */ size_t len = strlen (domainname) + 1; struct binding *new_binding = (struct binding *) malloc (offsetof (struct binding, domainname) + len); if (__builtin_expect (new_binding == NULL, 0)) goto failed; memcpy (new_binding->domainname, domainname, len); if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The default value. */ dirname = _nl_default_dirname; else { if (strcmp (dirname, _nl_default_dirname) == 0) dirname = _nl_default_dirname; else { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; memcpy (result, dirname, len); #endif dirname = result; } } *dirnamep = dirname; new_binding->dirname = (char *) dirname; } else /* The default value. */ new_binding->dirname = (char *) _nl_default_dirname; new_binding->codeset_cntr = 0; if (codesetp) { const char *codeset = *codesetp; if (codeset != NULL) { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; memcpy (result, codeset, len); #endif codeset = result; new_binding->codeset_cntr++; } *codesetp = codeset; new_binding->codeset = (char *) codeset; } else new_binding->codeset = NULL; /* Now enqueue it. */ if (_nl_domain_bindings == NULL || strcmp (domainname, _nl_domain_bindings->domainname) < 0) { new_binding->next = _nl_domain_bindings; _nl_domain_bindings = new_binding; } else { binding = _nl_domain_bindings; while (binding->next != NULL && strcmp (domainname, binding->next->domainname) > 0) binding = binding->next; new_binding->next = binding->next; binding->next = new_binding; } modified = 1; /* Here we deal with memory allocation failures. */ if (0) { failed_codeset: if (new_binding->dirname != _nl_default_dirname) free (new_binding->dirname); failed_dirname: free (new_binding); failed: if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; } } /* If we modified any binding, we flush the caches. */ if (modified) ++_nl_msg_cat_cntr; __libc_rwlock_unlock (_nl_state_lock); } /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ char * BINDTEXTDOMAIN (domainname, dirname) const char *domainname; const char *dirname; { set_binding_values (domainname, &dirname, NULL); return (char *) dirname; } /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ char * BIND_TEXTDOMAIN_CODESET (domainname, codeset) const char *domainname; const char *codeset; { set_binding_values (domainname, NULL, &codeset); return (char *) codeset; } #ifdef _LIBC /* Aliases for function names in GNU C Library. */ weak_alias (__bindtextdomain, bindtextdomain); weak_alias (__bind_textdomain_codeset, bind_textdomain_codeset); #endif lincity-1.13.1/intl/dcgettext.c0000644000175000017500000000350007627052670013307 00000000000000/* Implementation of the dcgettext(3) function. Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCGETTEXT __dcgettext # define DCIGETTEXT __dcigettext #else # define DCGETTEXT libintl_dcgettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCGETTEXT (domainname, msgid, category) const char *domainname; const char *msgid; int category; { return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ INTDEF(__dcgettext) weak_alias (__dcgettext, dcgettext); #endif lincity-1.13.1/intl/dgettext.c0000644000175000017500000000343007627052670013146 00000000000000/* Implementation of the dgettext(3) function. Copyright (C) 1995-1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DGETTEXT __dgettext # define DCGETTEXT INTUSE(__dcgettext) #else # define DGETTEXT libintl_dgettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale. */ char * DGETTEXT (domainname, msgid) const char *domainname; const char *msgid; { return DCGETTEXT (domainname, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dgettext, dgettext); #endif lincity-1.13.1/intl/gettext.c0000644000175000017500000000357307627052670013012 00000000000000/* Implementation of gettext(3) function. Copyright (C) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define GETTEXT __gettext # define DCGETTEXT INTUSE(__dcgettext) #else # define GETTEXT libintl_gettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * GETTEXT (msgid) const char *msgid; { return DCGETTEXT (NULL, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__gettext, gettext); #endif lincity-1.13.1/intl/finddomain.c0000644000175000017500000001314607627052670013433 00000000000000/* Handle list of needed message catalogs Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* List of already loaded domains. */ static struct loaded_l10nfile *_nl_loaded_domains; /* Return a data structure describing the message catalog described by the DOMAINNAME and CATEGORY parameters with respect to the currently established bindings. */ struct loaded_l10nfile * internal_function _nl_find_domain (dirname, locale, domainname, domainbinding) const char *dirname; char *locale; const char *domainname; struct binding *domainbinding; { struct loaded_l10nfile *retval; const char *language; const char *modifier; const char *territory; const char *codeset; const char *normalized_codeset; const char *special; const char *sponsor; const char *revision; const char *alias_value; int mask; /* LOCALE can consist of up to four recognized parts for the XPG syntax: language[_territory[.codeset]][@modifier] and six parts for the CEN syntax: language[_territory][+audience][+special][,[sponsor][_revision]] Beside the first part all of them are allowed to be missing. If the full specified locale is not found, the less specific one are looked for. The various parts will be stripped off according to the following order: (1) revision (2) sponsor (3) special (4) codeset (5) normalized codeset (6) territory (7) audience/modifier */ /* If we have already tested for this locale entry there has to be one data set in the list of loaded domains. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, 0, locale, NULL, NULL, NULL, NULL, NULL, NULL, NULL, domainname, 0); if (retval != NULL) { /* We know something about this locale. */ int cnt; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data != NULL) return retval; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } return cnt >= 0 ? retval : NULL; /* NOTREACHED */ } /* See whether the locale value is an alias. If yes its value *overwrites* the alias name. No test for the original value is done. */ alias_value = _nl_expand_alias (locale); if (alias_value != NULL) { #if defined _LIBC || defined HAVE_STRDUP locale = strdup (alias_value); if (locale == NULL) return NULL; #else size_t len = strlen (alias_value) + 1; locale = (char *) malloc (len); if (locale == NULL) return NULL; memcpy (locale, alias_value, len); #endif } /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = _nl_explode_name (locale, &language, &modifier, &territory, &codeset, &normalized_codeset, &special, &sponsor, &revision); /* Create all possible locale entries which might be interested in generalization. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, mask, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, domainname, 1); if (retval == NULL) /* This means we are out of core. */ return NULL; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data == NULL) { int cnt; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } } /* The room for an alias was dynamically allocated. Free it now. */ if (alias_value != NULL) free (locale); /* The space for normalized_codeset is dynamically allocated. Free it. */ if (mask & XPG_NORM_CODESET) free ((void *) normalized_codeset); return retval; } #ifdef _LIBC static void __attribute__ ((unused)) free_mem (void) { struct loaded_l10nfile *runp = _nl_loaded_domains; while (runp != NULL) { struct loaded_l10nfile *here = runp; if (runp->data != NULL) _nl_unload_domain ((struct loaded_domain *) runp->data); runp = runp->next; free ((char *) here->filename); free (here); } } text_set_element (__libc_subfreeres, free_mem); #endif lincity-1.13.1/intl/loadmsgcat.c0000644000175000017500000010322207627052670013434 00000000000000/* Load needed message catalogs. Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif #endif #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #ifdef _LIBC # include # include #endif #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \ || (defined _LIBC && defined _POSIX_MAPPED_FILES) # include # undef HAVE_MMAP # define HAVE_MMAP 1 #else # undef HAVE_MMAP #endif #if defined HAVE_STDINT_H_WITH_UINTMAX || defined _LIBC # include #endif #if defined HAVE_INTTYPES_H || defined _LIBC # include #endif #include "gmo.h" #include "gettextP.h" #include "hash-string.h" #include "plural-exp.h" #ifdef _LIBC # include "../locale/localeinfo.h" #endif /* Provide fallback values for macros that ought to be defined in . Note that our fallback values need not be literal strings, because we don't use them with preprocessor string concatenation. */ #if !defined PRId8 || PRI_MACROS_BROKEN # undef PRId8 # define PRId8 "d" #endif #if !defined PRIi8 || PRI_MACROS_BROKEN # undef PRIi8 # define PRIi8 "i" #endif #if !defined PRIo8 || PRI_MACROS_BROKEN # undef PRIo8 # define PRIo8 "o" #endif #if !defined PRIu8 || PRI_MACROS_BROKEN # undef PRIu8 # define PRIu8 "u" #endif #if !defined PRIx8 || PRI_MACROS_BROKEN # undef PRIx8 # define PRIx8 "x" #endif #if !defined PRIX8 || PRI_MACROS_BROKEN # undef PRIX8 # define PRIX8 "X" #endif #if !defined PRId16 || PRI_MACROS_BROKEN # undef PRId16 # define PRId16 "d" #endif #if !defined PRIi16 || PRI_MACROS_BROKEN # undef PRIi16 # define PRIi16 "i" #endif #if !defined PRIo16 || PRI_MACROS_BROKEN # undef PRIo16 # define PRIo16 "o" #endif #if !defined PRIu16 || PRI_MACROS_BROKEN # undef PRIu16 # define PRIu16 "u" #endif #if !defined PRIx16 || PRI_MACROS_BROKEN # undef PRIx16 # define PRIx16 "x" #endif #if !defined PRIX16 || PRI_MACROS_BROKEN # undef PRIX16 # define PRIX16 "X" #endif #if !defined PRId32 || PRI_MACROS_BROKEN # undef PRId32 # define PRId32 "d" #endif #if !defined PRIi32 || PRI_MACROS_BROKEN # undef PRIi32 # define PRIi32 "i" #endif #if !defined PRIo32 || PRI_MACROS_BROKEN # undef PRIo32 # define PRIo32 "o" #endif #if !defined PRIu32 || PRI_MACROS_BROKEN # undef PRIu32 # define PRIu32 "u" #endif #if !defined PRIx32 || PRI_MACROS_BROKEN # undef PRIx32 # define PRIx32 "x" #endif #if !defined PRIX32 || PRI_MACROS_BROKEN # undef PRIX32 # define PRIX32 "X" #endif #if !defined PRId64 || PRI_MACROS_BROKEN # undef PRId64 # define PRId64 (sizeof (long) == 8 ? "ld" : "lld") #endif #if !defined PRIi64 || PRI_MACROS_BROKEN # undef PRIi64 # define PRIi64 (sizeof (long) == 8 ? "li" : "lli") #endif #if !defined PRIo64 || PRI_MACROS_BROKEN # undef PRIo64 # define PRIo64 (sizeof (long) == 8 ? "lo" : "llo") #endif #if !defined PRIu64 || PRI_MACROS_BROKEN # undef PRIu64 # define PRIu64 (sizeof (long) == 8 ? "lu" : "llu") #endif #if !defined PRIx64 || PRI_MACROS_BROKEN # undef PRIx64 # define PRIx64 (sizeof (long) == 8 ? "lx" : "llx") #endif #if !defined PRIX64 || PRI_MACROS_BROKEN # undef PRIX64 # define PRIX64 (sizeof (long) == 8 ? "lX" : "llX") #endif #if !defined PRIdLEAST8 || PRI_MACROS_BROKEN # undef PRIdLEAST8 # define PRIdLEAST8 "d" #endif #if !defined PRIiLEAST8 || PRI_MACROS_BROKEN # undef PRIiLEAST8 # define PRIiLEAST8 "i" #endif #if !defined PRIoLEAST8 || PRI_MACROS_BROKEN # undef PRIoLEAST8 # define PRIoLEAST8 "o" #endif #if !defined PRIuLEAST8 || PRI_MACROS_BROKEN # undef PRIuLEAST8 # define PRIuLEAST8 "u" #endif #if !defined PRIxLEAST8 || PRI_MACROS_BROKEN # undef PRIxLEAST8 # define PRIxLEAST8 "x" #endif #if !defined PRIXLEAST8 || PRI_MACROS_BROKEN # undef PRIXLEAST8 # define PRIXLEAST8 "X" #endif #if !defined PRIdLEAST16 || PRI_MACROS_BROKEN # undef PRIdLEAST16 # define PRIdLEAST16 "d" #endif #if !defined PRIiLEAST16 || PRI_MACROS_BROKEN # undef PRIiLEAST16 # define PRIiLEAST16 "i" #endif #if !defined PRIoLEAST16 || PRI_MACROS_BROKEN # undef PRIoLEAST16 # define PRIoLEAST16 "o" #endif #if !defined PRIuLEAST16 || PRI_MACROS_BROKEN # undef PRIuLEAST16 # define PRIuLEAST16 "u" #endif #if !defined PRIxLEAST16 || PRI_MACROS_BROKEN # undef PRIxLEAST16 # define PRIxLEAST16 "x" #endif #if !defined PRIXLEAST16 || PRI_MACROS_BROKEN # undef PRIXLEAST16 # define PRIXLEAST16 "X" #endif #if !defined PRIdLEAST32 || PRI_MACROS_BROKEN # undef PRIdLEAST32 # define PRIdLEAST32 "d" #endif #if !defined PRIiLEAST32 || PRI_MACROS_BROKEN # undef PRIiLEAST32 # define PRIiLEAST32 "i" #endif #if !defined PRIoLEAST32 || PRI_MACROS_BROKEN # undef PRIoLEAST32 # define PRIoLEAST32 "o" #endif #if !defined PRIuLEAST32 || PRI_MACROS_BROKEN # undef PRIuLEAST32 # define PRIuLEAST32 "u" #endif #if !defined PRIxLEAST32 || PRI_MACROS_BROKEN # undef PRIxLEAST32 # define PRIxLEAST32 "x" #endif #if !defined PRIXLEAST32 || PRI_MACROS_BROKEN # undef PRIXLEAST32 # define PRIXLEAST32 "X" #endif #if !defined PRIdLEAST64 || PRI_MACROS_BROKEN # undef PRIdLEAST64 # define PRIdLEAST64 PRId64 #endif #if !defined PRIiLEAST64 || PRI_MACROS_BROKEN # undef PRIiLEAST64 # define PRIiLEAST64 PRIi64 #endif #if !defined PRIoLEAST64 || PRI_MACROS_BROKEN # undef PRIoLEAST64 # define PRIoLEAST64 PRIo64 #endif #if !defined PRIuLEAST64 || PRI_MACROS_BROKEN # undef PRIuLEAST64 # define PRIuLEAST64 PRIu64 #endif #if !defined PRIxLEAST64 || PRI_MACROS_BROKEN # undef PRIxLEAST64 # define PRIxLEAST64 PRIx64 #endif #if !defined PRIXLEAST64 || PRI_MACROS_BROKEN # undef PRIXLEAST64 # define PRIXLEAST64 PRIX64 #endif #if !defined PRIdFAST8 || PRI_MACROS_BROKEN # undef PRIdFAST8 # define PRIdFAST8 "d" #endif #if !defined PRIiFAST8 || PRI_MACROS_BROKEN # undef PRIiFAST8 # define PRIiFAST8 "i" #endif #if !defined PRIoFAST8 || PRI_MACROS_BROKEN # undef PRIoFAST8 # define PRIoFAST8 "o" #endif #if !defined PRIuFAST8 || PRI_MACROS_BROKEN # undef PRIuFAST8 # define PRIuFAST8 "u" #endif #if !defined PRIxFAST8 || PRI_MACROS_BROKEN # undef PRIxFAST8 # define PRIxFAST8 "x" #endif #if !defined PRIXFAST8 || PRI_MACROS_BROKEN # undef PRIXFAST8 # define PRIXFAST8 "X" #endif #if !defined PRIdFAST16 || PRI_MACROS_BROKEN # undef PRIdFAST16 # define PRIdFAST16 "d" #endif #if !defined PRIiFAST16 || PRI_MACROS_BROKEN # undef PRIiFAST16 # define PRIiFAST16 "i" #endif #if !defined PRIoFAST16 || PRI_MACROS_BROKEN # undef PRIoFAST16 # define PRIoFAST16 "o" #endif #if !defined PRIuFAST16 || PRI_MACROS_BROKEN # undef PRIuFAST16 # define PRIuFAST16 "u" #endif #if !defined PRIxFAST16 || PRI_MACROS_BROKEN # undef PRIxFAST16 # define PRIxFAST16 "x" #endif #if !defined PRIXFAST16 || PRI_MACROS_BROKEN # undef PRIXFAST16 # define PRIXFAST16 "X" #endif #if !defined PRIdFAST32 || PRI_MACROS_BROKEN # undef PRIdFAST32 # define PRIdFAST32 "d" #endif #if !defined PRIiFAST32 || PRI_MACROS_BROKEN # undef PRIiFAST32 # define PRIiFAST32 "i" #endif #if !defined PRIoFAST32 || PRI_MACROS_BROKEN # undef PRIoFAST32 # define PRIoFAST32 "o" #endif #if !defined PRIuFAST32 || PRI_MACROS_BROKEN # undef PRIuFAST32 # define PRIuFAST32 "u" #endif #if !defined PRIxFAST32 || PRI_MACROS_BROKEN # undef PRIxFAST32 # define PRIxFAST32 "x" #endif #if !defined PRIXFAST32 || PRI_MACROS_BROKEN # undef PRIXFAST32 # define PRIXFAST32 "X" #endif #if !defined PRIdFAST64 || PRI_MACROS_BROKEN # undef PRIdFAST64 # define PRIdFAST64 PRId64 #endif #if !defined PRIiFAST64 || PRI_MACROS_BROKEN # undef PRIiFAST64 # define PRIiFAST64 PRIi64 #endif #if !defined PRIoFAST64 || PRI_MACROS_BROKEN # undef PRIoFAST64 # define PRIoFAST64 PRIo64 #endif #if !defined PRIuFAST64 || PRI_MACROS_BROKEN # undef PRIuFAST64 # define PRIuFAST64 PRIu64 #endif #if !defined PRIxFAST64 || PRI_MACROS_BROKEN # undef PRIxFAST64 # define PRIxFAST64 PRIx64 #endif #if !defined PRIXFAST64 || PRI_MACROS_BROKEN # undef PRIXFAST64 # define PRIXFAST64 PRIX64 #endif #if !defined PRIdMAX || PRI_MACROS_BROKEN # undef PRIdMAX # define PRIdMAX (sizeof (uintmax_t) == sizeof (long) ? "ld" : "lld") #endif #if !defined PRIiMAX || PRI_MACROS_BROKEN # undef PRIiMAX # define PRIiMAX (sizeof (uintmax_t) == sizeof (long) ? "li" : "lli") #endif #if !defined PRIoMAX || PRI_MACROS_BROKEN # undef PRIoMAX # define PRIoMAX (sizeof (uintmax_t) == sizeof (long) ? "lo" : "llo") #endif #if !defined PRIuMAX || PRI_MACROS_BROKEN # undef PRIuMAX # define PRIuMAX (sizeof (uintmax_t) == sizeof (long) ? "lu" : "llu") #endif #if !defined PRIxMAX || PRI_MACROS_BROKEN # undef PRIxMAX # define PRIxMAX (sizeof (uintmax_t) == sizeof (long) ? "lx" : "llx") #endif #if !defined PRIXMAX || PRI_MACROS_BROKEN # undef PRIXMAX # define PRIXMAX (sizeof (uintmax_t) == sizeof (long) ? "lX" : "llX") #endif #if !defined PRIdPTR || PRI_MACROS_BROKEN # undef PRIdPTR # define PRIdPTR \ (sizeof (void *) == sizeof (long) ? "ld" : \ sizeof (void *) == sizeof (int) ? "d" : \ "lld") #endif #if !defined PRIiPTR || PRI_MACROS_BROKEN # undef PRIiPTR # define PRIiPTR \ (sizeof (void *) == sizeof (long) ? "li" : \ sizeof (void *) == sizeof (int) ? "i" : \ "lli") #endif #if !defined PRIoPTR || PRI_MACROS_BROKEN # undef PRIoPTR # define PRIoPTR \ (sizeof (void *) == sizeof (long) ? "lo" : \ sizeof (void *) == sizeof (int) ? "o" : \ "llo") #endif #if !defined PRIuPTR || PRI_MACROS_BROKEN # undef PRIuPTR # define PRIuPTR \ (sizeof (void *) == sizeof (long) ? "lu" : \ sizeof (void *) == sizeof (int) ? "u" : \ "llu") #endif #if !defined PRIxPTR || PRI_MACROS_BROKEN # undef PRIxPTR # define PRIxPTR \ (sizeof (void *) == sizeof (long) ? "lx" : \ sizeof (void *) == sizeof (int) ? "x" : \ "llx") #endif #if !defined PRIXPTR || PRI_MACROS_BROKEN # undef PRIXPTR # define PRIXPTR \ (sizeof (void *) == sizeof (long) ? "lX" : \ sizeof (void *) == sizeof (int) ? "X" : \ "llX") #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ISO C functions. This is required by the standard because some ISO C functions will require linking with this object file and the name space must not be polluted. */ # define open __open # define close __close # define read __read # define mmap __mmap # define munmap __munmap #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif /* For systems that distinguish between text and binary I/O. O_BINARY is usually declared in . */ #if !defined O_BINARY && defined _O_BINARY /* For MSC-compatible compilers. */ # define O_BINARY _O_BINARY # define O_TEXT _O_TEXT #endif #ifdef __BEOS__ /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */ # undef O_BINARY # undef O_TEXT #endif /* On reasonable systems, binary I/O is the default. */ #ifndef O_BINARY # define O_BINARY 0 #endif /* Prototypes for local functions. Needed to ensure compiler checking of function argument counts despite of K&R C function definition syntax. */ static const char *get_sysdep_segment_value PARAMS ((const char *name)); /* We need a sign, whether a new catalog was loaded, which can be associated with all translations. This is important if the translations are cached by one of GCC's features. */ int _nl_msg_cat_cntr; /* Expand a system dependent string segment. Return NULL if unsupported. */ static const char * get_sysdep_segment_value (name) const char *name; { /* Test for an ISO C 99 section 7.8.1 format string directive. Syntax: P R I { d | i | o | u | x | X } { { | LEAST | FAST } { 8 | 16 | 32 | 64 } | MAX | PTR } */ /* We don't use a table of 14 times 6 'const char *' strings here, because data relocations cost startup time. */ if (name[0] == 'P' && name[1] == 'R' && name[2] == 'I') { if (name[3] == 'd' || name[3] == 'i' || name[3] == 'o' || name[3] == 'u' || name[3] == 'x' || name[3] == 'X') { if (name[4] == '8' && name[5] == '\0') { if (name[3] == 'd') return PRId8; if (name[3] == 'i') return PRIi8; if (name[3] == 'o') return PRIo8; if (name[3] == 'u') return PRIu8; if (name[3] == 'x') return PRIx8; if (name[3] == 'X') return PRIX8; abort (); } if (name[4] == '1' && name[5] == '6' && name[6] == '\0') { if (name[3] == 'd') return PRId16; if (name[3] == 'i') return PRIi16; if (name[3] == 'o') return PRIo16; if (name[3] == 'u') return PRIu16; if (name[3] == 'x') return PRIx16; if (name[3] == 'X') return PRIX16; abort (); } if (name[4] == '3' && name[5] == '2' && name[6] == '\0') { if (name[3] == 'd') return PRId32; if (name[3] == 'i') return PRIi32; if (name[3] == 'o') return PRIo32; if (name[3] == 'u') return PRIu32; if (name[3] == 'x') return PRIx32; if (name[3] == 'X') return PRIX32; abort (); } if (name[4] == '6' && name[5] == '4' && name[6] == '\0') { if (name[3] == 'd') return PRId64; if (name[3] == 'i') return PRIi64; if (name[3] == 'o') return PRIo64; if (name[3] == 'u') return PRIu64; if (name[3] == 'x') return PRIx64; if (name[3] == 'X') return PRIX64; abort (); } if (name[4] == 'L' && name[5] == 'E' && name[6] == 'A' && name[7] == 'S' && name[8] == 'T') { if (name[9] == '8' && name[10] == '\0') { if (name[3] == 'd') return PRIdLEAST8; if (name[3] == 'i') return PRIiLEAST8; if (name[3] == 'o') return PRIoLEAST8; if (name[3] == 'u') return PRIuLEAST8; if (name[3] == 'x') return PRIxLEAST8; if (name[3] == 'X') return PRIXLEAST8; abort (); } if (name[9] == '1' && name[10] == '6' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST16; if (name[3] == 'i') return PRIiLEAST16; if (name[3] == 'o') return PRIoLEAST16; if (name[3] == 'u') return PRIuLEAST16; if (name[3] == 'x') return PRIxLEAST16; if (name[3] == 'X') return PRIXLEAST16; abort (); } if (name[9] == '3' && name[10] == '2' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST32; if (name[3] == 'i') return PRIiLEAST32; if (name[3] == 'o') return PRIoLEAST32; if (name[3] == 'u') return PRIuLEAST32; if (name[3] == 'x') return PRIxLEAST32; if (name[3] == 'X') return PRIXLEAST32; abort (); } if (name[9] == '6' && name[10] == '4' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST64; if (name[3] == 'i') return PRIiLEAST64; if (name[3] == 'o') return PRIoLEAST64; if (name[3] == 'u') return PRIuLEAST64; if (name[3] == 'x') return PRIxLEAST64; if (name[3] == 'X') return PRIXLEAST64; abort (); } } if (name[4] == 'F' && name[5] == 'A' && name[6] == 'S' && name[7] == 'T') { if (name[8] == '8' && name[9] == '\0') { if (name[3] == 'd') return PRIdFAST8; if (name[3] == 'i') return PRIiFAST8; if (name[3] == 'o') return PRIoFAST8; if (name[3] == 'u') return PRIuFAST8; if (name[3] == 'x') return PRIxFAST8; if (name[3] == 'X') return PRIXFAST8; abort (); } if (name[8] == '1' && name[9] == '6' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST16; if (name[3] == 'i') return PRIiFAST16; if (name[3] == 'o') return PRIoFAST16; if (name[3] == 'u') return PRIuFAST16; if (name[3] == 'x') return PRIxFAST16; if (name[3] == 'X') return PRIXFAST16; abort (); } if (name[8] == '3' && name[9] == '2' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST32; if (name[3] == 'i') return PRIiFAST32; if (name[3] == 'o') return PRIoFAST32; if (name[3] == 'u') return PRIuFAST32; if (name[3] == 'x') return PRIxFAST32; if (name[3] == 'X') return PRIXFAST32; abort (); } if (name[8] == '6' && name[9] == '4' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST64; if (name[3] == 'i') return PRIiFAST64; if (name[3] == 'o') return PRIoFAST64; if (name[3] == 'u') return PRIuFAST64; if (name[3] == 'x') return PRIxFAST64; if (name[3] == 'X') return PRIXFAST64; abort (); } } if (name[4] == 'M' && name[5] == 'A' && name[6] == 'X' && name[7] == '\0') { if (name[3] == 'd') return PRIdMAX; if (name[3] == 'i') return PRIiMAX; if (name[3] == 'o') return PRIoMAX; if (name[3] == 'u') return PRIuMAX; if (name[3] == 'x') return PRIxMAX; if (name[3] == 'X') return PRIXMAX; abort (); } if (name[4] == 'P' && name[5] == 'T' && name[6] == 'R' && name[7] == '\0') { if (name[3] == 'd') return PRIdPTR; if (name[3] == 'i') return PRIiPTR; if (name[3] == 'o') return PRIoPTR; if (name[3] == 'u') return PRIuPTR; if (name[3] == 'x') return PRIxPTR; if (name[3] == 'X') return PRIXPTR; abort (); } } } /* Other system dependent strings are not valid. */ return NULL; } /* Initialize the codeset dependent parts of an opened message catalog. Return the header entry. */ const char * internal_function _nl_init_domain_conv (domain_file, domain, domainbinding) struct loaded_l10nfile *domain_file; struct loaded_domain *domain; struct binding *domainbinding; { /* Find out about the character set the file is encoded with. This can be found (in textual form) in the entry "". If this entry does not exist or if this does not contain the `charset=' information, we will assume the charset matches the one the current locale and we don't have to perform any conversion. */ char *nullentry; size_t nullentrylen; /* Preinitialize fields, to avoid recursion during _nl_find_msg. */ domain->codeset_cntr = (domainbinding != NULL ? domainbinding->codeset_cntr : 0); #ifdef _LIBC domain->conv = (__gconv_t) -1; #else # if HAVE_ICONV domain->conv = (iconv_t) -1; # endif #endif domain->conv_tab = NULL; /* Get the header entry. */ nullentry = _nl_find_msg (domain_file, domainbinding, "", &nullentrylen); if (nullentry != NULL) { #if defined _LIBC || HAVE_ICONV const char *charsetstr; charsetstr = strstr (nullentry, "charset="); if (charsetstr != NULL) { size_t len; char *charset; const char *outcharset; charsetstr += strlen ("charset="); len = strcspn (charsetstr, " \t\n"); charset = (char *) alloca (len + 1); # if defined _LIBC || HAVE_MEMPCPY *((char *) mempcpy (charset, charsetstr, len)) = '\0'; # else memcpy (charset, charsetstr, len); charset[len] = '\0'; # endif /* The output charset should normally be determined by the locale. But sometimes the locale is not used or not correctly set up, so we provide a possibility for the user to override this. Moreover, the value specified through bind_textdomain_codeset overrides both. */ if (domainbinding != NULL && domainbinding->codeset != NULL) outcharset = domainbinding->codeset; else { outcharset = getenv ("OUTPUT_CHARSET"); if (outcharset == NULL || outcharset[0] == '\0') { # ifdef _LIBC outcharset = (*_nl_current[LC_CTYPE])->values[_NL_ITEM_INDEX (CODESET)].string; # else # if HAVE_ICONV extern const char *locale_charset PARAMS ((void)); outcharset = locale_charset (); # endif # endif } } # ifdef _LIBC /* We always want to use transliteration. */ outcharset = norm_add_slashes (outcharset, "TRANSLIT"); charset = norm_add_slashes (charset, NULL); if (__gconv_open (outcharset, charset, &domain->conv, GCONV_AVOID_NOCONV) != __GCONV_OK) domain->conv = (__gconv_t) -1; # else # if HAVE_ICONV /* When using GNU libc >= 2.2 or GNU libiconv >= 1.5, we want to use transliteration. */ # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \ || _LIBICONV_VERSION >= 0x0105 if (strchr (outcharset, '/') == NULL) { char *tmp; len = strlen (outcharset); tmp = (char *) alloca (len + 10 + 1); memcpy (tmp, outcharset, len); memcpy (tmp + len, "//TRANSLIT", 10 + 1); outcharset = tmp; domain->conv = iconv_open (outcharset, charset); freea (outcharset); } else # endif domain->conv = iconv_open (outcharset, charset); # endif # endif freea (charset); } #endif /* _LIBC || HAVE_ICONV */ } return nullentry; } /* Frees the codeset dependent parts of an opened message catalog. */ void internal_function _nl_free_domain_conv (domain) struct loaded_domain *domain; { if (domain->conv_tab != NULL && domain->conv_tab != (char **) -1) free (domain->conv_tab); #ifdef _LIBC if (domain->conv != (__gconv_t) -1) __gconv_close (domain->conv); #else # if HAVE_ICONV if (domain->conv != (iconv_t) -1) iconv_close (domain->conv); # endif #endif } /* Load the message catalogs specified by FILENAME. If it is no valid message catalog do nothing. */ void internal_function _nl_load_domain (domain_file, domainbinding) struct loaded_l10nfile *domain_file; struct binding *domainbinding; { int fd; size_t size; #ifdef _LIBC struct stat64 st; #else struct stat st; #endif struct mo_file_header *data = (struct mo_file_header *) -1; int use_mmap = 0; struct loaded_domain *domain; int revision; const char *nullentry; domain_file->decided = 1; domain_file->data = NULL; /* Note that it would be useless to store domainbinding in domain_file because domainbinding might be == NULL now but != NULL later (after a call to bind_textdomain_codeset). */ /* If the record does not represent a valid locale the FILENAME might be NULL. This can happen when according to the given specification the locale file name is different for XPG and CEN syntax. */ if (domain_file->filename == NULL) return; /* Try to open the addressed file. */ fd = open (domain_file->filename, O_RDONLY | O_BINARY); if (fd == -1) return; /* We must know about the size of the file. */ if ( #ifdef _LIBC __builtin_expect (fstat64 (fd, &st) != 0, 0) #else __builtin_expect (fstat (fd, &st) != 0, 0) #endif || __builtin_expect ((size = (size_t) st.st_size) != st.st_size, 0) || __builtin_expect (size < sizeof (struct mo_file_header), 0)) { /* Something went wrong. */ close (fd); return; } #ifdef HAVE_MMAP /* Now we are ready to load the file. If mmap() is available we try this first. If not available or it failed we try to load it. */ data = (struct mo_file_header *) mmap (NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); if (__builtin_expect (data != (struct mo_file_header *) -1, 1)) { /* mmap() call was successful. */ close (fd); use_mmap = 1; } #endif /* If the data is not yet available (i.e. mmap'ed) we try to load it manually. */ if (data == (struct mo_file_header *) -1) { size_t to_read; char *read_ptr; data = (struct mo_file_header *) malloc (size); if (data == NULL) return; to_read = size; read_ptr = (char *) data; do { long int nb = (long int) read (fd, read_ptr, to_read); if (nb <= 0) { #ifdef EINTR if (nb == -1 && errno == EINTR) continue; #endif close (fd); return; } read_ptr += nb; to_read -= nb; } while (to_read > 0); close (fd); } /* Using the magic number we can test whether it really is a message catalog file. */ if (__builtin_expect (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED, 0)) { /* The magic number is wrong: not a message catalog file. */ #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); return; } domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); if (domain == NULL) return; domain_file->data = domain; domain->data = (char *) data; domain->use_mmap = use_mmap; domain->mmap_size = size; domain->must_swap = data->magic != _MAGIC; domain->malloced = NULL; /* Fill in the information about the available tables. */ revision = W (domain->must_swap, data->revision); /* We support only the major revision 0. */ switch (revision >> 16) { case 0: domain->nstrings = W (domain->must_swap, data->nstrings); domain->orig_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->orig_tab_offset)); domain->trans_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->trans_tab_offset)); domain->hash_size = W (domain->must_swap, data->hash_tab_size); domain->hash_tab = (domain->hash_size > 2 ? (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->hash_tab_offset)) : NULL); domain->must_swap_hash_tab = domain->must_swap; /* Now dispatch on the minor revision. */ switch (revision & 0xffff) { case 0: domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; break; case 1: default: { nls_uint32 n_sysdep_strings; if (domain->hash_tab == NULL) /* This is invalid. These minor revisions need a hash table. */ goto invalid; n_sysdep_strings = W (domain->must_swap, data->n_sysdep_strings); if (n_sysdep_strings > 0) { nls_uint32 n_sysdep_segments; const struct sysdep_segment *sysdep_segments; const char **sysdep_segment_values; const nls_uint32 *orig_sysdep_tab; const nls_uint32 *trans_sysdep_tab; size_t memneed; char *mem; struct sysdep_string_desc *inmem_orig_sysdep_tab; struct sysdep_string_desc *inmem_trans_sysdep_tab; nls_uint32 *inmem_hash_tab; unsigned int i; /* Get the values of the system dependent segments. */ n_sysdep_segments = W (domain->must_swap, data->n_sysdep_segments); sysdep_segments = (const struct sysdep_segment *) ((char *) data + W (domain->must_swap, data->sysdep_segments_offset)); sysdep_segment_values = alloca (n_sysdep_segments * sizeof (const char *)); for (i = 0; i < n_sysdep_segments; i++) { const char *name = (char *) data + W (domain->must_swap, sysdep_segments[i].offset); nls_uint32 namelen = W (domain->must_swap, sysdep_segments[i].length); if (!(namelen > 0 && name[namelen - 1] == '\0')) { freea (sysdep_segment_values); goto invalid; } sysdep_segment_values[i] = get_sysdep_segment_value (name); } orig_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->orig_sysdep_tab_offset)); trans_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->trans_sysdep_tab_offset)); /* Compute the amount of additional memory needed for the system dependent strings and the augmented hash table. */ memneed = 2 * n_sysdep_strings * sizeof (struct sysdep_string_desc) + domain->hash_size * sizeof (nls_uint32); for (i = 0; i < 2 * n_sysdep_strings; i++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, i < n_sysdep_strings ? orig_sysdep_tab[i] : trans_sysdep_tab[i - n_sysdep_strings])); size_t need = 0; const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; need += W (domain->must_swap, p->segsize); sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdepref >= n_sysdep_segments) { /* Invalid. */ freea (sysdep_segment_values); goto invalid; } need += strlen (sysdep_segment_values[sysdepref]); } memneed += need; } /* Allocate additional memory. */ mem = (char *) malloc (memneed); if (mem == NULL) goto invalid; domain->malloced = mem; inmem_orig_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_trans_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_hash_tab = (nls_uint32 *) mem; mem += domain->hash_size * sizeof (nls_uint32); /* Compute the system dependent strings. */ for (i = 0; i < 2 * n_sysdep_strings; i++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, i < n_sysdep_strings ? orig_sysdep_tab[i] : trans_sysdep_tab[i - n_sysdep_strings])); const char *static_segments = (char *) data + W (domain->must_swap, sysdep_string->offset); const struct segment_pair *p = sysdep_string->segments; /* Concatenate the segments, and fill inmem_orig_sysdep_tab[i] (for i < n_sysdep_strings) and inmem_trans_sysdep_tab[i-n_sysdep_strings] (for i >= n_sysdep_strings). */ if (W (domain->must_swap, p->sysdepref) == SEGMENTS_END) { /* Only one static segment. */ inmem_orig_sysdep_tab[i].length = W (domain->must_swap, p->segsize); inmem_orig_sysdep_tab[i].pointer = static_segments; } else { inmem_orig_sysdep_tab[i].pointer = mem; for (p = sysdep_string->segments;; p++) { nls_uint32 segsize = W (domain->must_swap, p->segsize); nls_uint32 sysdepref = W (domain->must_swap, p->sysdepref); size_t n; if (segsize > 0) { memcpy (mem, static_segments, segsize); mem += segsize; static_segments += segsize; } if (sysdepref == SEGMENTS_END) break; n = strlen (sysdep_segment_values[sysdepref]); memcpy (mem, sysdep_segment_values[sysdepref], n); mem += n; } inmem_orig_sysdep_tab[i].length = mem - inmem_orig_sysdep_tab[i].pointer; } } /* Compute the augmented hash table. */ for (i = 0; i < domain->hash_size; i++) inmem_hash_tab[i] = W (domain->must_swap_hash_tab, domain->hash_tab[i]); for (i = 0; i < n_sysdep_strings; i++) { const char *msgid = inmem_orig_sysdep_tab[i].pointer; nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); for (;;) { if (inmem_hash_tab[idx] == 0) { /* Hash table entry is empty. Use it. */ inmem_hash_tab[idx] = 1 + domain->nstrings + i; break; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } } freea (sysdep_segment_values); domain->n_sysdep_strings = n_sysdep_strings; domain->orig_sysdep_tab = inmem_orig_sysdep_tab; domain->trans_sysdep_tab = inmem_trans_sysdep_tab; domain->hash_tab = inmem_hash_tab; domain->must_swap_hash_tab = 0; } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } } break; } break; default: /* This is an invalid revision. */ invalid: /* This is an invalid .mo file. */ if (domain->malloced) free (domain->malloced); #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); free (domain); domain_file->data = NULL; return; } /* Now initialize the character set converter from the character set the file is encoded with (found in the header entry) to the domain's specified character set or the locale's character set. */ nullentry = _nl_init_domain_conv (domain_file, domain, domainbinding); /* Also look for a plural specification. */ EXTRACT_PLURAL_EXPRESSION (nullentry, &domain->plural, &domain->nplurals); } #ifdef _LIBC void internal_function _nl_unload_domain (domain) struct loaded_domain *domain; { if (domain->plural != &__gettext_germanic_plural) __gettext_free_exp (domain->plural); _nl_free_domain_conv (domain); if (domain->malloced) free (domain->malloced); # ifdef _POSIX_MAPPED_FILES if (domain->use_mmap) munmap ((caddr_t) domain->data, domain->mmap_size); else # endif /* _POSIX_MAPPED_FILES */ free ((void *) domain->data); free (domain); } #endif lincity-1.13.1/intl/localealias.c0000644000175000017500000002330307627052670013570 00000000000000/* Handle aliases for locale names. Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _LIBC || defined HAVE___FSETLOCKING # include #endif #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif #endif #include #include #include "gettextP.h" /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define strcasecmp __strcasecmp # ifndef mempcpy # define mempcpy __mempcpy # endif # define HAVE_MEMPCPY 1 # define HAVE___FSETLOCKING 1 /* We need locking here since we can be called from different places. */ # include __libc_lock_define_initialized (static, lock); #endif #ifndef internal_function # define internal_function #endif /* Some optimizations for glibc. */ #ifdef _LIBC # define FEOF(fp) feof_unlocked (fp) # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp) #else # define FEOF(fp) feof (fp) # define FGETS(buf, n, fp) fgets (buf, n, fp) #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif #if defined _LIBC_REENTRANT || defined HAVE_FGETS_UNLOCKED # undef fgets # define fgets(buf, len, s) fgets_unlocked (buf, len, s) #endif #if defined _LIBC_REENTRANT || defined HAVE_FEOF_UNLOCKED # undef feof # define feof(s) feof_unlocked (s) #endif struct alias_map { const char *alias; const char *value; }; static char *string_space; static size_t string_space_act; static size_t string_space_max; static struct alias_map *map; static size_t nmap; static size_t maxmap; /* Prototypes for local functions. */ static size_t read_alias_file PARAMS ((const char *fname, int fname_len)) internal_function; static int extend_alias_table PARAMS ((void)); static int alias_compare PARAMS ((const struct alias_map *map1, const struct alias_map *map2)); const char * _nl_expand_alias (name) const char *name; { static const char *locale_alias_path; struct alias_map *retval; const char *result = NULL; size_t added; #ifdef _LIBC __libc_lock_lock (lock); #endif if (locale_alias_path == NULL) locale_alias_path = LOCALE_ALIAS_PATH; do { struct alias_map item; item.alias = name; if (nmap > 0) retval = (struct alias_map *) bsearch (&item, map, nmap, sizeof (struct alias_map), (int (*) PARAMS ((const void *, const void *)) ) alias_compare); else retval = NULL; /* We really found an alias. Return the value. */ if (retval != NULL) { result = retval->value; break; } /* Perhaps we can find another alias file. */ added = 0; while (added == 0 && locale_alias_path[0] != '\0') { const char *start; while (locale_alias_path[0] == PATH_SEPARATOR) ++locale_alias_path; start = locale_alias_path; while (locale_alias_path[0] != '\0' && locale_alias_path[0] != PATH_SEPARATOR) ++locale_alias_path; if (start < locale_alias_path) added = read_alias_file (start, locale_alias_path - start); } } while (added != 0); #ifdef _LIBC __libc_lock_unlock (lock); #endif return result; } static size_t internal_function read_alias_file (fname, fname_len) const char *fname; int fname_len; { FILE *fp; char *full_fname; size_t added; static const char aliasfile[] = "/locale.alias"; full_fname = (char *) alloca (fname_len + sizeof aliasfile); #ifdef HAVE_MEMPCPY mempcpy (mempcpy (full_fname, fname, fname_len), aliasfile, sizeof aliasfile); #else memcpy (full_fname, fname, fname_len); memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile); #endif fp = fopen (full_fname, "r"); freea (full_fname); if (fp == NULL) return 0; #ifdef HAVE___FSETLOCKING /* No threads present. */ __fsetlocking (fp, FSETLOCKING_BYCALLER); #endif added = 0; while (!FEOF (fp)) { /* It is a reasonable approach to use a fix buffer here because a) we are only interested in the first two fields b) these fields must be usable as file names and so must not be that long */ char buf[BUFSIZ]; char *alias; char *value; char *cp; if (FGETS (buf, sizeof buf, fp) == NULL) /* EOF reached. */ break; /* Possibly not the whole line fits into the buffer. Ignore the rest of the line. */ if (strchr (buf, '\n') == NULL) { char altbuf[BUFSIZ]; do if (FGETS (altbuf, sizeof altbuf, fp) == NULL) /* Make sure the inner loop will be left. The outer loop will exit at the `feof' test. */ break; while (strchr (altbuf, '\n') == NULL); } cp = buf; /* Ignore leading white space. */ while (isspace ((unsigned char) cp[0])) ++cp; /* A leading '#' signals a comment line. */ if (cp[0] != '\0' && cp[0] != '#') { alias = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate alias name. */ if (cp[0] != '\0') *cp++ = '\0'; /* Now look for the beginning of the value. */ while (isspace ((unsigned char) cp[0])) ++cp; if (cp[0] != '\0') { size_t alias_len; size_t value_len; value = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate value. */ if (cp[0] == '\n') { /* This has to be done to make the following test for the end of line possible. We are looking for the terminating '\n' which do not overwrite here. */ *cp++ = '\0'; *cp = '\n'; } else if (cp[0] != '\0') *cp++ = '\0'; if (nmap >= maxmap) if (__builtin_expect (extend_alias_table (), 0)) return added; alias_len = strlen (alias) + 1; value_len = strlen (value) + 1; if (string_space_act + alias_len + value_len > string_space_max) { /* Increase size of memory pool. */ size_t new_size = (string_space_max + (alias_len + value_len > 1024 ? alias_len + value_len : 1024)); char *new_pool = (char *) realloc (string_space, new_size); if (new_pool == NULL) return added; if (__builtin_expect (string_space != new_pool, 0)) { size_t i; for (i = 0; i < nmap; i++) { map[i].alias += new_pool - string_space; map[i].value += new_pool - string_space; } } string_space = new_pool; string_space_max = new_size; } map[nmap].alias = memcpy (&string_space[string_space_act], alias, alias_len); string_space_act += alias_len; map[nmap].value = memcpy (&string_space[string_space_act], value, value_len); string_space_act += value_len; ++nmap; ++added; } } } /* Should we test for ferror()? I think we have to silently ignore errors. --drepper */ fclose (fp); if (added > 0) qsort (map, nmap, sizeof (struct alias_map), (int (*) PARAMS ((const void *, const void *))) alias_compare); return added; } static int extend_alias_table () { size_t new_size; struct alias_map *new_map; new_size = maxmap == 0 ? 100 : 2 * maxmap; new_map = (struct alias_map *) realloc (map, (new_size * sizeof (struct alias_map))); if (new_map == NULL) /* Simply don't extend: we don't have any more core. */ return -1; map = new_map; maxmap = new_size; return 0; } #ifdef _LIBC static void __attribute__ ((unused)) free_mem (void) { if (string_space != NULL) free (string_space); if (map != NULL) free (map); } text_set_element (__libc_subfreeres, free_mem); #endif static int alias_compare (map1, map2) const struct alias_map *map1; const struct alias_map *map2; { #if defined _LIBC || defined HAVE_STRCASECMP return strcasecmp (map1->alias, map2->alias); #else const unsigned char *p1 = (const unsigned char *) map1->alias; const unsigned char *p2 = (const unsigned char *) map2->alias; unsigned char c1, c2; if (p1 == p2) return 0; do { /* I know this seems to be odd but the tolower() function in some systems libc cannot handle nonalpha characters. */ c1 = isupper (*p1) ? tolower (*p1) : *p1; c2 = isupper (*p2) ? tolower (*p2) : *p2; if (c1 == '\0') break; ++p1; ++p2; } while (c1 == c2); return c1 - c2; #endif } lincity-1.13.1/intl/textdomain.c0000644000175000017500000001071007627052670013471 00000000000000/* Implementation of the textdomain(3) function. Copyright (C) 1995-1998, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain #endif /* @@ end of prolog @@ */ /* Name of the default text domain. */ extern const char _nl_default_default_domain[] attribute_hidden; /* Default text domain in which entries for gettext(3) are to be found. */ extern const char *_nl_current_default_domain attribute_hidden; /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define TEXTDOMAIN __textdomain # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define TEXTDOMAIN libintl_textdomain #endif /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ char * TEXTDOMAIN (domainname) const char *domainname; { char *new_domain; char *old_domain; /* A NULL pointer requests the current setting. */ if (domainname == NULL) return (char *) _nl_current_default_domain; __libc_rwlock_wrlock (_nl_state_lock); old_domain = (char *) _nl_current_default_domain; /* If domain name is the null string set to default domain "messages". */ if (domainname[0] == '\0' || strcmp (domainname, _nl_default_default_domain) == 0) { _nl_current_default_domain = _nl_default_default_domain; new_domain = (char *) _nl_current_default_domain; } else if (strcmp (domainname, old_domain) == 0) /* This can happen and people will use it to signal that some environment variable changed. */ new_domain = old_domain; else { /* If the following malloc fails `_nl_current_default_domain' will be NULL. This value will be returned and so signals we are out of core. */ #if defined _LIBC || defined HAVE_STRDUP new_domain = strdup (domainname); #else size_t len = strlen (domainname) + 1; new_domain = (char *) malloc (len); if (new_domain != NULL) memcpy (new_domain, domainname, len); #endif if (new_domain != NULL) _nl_current_default_domain = new_domain; } /* We use this possibility to signal a change of the loaded catalogs since this is most likely the case and there is no other easy we to do it. Do it only when the call was successful. */ if (new_domain != NULL) { ++_nl_msg_cat_cntr; if (old_domain != new_domain && old_domain != _nl_default_default_domain) free (old_domain); } __libc_rwlock_unlock (_nl_state_lock); return new_domain; } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__textdomain, textdomain); #endif lincity-1.13.1/intl/l10nflist.c0000644000175000017500000003052007627052670013132 00000000000000/* Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Tell glibc's to provide a prototype for stpcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #if defined _LIBC || defined HAVE_ARGZ_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # ifndef stpcpy # define stpcpy(dest, src) __stpcpy(dest, src) # endif #else # ifndef HAVE_STPCPY static char *stpcpy PARAMS ((char *dest, const char *src)); # endif #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) #endif /* Define function which are usually not available. */ #if !defined _LIBC && !defined HAVE___ARGZ_COUNT /* Returns the number of strings in ARGZ. */ static size_t argz_count__ PARAMS ((const char *argz, size_t len)); static size_t argz_count__ (argz, len) const char *argz; size_t len; { size_t count = 0; while (len > 0) { size_t part_len = strlen (argz); argz += part_len + 1; len -= part_len + 1; count++; } return count; } # undef __argz_count # define __argz_count(argz, len) argz_count__ (argz, len) #else # ifdef _LIBC # define __argz_count(argz, len) INTUSE(__argz_count) (argz, len) # endif #endif /* !_LIBC && !HAVE___ARGZ_COUNT */ #if !defined _LIBC && !defined HAVE___ARGZ_STRINGIFY /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's except the last into the character SEP. */ static void argz_stringify__ PARAMS ((char *argz, size_t len, int sep)); static void argz_stringify__ (argz, len, sep) char *argz; size_t len; int sep; { while (len > 0) { size_t part_len = strlen (argz); argz += part_len; len -= part_len + 1; if (len > 0) *argz++ = sep; } } # undef __argz_stringify # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep) #else # ifdef _LIBC # define __argz_stringify(argz, len, sep) \ INTUSE(__argz_stringify) (argz, len, sep) # endif #endif /* !_LIBC && !HAVE___ARGZ_STRINGIFY */ #if !defined _LIBC && !defined HAVE___ARGZ_NEXT static char *argz_next__ PARAMS ((char *argz, size_t argz_len, const char *entry)); static char * argz_next__ (argz, argz_len, entry) char *argz; size_t argz_len; const char *entry; { if (entry) { if (entry < argz + argz_len) entry = strchr (entry, '\0') + 1; return entry >= argz + argz_len ? NULL : (char *) entry; } else if (argz_len > 0) return argz; else return 0; } # undef __argz_next # define __argz_next(argz, len, entry) argz_next__ (argz, len, entry) #endif /* !_LIBC && !HAVE___ARGZ_NEXT */ /* Return number of bits set in X. */ static int pop PARAMS ((int x)); static inline int pop (x) int x; { /* We assume that no more than 16 bits are used. */ x = ((x & ~0x5555) >> 1) + (x & 0x5555); x = ((x & ~0x3333) >> 2) + (x & 0x3333); x = ((x >> 4) + x) & 0x0f0f; x = ((x >> 8) + x) & 0xff; return x; } struct loaded_l10nfile * _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, mask, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, do_allocate) struct loaded_l10nfile **l10nfile_list; const char *dirlist; size_t dirlist_len; int mask; const char *language; const char *territory; const char *codeset; const char *normalized_codeset; const char *modifier; const char *special; const char *sponsor; const char *revision; const char *filename; int do_allocate; { char *abs_filename; struct loaded_l10nfile **lastp; struct loaded_l10nfile *retval; char *cp; size_t dirlist_count; size_t entries; int cnt; /* If LANGUAGE contains an absolute directory specification, we ignore DIRLIST. */ if (IS_ABSOLUTE_PATH (language)) dirlist_len = 0; /* Allocate room for the full file name. */ abs_filename = (char *) malloc (dirlist_len + strlen (language) + ((mask & TERRITORY) != 0 ? strlen (territory) + 1 : 0) + ((mask & XPG_CODESET) != 0 ? strlen (codeset) + 1 : 0) + ((mask & XPG_NORM_CODESET) != 0 ? strlen (normalized_codeset) + 1 : 0) + (((mask & XPG_MODIFIER) != 0 || (mask & CEN_AUDIENCE) != 0) ? strlen (modifier) + 1 : 0) + ((mask & CEN_SPECIAL) != 0 ? strlen (special) + 1 : 0) + (((mask & CEN_SPONSOR) != 0 || (mask & CEN_REVISION) != 0) ? (1 + ((mask & CEN_SPONSOR) != 0 ? strlen (sponsor) : 0) + ((mask & CEN_REVISION) != 0 ? strlen (revision) + 1 : 0)) : 0) + 1 + strlen (filename) + 1); if (abs_filename == NULL) return NULL; /* Construct file name. */ cp = abs_filename; if (dirlist_len > 0) { memcpy (cp, dirlist, dirlist_len); __argz_stringify (cp, dirlist_len, PATH_SEPARATOR); cp += dirlist_len; cp[-1] = '/'; } cp = stpcpy (cp, language); if ((mask & TERRITORY) != 0) { *cp++ = '_'; cp = stpcpy (cp, territory); } if ((mask & XPG_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, codeset); } if ((mask & XPG_NORM_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, normalized_codeset); } if ((mask & (XPG_MODIFIER | CEN_AUDIENCE)) != 0) { /* This component can be part of both syntaces but has different leading characters. For CEN we use `+', else `@'. */ *cp++ = (mask & CEN_AUDIENCE) != 0 ? '+' : '@'; cp = stpcpy (cp, modifier); } if ((mask & CEN_SPECIAL) != 0) { *cp++ = '+'; cp = stpcpy (cp, special); } if ((mask & (CEN_SPONSOR | CEN_REVISION)) != 0) { *cp++ = ','; if ((mask & CEN_SPONSOR) != 0) cp = stpcpy (cp, sponsor); if ((mask & CEN_REVISION) != 0) { *cp++ = '_'; cp = stpcpy (cp, revision); } } *cp++ = '/'; stpcpy (cp, filename); /* Look in list of already loaded domains whether it is already available. */ lastp = l10nfile_list; for (retval = *l10nfile_list; retval != NULL; retval = retval->next) if (retval->filename != NULL) { int compare = strcmp (retval->filename, abs_filename); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It's not in the list. */ retval = NULL; break; } lastp = &retval->next; } if (retval != NULL || do_allocate == 0) { free (abs_filename); return retval; } dirlist_count = (dirlist_len > 0 ? __argz_count (dirlist, dirlist_len) : 1); /* Allocate a new loaded_l10nfile. */ retval = (struct loaded_l10nfile *) malloc (sizeof (*retval) + (((dirlist_count << pop (mask)) + (dirlist_count > 1 ? 1 : 0)) * sizeof (struct loaded_l10nfile *))); if (retval == NULL) return NULL; retval->filename = abs_filename; /* We set retval->data to NULL here; it is filled in later. Setting retval->decided to 1 here means that retval does not correspond to a real file (dirlist_count > 1) or is not worth looking up (if an unnormalized codeset was specified). */ retval->decided = (dirlist_count > 1 || ((mask & XPG_CODESET) != 0 && (mask & XPG_NORM_CODESET) != 0)); retval->data = NULL; retval->next = *lastp; *lastp = retval; entries = 0; /* Recurse to fill the inheritance list of RETVAL. If the DIRLIST is a real list (i.e. DIRLIST_COUNT > 1), the RETVAL entry does not correspond to a real file; retval->filename contains colons. In this case we loop across all elements of DIRLIST and across all bit patterns dominated by MASK. If the DIRLIST is a single directory or entirely redundant (i.e. DIRLIST_COUNT == 1), we loop across all bit patterns dominated by MASK, excluding MASK itself. In either case, we loop down from MASK to 0. This has the effect that the extra bits in the locale name are dropped in this order: first the modifier, then the territory, then the codeset, then the normalized_codeset. */ for (cnt = dirlist_count > 1 ? mask : mask - 1; cnt >= 0; --cnt) if ((cnt & ~mask) == 0 && ((cnt & CEN_SPECIFIC) == 0 || (cnt & XPG_SPECIFIC) == 0) && ((cnt & XPG_CODESET) == 0 || (cnt & XPG_NORM_CODESET) == 0)) { if (dirlist_count > 1) { /* Iterate over all elements of the DIRLIST. */ char *dir = NULL; while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir)) != NULL) retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } else retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } retval->successor[entries] = NULL; return retval; } /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ const char * _nl_normalize_codeset (codeset, name_len) const char *codeset; size_t name_len; { int len = 0; int only_digit = 1; char *retval; char *wp; size_t cnt; for (cnt = 0; cnt < name_len; ++cnt) if (isalnum ((unsigned char) codeset[cnt])) { ++len; if (isalpha ((unsigned char) codeset[cnt])) only_digit = 0; } retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1); if (retval != NULL) { if (only_digit) wp = stpcpy (retval, "iso"); else wp = retval; for (cnt = 0; cnt < name_len; ++cnt) if (isalpha ((unsigned char) codeset[cnt])) *wp++ = tolower ((unsigned char) codeset[cnt]); else if (isdigit ((unsigned char) codeset[cnt])) *wp++ = codeset[cnt]; *wp = '\0'; } return (const char *) retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (dest, src) char *dest; const char *src; { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif lincity-1.13.1/intl/explodename.c0000644000175000017500000001105007627052670013614 00000000000000/* Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ char * _nl_find_language (name) const char *name; { while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '+' && name[0] != ',') ++name; return (char *) name; } int _nl_explode_name (name, language, modifier, territory, codeset, normalized_codeset, special, sponsor, revision) char *name; const char **language; const char **modifier; const char **territory; const char **codeset; const char **normalized_codeset; const char **special; const char **sponsor; const char **revision; { enum { undecided, xpg, cen } syntax; char *cp; int mask; *modifier = NULL; *territory = NULL; *codeset = NULL; *normalized_codeset = NULL; *special = NULL; *sponsor = NULL; *revision = NULL; /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = 0; syntax = undecided; *language = cp = name; cp = _nl_find_language (*language); if (*language == cp) /* This does not make sense: language has to be specified. Use this entry as it is without exploding. Perhaps it is an alias. */ cp = strchr (*language, '\0'); else if (cp[0] == '_') { /* Next is the territory. */ cp[0] = '\0'; *territory = ++cp; while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= TERRITORY; if (cp[0] == '.') { /* Next is the codeset. */ syntax = xpg; cp[0] = '\0'; *codeset = ++cp; while (cp[0] != '\0' && cp[0] != '@') ++cp; mask |= XPG_CODESET; if (*codeset != cp && (*codeset)[0] != '\0') { *normalized_codeset = _nl_normalize_codeset (*codeset, cp - *codeset); if (strcmp (*codeset, *normalized_codeset) == 0) free ((char *) *normalized_codeset); else mask |= XPG_NORM_CODESET; } } } if (cp[0] == '@' || (syntax != xpg && cp[0] == '+')) { /* Next is the modifier. */ syntax = cp[0] == '@' ? xpg : cen; cp[0] = '\0'; *modifier = ++cp; while (syntax == cen && cp[0] != '\0' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= XPG_MODIFIER | CEN_AUDIENCE; } if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_')) { syntax = cen; if (cp[0] == '+') { /* Next is special application (CEN syntax). */ cp[0] = '\0'; *special = ++cp; while (cp[0] != '\0' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= CEN_SPECIAL; } if (cp[0] == ',') { /* Next is sponsor (CEN syntax). */ cp[0] = '\0'; *sponsor = ++cp; while (cp[0] != '\0' && cp[0] != '_') ++cp; mask |= CEN_SPONSOR; } if (cp[0] == '_') { /* Next is revision (CEN syntax). */ cp[0] = '\0'; *revision = ++cp; mask |= CEN_REVISION; } } /* For CEN syntax values it might be important to have the separator character in the file name, not for XPG syntax. */ if (syntax == xpg) { if (*territory != NULL && (*territory)[0] == '\0') mask &= ~TERRITORY; if (*codeset != NULL && (*codeset)[0] == '\0') mask &= ~XPG_CODESET; if (*modifier != NULL && (*modifier)[0] == '\0') mask &= ~XPG_MODIFIER; } return mask; } lincity-1.13.1/intl/dcigettext.c0000644000175000017500000010034407627052670013464 00000000000000/* Implementation of the internal dcigettext function. Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif #endif #include #ifndef errno extern int errno; #endif #ifndef __set_errno # define __set_errno(val) errno = (val) #endif #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include #ifdef _LIBC /* Guess whether integer division by zero raises signal SIGFPE. Set to 1 only if you know for sure. In case of doubt, set to 0. */ # if defined __alpha__ || defined __arm__ || defined __i386__ \ || defined __m68k__ || defined __s390__ # define INTDIV0_RAISES_SIGFPE 1 # else # define INTDIV0_RAISES_SIGFPE 0 # endif #endif #if !INTDIV0_RAISES_SIGFPE # include #endif #if defined HAVE_SYS_PARAM_H || defined _LIBC # include #endif #include "gettextP.h" #include "plural-exp.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "hash-string.h" /* Thread safetyness. */ #ifdef _LIBC # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_lock_define_initialized(CLASS, NAME) # define __libc_lock_lock(NAME) # define __libc_lock_unlock(NAME) # define __libc_rwlock_define_initialized(CLASS, NAME) # define __libc_rwlock_rdlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* Alignment of types. */ #if defined __GNUC__ && __GNUC__ >= 2 # define alignof(TYPE) __alignof__ (TYPE) #else # define alignof(TYPE) \ ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define getcwd __getcwd # ifndef stpcpy # define stpcpy __stpcpy # endif # define tfind __tfind #else # if !defined HAVE_GETCWD char *getwd (); # define getcwd(buf, max) getwd (buf) # else char *getcwd (); # endif # ifndef HAVE_STPCPY static char *stpcpy PARAMS ((char *dest, const char *src)); # endif # ifndef HAVE_MEMPCPY static void *mempcpy PARAMS ((void *dest, const void *src, size_t n)); # endif #endif /* Amount to increase buffer size by in each try. */ #define PATH_INCR 32 /* The following is from pathmax.h. */ /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define PATH_MAX but might cause redefinition warnings when sys/param.h is later included (as on MORE/BSD 4.3). */ #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__) # include #endif #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 255 #endif #if !defined PATH_MAX && defined _PC_PATH_MAX # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) #endif /* Don't include sys/param.h if it already has been. */ #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN # include #endif #if !defined PATH_MAX && defined MAXPATHLEN # define PATH_MAX MAXPATHLEN #endif #ifndef PATH_MAX # define PATH_MAX _POSIX_PATH_MAX #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) #endif /* This is the type used for the search tree where known translations are stored. */ struct known_translation_t { /* Domain in which to search. */ char *domainname; /* The category. */ int category; /* State of the catalog counter at the point the string was found. */ int counter; /* Catalog where the string was found. */ struct loaded_l10nfile *domain; /* And finally the translation. */ const char *translation; size_t translation_length; /* Pointer to the string in question. */ char msgid[ZERO]; }; /* Root of the search tree with known translations. We can use this only if the system provides the `tsearch' function family. */ #if defined HAVE_TSEARCH || defined _LIBC # include static void *root; # ifdef _LIBC # define tsearch __tsearch # endif /* Function to compare two entries in the table of known translations. */ static int transcmp PARAMS ((const void *p1, const void *p2)); static int transcmp (p1, p2) const void *p1; const void *p2; { const struct known_translation_t *s1; const struct known_translation_t *s2; int result; s1 = (const struct known_translation_t *) p1; s2 = (const struct known_translation_t *) p2; result = strcmp (s1->msgid, s2->msgid); if (result == 0) { result = strcmp (s1->domainname, s2->domainname); if (result == 0) /* We compare the category last (though this is the cheapest operation) since it is hopefully always the same (namely LC_MESSAGES). */ result = s1->category - s2->category; } return result; } #endif /* Name of the default domain used for gettext(3) prior any call to textdomain(3). The default value for this is "messages". */ const char _nl_default_default_domain[] attribute_hidden = "messages"; /* Value used as the default domain for gettext(3). */ const char *_nl_current_default_domain attribute_hidden = _nl_default_default_domain; /* Contains the default location of the message catalogs. */ #if defined __EMX__ extern const char _nl_default_dirname[]; #else const char _nl_default_dirname[] = LOCALEDIR; #endif /* List with bindings of specific domains created by bindtextdomain() calls. */ struct binding *_nl_domain_bindings; /* Prototypes for local functions. */ static char *plural_lookup PARAMS ((struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len)) internal_function; static const char *category_to_name PARAMS ((int category)) internal_function; static const char *guess_category_value PARAMS ((int category, const char *categoryname)) internal_function; /* For those loosing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA /* Nothing has to be done. */ # define freea(p) /* nothing */ # define ADD_BLOCK(list, address) /* nothing */ # define FREE_BLOCKS(list) /* nothing */ #else struct block_list { void *address; struct block_list *next; }; # define ADD_BLOCK(list, addr) \ do { \ struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \ /* If we cannot get a free block we cannot add the new element to \ the list. */ \ if (newp != NULL) { \ newp->address = (addr); \ newp->next = (list); \ (list) = newp; \ } \ } while (0) # define FREE_BLOCKS(list) \ do { \ while (list != NULL) { \ struct block_list *old = list; \ list = list->next; \ free (old->address); \ free (old); \ } \ } while (0) # undef alloca # define alloca(size) (malloc (size)) # define freea(p) free (p) #endif /* have alloca */ #ifdef _LIBC /* List of blocks allocated for translations. */ typedef struct transmem_list { struct transmem_list *next; char data[ZERO]; } transmem_block_t; static struct transmem_list *transmem_list; #else typedef unsigned char transmem_block_t; #endif /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCIGETTEXT __dcigettext #else # define DCIGETTEXT libintl_dcigettext #endif /* Lock variable to protect the global data in the gettext implementation. */ #ifdef _LIBC __libc_rwlock_define_initialized (, _nl_state_lock attribute_hidden) #endif /* Checking whether the binaries runs SUID must be done and glibc provides easier methods therefore we make a difference here. */ #ifdef _LIBC # define ENABLE_SECURE __libc_enable_secure # define DETERMINE_SECURE #else # ifndef HAVE_GETUID # define getuid() 0 # endif # ifndef HAVE_GETGID # define getgid() 0 # endif # ifndef HAVE_GETEUID # define geteuid() getuid() # endif # ifndef HAVE_GETEGID # define getegid() getgid() # endif static int enable_secure; # define ENABLE_SECURE (enable_secure == 1) # define DETERMINE_SECURE \ if (enable_secure == 0) \ { \ if (getuid () != geteuid () || getgid () != getegid ()) \ enable_secure = 1; \ else \ enable_secure = -1; \ } #endif /* Get the function to evaluate the plural expression. */ #include "eval-plural.h" /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale and, if PLURAL is nonzero, search over string depending on the plural form determined by N. */ char * DCIGETTEXT (domainname, msgid1, msgid2, plural, n, category) const char *domainname; const char *msgid1; const char *msgid2; int plural; unsigned long int n; int category; { #ifndef HAVE_ALLOCA struct block_list *block_list = NULL; #endif struct loaded_l10nfile *domain; struct binding *binding; const char *categoryname; const char *categoryvalue; char *dirname, *xdomainname; char *single_locale; char *retval; size_t retlen; int saved_errno; #if defined HAVE_TSEARCH || defined _LIBC struct known_translation_t *search; struct known_translation_t **foundp = NULL; size_t msgid_len; #endif size_t domainname_len; /* If no real MSGID is given return NULL. */ if (msgid1 == NULL) return NULL; __libc_rwlock_rdlock (_nl_state_lock); /* If DOMAINNAME is NULL, we are interested in the default domain. If CATEGORY is not LC_MESSAGES this might not make much sense but the definition left this undefined. */ if (domainname == NULL) domainname = _nl_current_default_domain; /* OS/2 specific: backward compatibility with older libintl versions */ #ifdef LC_MESSAGES_COMPAT if (category == LC_MESSAGES_COMPAT) category = LC_MESSAGES; #endif #if defined HAVE_TSEARCH || defined _LIBC msgid_len = strlen (msgid1) + 1; /* Try to find the translation among those which we found at some time. */ search = (struct known_translation_t *) alloca (offsetof (struct known_translation_t, msgid) + msgid_len); memcpy (search->msgid, msgid1, msgid_len); search->domainname = (char *) domainname; search->category = category; foundp = (struct known_translation_t **) tfind (search, &root, transcmp); freea (search); if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr) { /* Now deal with plural. */ if (plural) retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, (*foundp)->translation_length); else retval = (char *) (*foundp)->translation; __libc_rwlock_unlock (_nl_state_lock); return retval; } #endif /* Preserve the `errno' value. */ saved_errno = errno; /* See whether this is a SUID binary or not. */ DETERMINE_SECURE; /* First find matching binding. */ for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding == NULL) dirname = (char *) _nl_default_dirname; else if (IS_ABSOLUTE_PATH (binding->dirname)) dirname = binding->dirname; else { /* We have a relative path. Make it absolute now. */ size_t dirname_len = strlen (binding->dirname) + 1; size_t path_max; char *ret; path_max = (unsigned int) PATH_MAX; path_max += 2; /* The getcwd docs say to do this. */ for (;;) { dirname = (char *) alloca (path_max + dirname_len); ADD_BLOCK (block_list, dirname); __set_errno (0); ret = getcwd (dirname, path_max); if (ret != NULL || errno != ERANGE) break; path_max += path_max / 2; path_max += PATH_INCR; } if (ret == NULL) { /* We cannot get the current working directory. Don't signal an error but simply return the default string. */ FREE_BLOCKS (block_list); __libc_rwlock_unlock (_nl_state_lock); __set_errno (saved_errno); return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); } stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname); } /* Now determine the symbolic name of CATEGORY and its value. */ categoryname = category_to_name (category); categoryvalue = guess_category_value (category, categoryname); domainname_len = strlen (domainname); xdomainname = (char *) alloca (strlen (categoryname) + domainname_len + 5); ADD_BLOCK (block_list, xdomainname); stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"), domainname, domainname_len), ".mo"); /* Creating working area. */ single_locale = (char *) alloca (strlen (categoryvalue) + 1); ADD_BLOCK (block_list, single_locale); /* Search for the given string. This is a loop because we perhaps got an ordered list of languages to consider for the translation. */ while (1) { /* Make CATEGORYVALUE point to the next element of the list. */ while (categoryvalue[0] != '\0' && categoryvalue[0] == ':') ++categoryvalue; if (categoryvalue[0] == '\0') { /* The whole contents of CATEGORYVALUE has been searched but no valid entry has been found. We solve this situation by implicitly appending a "C" entry, i.e. no translation will take place. */ single_locale[0] = 'C'; single_locale[1] = '\0'; } else { char *cp = single_locale; while (categoryvalue[0] != '\0' && categoryvalue[0] != ':') *cp++ = *categoryvalue++; *cp = '\0'; /* When this is a SUID binary we must not allow accessing files outside the dedicated directories. */ if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale)) /* Ingore this entry. */ continue; } /* If the current locale value is C (or POSIX) we don't load a domain. Return the MSGID. */ if (strcmp (single_locale, "C") == 0 || strcmp (single_locale, "POSIX") == 0) { FREE_BLOCKS (block_list); __libc_rwlock_unlock (_nl_state_lock); __set_errno (saved_errno); return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); } /* Find structure describing the message catalog matching the DOMAINNAME and CATEGORY. */ domain = _nl_find_domain (dirname, single_locale, xdomainname, binding); if (domain != NULL) { retval = _nl_find_msg (domain, binding, msgid1, &retlen); if (retval == NULL) { int cnt; for (cnt = 0; domain->successor[cnt] != NULL; ++cnt) { retval = _nl_find_msg (domain->successor[cnt], binding, msgid1, &retlen); if (retval != NULL) { domain = domain->successor[cnt]; break; } } } if (retval != NULL) { /* Found the translation of MSGID1 in domain DOMAIN: starting at RETVAL, RETLEN bytes. */ FREE_BLOCKS (block_list); __set_errno (saved_errno); #if defined HAVE_TSEARCH || defined _LIBC if (foundp == NULL) { /* Create a new entry and add it to the search tree. */ struct known_translation_t *newp; newp = (struct known_translation_t *) malloc (offsetof (struct known_translation_t, msgid) + msgid_len + domainname_len + 1); if (newp != NULL) { newp->domainname = mempcpy (newp->msgid, msgid1, msgid_len); memcpy (newp->domainname, domainname, domainname_len + 1); newp->category = category; newp->counter = _nl_msg_cat_cntr; newp->domain = domain; newp->translation = retval; newp->translation_length = retlen; /* Insert the entry in the search tree. */ foundp = (struct known_translation_t **) tsearch (newp, &root, transcmp); if (foundp == NULL || __builtin_expect (*foundp != newp, 0)) /* The insert failed. */ free (newp); } } else { /* We can update the existing entry. */ (*foundp)->counter = _nl_msg_cat_cntr; (*foundp)->domain = domain; (*foundp)->translation = retval; (*foundp)->translation_length = retlen; } #endif /* Now deal with plural. */ if (plural) retval = plural_lookup (domain, n, retval, retlen); __libc_rwlock_unlock (_nl_state_lock); return retval; } } } /* NOTREACHED */ } char * internal_function _nl_find_msg (domain_file, domainbinding, msgid, lengthp) struct loaded_l10nfile *domain_file; struct binding *domainbinding; const char *msgid; size_t *lengthp; { struct loaded_domain *domain; nls_uint32 nstrings; size_t act; char *result; size_t resultlen; if (domain_file->decided == 0) _nl_load_domain (domain_file, domainbinding); if (domain_file->data == NULL) return NULL; domain = (struct loaded_domain *) domain_file->data; nstrings = domain->nstrings; /* Locate the MSGID and its translation. */ if (domain->hash_tab != NULL) { /* Use the hashing table. */ nls_uint32 len = strlen (msgid); nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); while (1) { nls_uint32 nstr = W (domain->must_swap_hash_tab, domain->hash_tab[idx]); if (nstr == 0) /* Hash table entry is empty. */ return NULL; nstr--; /* Compare msgid with the original string at index nstr. We compare the lengths with >=, not ==, because plural entries are represented by strings with an embedded NUL. */ if (nstr < nstrings ? W (domain->must_swap, domain->orig_tab[nstr].length) >= len && (strcmp (msgid, domain->data + W (domain->must_swap, domain->orig_tab[nstr].offset)) == 0) : domain->orig_sysdep_tab[nstr - nstrings].length > len && (strcmp (msgid, domain->orig_sysdep_tab[nstr - nstrings].pointer) == 0)) { act = nstr; goto found; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } /* NOTREACHED */ } else { /* Try the default method: binary search in the sorted array of messages. */ size_t top, bottom; bottom = 0; top = nstrings; while (bottom < top) { int cmp_val; act = (bottom + top) / 2; cmp_val = strcmp (msgid, (domain->data + W (domain->must_swap, domain->orig_tab[act].offset))); if (cmp_val < 0) top = act; else if (cmp_val > 0) bottom = act + 1; else goto found; } /* No translation was found. */ return NULL; } found: /* The translation was found at index ACT. If we have to convert the string to use a different character set, this is the time. */ if (act < nstrings) { result = (char *) (domain->data + W (domain->must_swap, domain->trans_tab[act].offset)); resultlen = W (domain->must_swap, domain->trans_tab[act].length) + 1; } else { result = (char *) domain->trans_sysdep_tab[act - nstrings].pointer; resultlen = domain->trans_sysdep_tab[act - nstrings].length; } #if defined _LIBC || HAVE_ICONV if (domain->codeset_cntr != (domainbinding != NULL ? domainbinding->codeset_cntr : 0)) { /* The domain's codeset has changed through bind_textdomain_codeset() since the message catalog was initialized or last accessed. We have to reinitialize the converter. */ _nl_free_domain_conv (domain); _nl_init_domain_conv (domain_file, domain, domainbinding); } if ( # ifdef _LIBC domain->conv != (__gconv_t) -1 # else # if HAVE_ICONV domain->conv != (iconv_t) -1 # endif # endif ) { /* We are supposed to do a conversion. First allocate an appropriate table with the same structure as the table of translations in the file, where we can put the pointers to the converted strings in. There is a slight complication with plural entries. They are represented by consecutive NUL terminated strings. We handle this case by converting RESULTLEN bytes, including NULs. */ if (domain->conv_tab == NULL && ((domain->conv_tab = (char **) calloc (nstrings + domain->n_sysdep_strings, sizeof (char *))) == NULL)) /* Mark that we didn't succeed allocating a table. */ domain->conv_tab = (char **) -1; if (__builtin_expect (domain->conv_tab == (char **) -1, 0)) /* Nothing we can do, no more memory. */ goto converted; if (domain->conv_tab[act] == NULL) { /* We haven't used this string so far, so it is not translated yet. Do this now. */ /* We use a bit more efficient memory handling. We allocate always larger blocks which get used over time. This is faster than many small allocations. */ __libc_lock_define_initialized (static, lock) # define INITIAL_BLOCK_SIZE 4080 static unsigned char *freemem; static size_t freemem_size; const unsigned char *inbuf; unsigned char *outbuf; int malloc_count; # ifndef _LIBC transmem_block_t *transmem_list = NULL; # endif __libc_lock_lock (lock); inbuf = (const unsigned char *) result; outbuf = freemem + sizeof (size_t); malloc_count = 0; while (1) { transmem_block_t *newmem; # ifdef _LIBC size_t non_reversible; int res; if (freemem_size < sizeof (size_t)) goto resize_freemem; res = __gconv (domain->conv, &inbuf, inbuf + resultlen, &outbuf, outbuf + freemem_size - sizeof (size_t), &non_reversible); if (res == __GCONV_OK || res == __GCONV_EMPTY_INPUT) break; if (res != __GCONV_FULL_OUTPUT) { __libc_lock_unlock (lock); goto converted; } inbuf = result; # else # if HAVE_ICONV const char *inptr = (const char *) inbuf; size_t inleft = resultlen; char *outptr = (char *) outbuf; size_t outleft; if (freemem_size < sizeof (size_t)) goto resize_freemem; outleft = freemem_size - sizeof (size_t); if (iconv (domain->conv, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft) != (size_t) (-1)) { outbuf = (unsigned char *) outptr; break; } if (errno != E2BIG) { __libc_lock_unlock (lock); goto converted; } # endif # endif resize_freemem: /* We must allocate a new buffer or resize the old one. */ if (malloc_count > 0) { ++malloc_count; freemem_size = malloc_count * INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) realloc (transmem_list, freemem_size); # ifdef _LIBC if (newmem != NULL) transmem_list = transmem_list->next; else { struct transmem_list *old = transmem_list; transmem_list = transmem_list->next; free (old); } # endif } else { malloc_count = 1; freemem_size = INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) malloc (freemem_size); } if (__builtin_expect (newmem == NULL, 0)) { freemem = NULL; freemem_size = 0; __libc_lock_unlock (lock); goto converted; } # ifdef _LIBC /* Add the block to the list of blocks we have to free at some point. */ newmem->next = transmem_list; transmem_list = newmem; freemem = newmem->data; freemem_size -= offsetof (struct transmem_list, data); # else transmem_list = newmem; freemem = newmem; # endif outbuf = freemem + sizeof (size_t); } /* We have now in our buffer a converted string. Put this into the table of conversions. */ *(size_t *) freemem = outbuf - freemem - sizeof (size_t); domain->conv_tab[act] = (char *) freemem; /* Shrink freemem, but keep it aligned. */ freemem_size -= outbuf - freemem; freemem = outbuf; freemem += freemem_size & (alignof (size_t) - 1); freemem_size = freemem_size & ~ (alignof (size_t) - 1); __libc_lock_unlock (lock); } /* Now domain->conv_tab[act] contains the translation of all the plural variants. */ result = domain->conv_tab[act] + sizeof (size_t); resultlen = *(size_t *) domain->conv_tab[act]; } converted: /* The result string is converted. */ #endif /* _LIBC || HAVE_ICONV */ *lengthp = resultlen; return result; } /* Look up a plural variant. */ static char * internal_function plural_lookup (domain, n, translation, translation_len) struct loaded_l10nfile *domain; unsigned long int n; const char *translation; size_t translation_len; { struct loaded_domain *domaindata = (struct loaded_domain *) domain->data; unsigned long int index; const char *p; index = plural_eval (domaindata->plural, n); if (index >= domaindata->nplurals) /* This should never happen. It means the plural expression and the given maximum value do not match. */ index = 0; /* Skip INDEX strings at TRANSLATION. */ p = translation; while (index-- > 0) { #ifdef _LIBC p = __rawmemchr (p, '\0'); #else p = strchr (p, '\0'); #endif /* And skip over the NUL byte. */ p++; if (p >= translation + translation_len) /* This should never happen. It means the plural expression evaluated to a value larger than the number of variants available for MSGID1. */ return (char *) translation; } return (char *) p; } /* Return string representation of locale CATEGORY. */ static const char * internal_function category_to_name (category) int category; { const char *retval; switch (category) { #ifdef LC_COLLATE case LC_COLLATE: retval = "LC_COLLATE"; break; #endif #ifdef LC_CTYPE case LC_CTYPE: retval = "LC_CTYPE"; break; #endif #ifdef LC_MONETARY case LC_MONETARY: retval = "LC_MONETARY"; break; #endif #ifdef LC_NUMERIC case LC_NUMERIC: retval = "LC_NUMERIC"; break; #endif #ifdef LC_TIME case LC_TIME: retval = "LC_TIME"; break; #endif #ifdef LC_MESSAGES case LC_MESSAGES: retval = "LC_MESSAGES"; break; #endif #ifdef LC_RESPONSE case LC_RESPONSE: retval = "LC_RESPONSE"; break; #endif #ifdef LC_ALL case LC_ALL: /* This might not make sense but is perhaps better than any other value. */ retval = "LC_ALL"; break; #endif default: /* If you have a better idea for a default value let me know. */ retval = "LC_XXX"; } return retval; } /* Guess value of current locale from value of the environment variables. */ static const char * internal_function guess_category_value (category, categoryname) int category; const char *categoryname; { const char *language; const char *retval; /* The highest priority value is the `LANGUAGE' environment variable. But we don't use the value if the currently selected locale is the C locale. This is a GNU extension. */ language = getenv ("LANGUAGE"); if (language != NULL && language[0] == '\0') language = NULL; /* We have to proceed with the POSIX methods of looking to `LC_ALL', `LC_xxx', and `LANG'. On some systems this can be done by the `setlocale' function itself. */ #ifdef _LIBC retval = setlocale (category, NULL); #else retval = _nl_locale_name (category, categoryname); #endif /* Ignore LANGUAGE if the locale is set to "C" because 1. "C" locale usually uses the ASCII encoding, and most international messages use non-ASCII characters. These characters get displayed as question marks (if using glibc's iconv()) or as invalid 8-bit characters (because other iconv()s refuse to convert most non-ASCII characters to ASCII). In any case, the output is ugly. 2. The precise output of some programs in the "C" locale is specified by POSIX and should not depend on environment variables like "LANGUAGE". We allow such programs to use gettext(). */ return language != NULL && strcmp (retval, "C") != 0 ? language : retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (dest, src) char *dest; const char *src; { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif #if !_LIBC && !HAVE_MEMPCPY static void * mempcpy (dest, src, n) void *dest; const void *src; size_t n; { return (void *) ((char *) memcpy (dest, src, n) + n); } #endif #ifdef _LIBC /* If we want to free all resources we have to do some work at program's end. */ static void __attribute__ ((unused)) free_mem (void) { void *old; while (_nl_domain_bindings != NULL) { struct binding *oldp = _nl_domain_bindings; _nl_domain_bindings = _nl_domain_bindings->next; if (oldp->dirname != _nl_default_dirname) /* Yes, this is a pointer comparison. */ free (oldp->dirname); free (oldp->codeset); free (oldp); } if (_nl_current_default_domain != _nl_default_default_domain) /* Yes, again a pointer comparison. */ free ((char *) _nl_current_default_domain); /* Remove the search tree with the known translations. */ __tdestroy (root, free); root = NULL; while (transmem_list != NULL) { old = transmem_list; transmem_list = transmem_list->next; free (old); } } text_set_element (__libc_subfreeres, free_mem); #endif lincity-1.13.1/intl/dcngettext.c0000644000175000017500000000361407627052670013473 00000000000000/* Implementation of the dcngettext(3) function. Copyright (C) 1995-1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCNGETTEXT __dcngettext # define DCIGETTEXT __dcigettext #else # define DCNGETTEXT libintl_dcngettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCNGETTEXT (domainname, msgid1, msgid2, n, category) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; int category; { return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ INTDEF(__dcngettext) weak_alias (__dcngettext, dcngettext); #endif lincity-1.13.1/intl/dngettext.c0000644000175000017500000000363707627052670013335 00000000000000/* Implementation of the dngettext(3) function. Copyright (C) 1995-1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DNGETTEXT __dngettext # define DCNGETTEXT INTUSE(__dcngettext) #else # define DNGETTEXT libintl_dngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale and skip message according to the plural form. */ char * DNGETTEXT (domainname, msgid1, msgid2, n) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; { return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dngettext, dngettext); #endif lincity-1.13.1/intl/ngettext.c0000644000175000017500000000375107627052670013166 00000000000000/* Implementation of ngettext(3) function. Copyright (C) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define NGETTEXT __ngettext # define DCNGETTEXT INTUSE(__dcngettext) #else # define NGETTEXT libintl_ngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * NGETTEXT (msgid1, msgid2, n) const char *msgid1; const char *msgid2; unsigned long int n; { return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__ngettext, ngettext); #endif lincity-1.13.1/intl/plural.y0000644000175000017500000001773407627052670012657 00000000000000%{ /* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg %} %pure_parser %expect 7 %union { unsigned long int num; enum operator op; struct expression *exp; } %{ /* Prototypes for local functions. */ static struct expression *new_exp PARAMS ((int nargs, enum operator op, struct expression * const *args)); static inline struct expression *new_exp_0 PARAMS ((enum operator op)); static inline struct expression *new_exp_1 PARAMS ((enum operator op, struct expression *right)); static struct expression *new_exp_2 PARAMS ((enum operator op, struct expression *left, struct expression *right)); static inline struct expression *new_exp_3 PARAMS ((enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch)); static int yylex PARAMS ((YYSTYPE *lval, const char **pexp)); static void yyerror PARAMS ((const char *str)); /* Allocation of expressions. */ static struct expression * new_exp (nargs, op, args) int nargs; enum operator op; struct expression * const *args; { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (op) enum operator op; { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (op, right) enum operator op; struct expression *right; { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (op, left, right) enum operator op; struct expression *left; struct expression *right; { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (op, bexp, tbranch, fbranch) enum operator op; struct expression *bexp; struct expression *tbranch; struct expression *fbranch; { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } %} /* This declares that all operators have the same associativity and the precedence order as in C. See [Harbison, Steele: C, A Reference Manual]. There is no unary minus and no bitwise operators. Operators with the same syntactic behaviour have been merged into a single token, to save space in the array generated by bison. */ %right '?' /* ? */ %left '|' /* || */ %left '&' /* && */ %left EQUOP2 /* == != */ %left CMPOP2 /* < > <= >= */ %left ADDOP2 /* + - */ %left MULOP2 /* * / % */ %right '!' /* ! */ %token EQUOP2 CMPOP2 ADDOP2 MULOP2 %token NUMBER %type exp %% start: exp { if ($1 == NULL) YYABORT; ((struct parse_args *) arg)->res = $1; } ; exp: exp '?' exp ':' exp { $$ = new_exp_3 (qmop, $1, $3, $5); } | exp '|' exp { $$ = new_exp_2 (lor, $1, $3); } | exp '&' exp { $$ = new_exp_2 (land, $1, $3); } | exp EQUOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp CMPOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp ADDOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp MULOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | '!' exp { $$ = new_exp_1 (lnot, $2); } | 'n' { $$ = new_exp_0 (var); } | NUMBER { if (($$ = new_exp_0 (num)) != NULL) $$->val.num = $1; } | '(' exp ')' { $$ = $2; } ; %% void internal_function FREE_EXPRESSION (exp) struct expression *exp; { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (lval, pexp) YYSTYPE *lval; const char **pexp; { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (str) const char *str; { /* Do nothing. We don't print error messages here. */ } lincity-1.13.1/intl/plural-exp.c0000644000175000017500000000771407627052670013420 00000000000000/* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" #if (defined __GNUC__ && !defined __APPLE_CC__) \ || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) /* These structs are the constant expression for the germanic plural form determination. It represents the expression "n != 1". */ static const struct expression plvar = { .nargs = 0, .operation = var, }; static const struct expression plone = { .nargs = 0, .operation = num, .val = { .num = 1 } }; struct expression GERMANIC_PLURAL = { .nargs = 2, .operation = not_equal, .val = { .args = { [0] = (struct expression *) &plvar, [1] = (struct expression *) &plone } } }; # define INIT_GERMANIC_PLURAL() #else /* For compilers without support for ISO C 99 struct/union initializers: Initialization at run-time. */ static struct expression plvar; static struct expression plone; struct expression GERMANIC_PLURAL; static void init_germanic_plural () { if (plone.val.num == 0) { plvar.nargs = 0; plvar.operation = var; plone.nargs = 0; plone.operation = num; plone.val.num = 1; GERMANIC_PLURAL.nargs = 2; GERMANIC_PLURAL.operation = not_equal; GERMANIC_PLURAL.val.args[0] = &plvar; GERMANIC_PLURAL.val.args[1] = &plone; } } # define INIT_GERMANIC_PLURAL() init_germanic_plural () #endif void internal_function EXTRACT_PLURAL_EXPRESSION (nullentry, pluralp, npluralsp) const char *nullentry; struct expression **pluralp; unsigned long int *npluralsp; { if (nullentry != NULL) { const char *plural; const char *nplurals; plural = strstr (nullentry, "plural="); nplurals = strstr (nullentry, "nplurals="); if (plural == NULL || nplurals == NULL) goto no_plural; else { char *endp; unsigned long int n; struct parse_args args; /* First get the number. */ nplurals += 9; while (*nplurals != '\0' && isspace ((unsigned char) *nplurals)) ++nplurals; if (!(*nplurals >= '0' && *nplurals <= '9')) goto no_plural; #if defined HAVE_STRTOUL || defined _LIBC n = strtoul (nplurals, &endp, 10); #else for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++) n = n * 10 + (*endp - '0'); #endif if (nplurals == endp) goto no_plural; *npluralsp = n; /* Due to the restrictions bison imposes onto the interface of the scanner function we have to put the input string and the result passed up from the parser into the same structure which address is passed down to the parser. */ plural += 7; args.cp = plural; if (PLURAL_PARSE (&args) != 0) goto no_plural; *pluralp = args.res; } } else { /* By default we are using the Germanic form: singular form only for `one', the plural form otherwise. Yes, this is also what English is using since English is a Germanic language. */ no_plural: INIT_GERMANIC_PLURAL (); *pluralp = &GERMANIC_PLURAL; *npluralsp = 2; } } lincity-1.13.1/intl/localcharset.c0000644000175000017500000002245007627052670013765 00000000000000/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif #if HAVE_STDDEF_H # include #endif #include #if HAVE_STRING_H # include #else # include #endif #if HAVE_STDLIB_H # include #endif #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #if defined __EMX__ /* Assume EMX program runs on OS/2, even if compiled under DOS. */ # define OS2 #endif #if !defined WIN32 # if HAVE_LANGINFO_CODESET # include # else # if HAVE_SETLOCALE # include # endif # endif #elif defined WIN32 # define WIN32_LEAN_AND_MEAN # include #endif #if defined OS2 # define INCL_DOS # include #endif #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') #endif #ifndef DIRECTORY_SEPARATOR # define DIRECTORY_SEPARATOR '/' #endif #ifndef ISSLASH # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) #endif #ifdef HAVE_GETC_UNLOCKED # undef getc # define getc getc_unlocked #endif #ifdef __cplusplus /* When compiling with "gcc -x c++", produce a function with C linkage. */ extern "C" const char * locale_charset (void); #endif /* The following static variable is declared 'volatile' to avoid a possible multithread problem in the function get_charset_aliases. If we are running in a threaded environment, and if two threads initialize 'charset_aliases' simultaneously, both will produce the same value, and everything will be ok if the two assignments to 'charset_aliases' are atomic. But I don't know what will happen if the two assignments mix. */ #if __STDC__ != 1 # define volatile /* empty */ #endif /* Pointer to the contents of the charset.alias file, if it has already been read, else NULL. Its format is: ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */ static const char * volatile charset_aliases; /* Return a pointer to the contents of the charset.alias file. */ static const char * get_charset_aliases () { const char *cp; cp = charset_aliases; if (cp == NULL) { #if !defined WIN32 FILE *fp; const char *dir = LIBDIR; const char *base = "charset.alias"; char *file_name; /* Concatenate dir and base into freshly allocated file_name. */ { size_t dir_len = strlen (dir); size_t base_len = strlen (base); int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); file_name = (char *) malloc (dir_len + add_slash + base_len + 1); if (file_name != NULL) { memcpy (file_name, dir, dir_len); if (add_slash) file_name[dir_len] = DIRECTORY_SEPARATOR; memcpy (file_name + dir_len + add_slash, base, base_len + 1); } } if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL) /* Out of memory or file not found, treat it as empty. */ cp = ""; else { /* Parse the file's contents. */ int c; char buf1[50+1]; char buf2[50+1]; char *res_ptr = NULL; size_t res_size = 0; size_t l1, l2; for (;;) { c = getc (fp); if (c == EOF) break; if (c == '\n' || c == ' ' || c == '\t') continue; if (c == '#') { /* Skip comment, to end of line. */ do c = getc (fp); while (!(c == EOF || c == '\n')); if (c == EOF) break; continue; } ungetc (c, fp); if (fscanf (fp, "%50s %50s", buf1, buf2) < 2) break; l1 = strlen (buf1); l2 = strlen (buf2); if (res_size == 0) { res_size = l1 + 1 + l2 + 1; res_ptr = (char *) malloc (res_size + 1); } else { res_size += l1 + 1 + l2 + 1; res_ptr = (char *) realloc (res_ptr, res_size + 1); } if (res_ptr == NULL) { /* Out of memory. */ res_size = 0; break; } strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); strcpy (res_ptr + res_size - (l2 + 1), buf2); } fclose (fp); if (res_size == 0) cp = ""; else { *(res_ptr + res_size) = '\0'; cp = res_ptr; } } if (file_name != NULL) free (file_name); #else /* To avoid the troubles of installing a separate file in the same directory as the DLL and of retrieving the DLL's directory at runtime, simply inline the aliases here. */ # if defined WIN32 cp = "CP936" "\0" "GBK" "\0" "CP1361" "\0" "JOHAB" "\0" "CP20127" "\0" "ASCII" "\0" "CP20866" "\0" "KOI8-R" "\0" "CP21866" "\0" "KOI8-RU" "\0" "CP28591" "\0" "ISO-8859-1" "\0" "CP28592" "\0" "ISO-8859-2" "\0" "CP28593" "\0" "ISO-8859-3" "\0" "CP28594" "\0" "ISO-8859-4" "\0" "CP28595" "\0" "ISO-8859-5" "\0" "CP28596" "\0" "ISO-8859-6" "\0" "CP28597" "\0" "ISO-8859-7" "\0" "CP28598" "\0" "ISO-8859-8" "\0" "CP28599" "\0" "ISO-8859-9" "\0" "CP28605" "\0" "ISO-8859-15" "\0"; # endif #endif charset_aliases = cp; } return cp; } /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ #ifdef STATIC STATIC #endif const char * locale_charset () { const char *codeset; const char *aliases; #if !(defined WIN32 || defined OS2) # if HAVE_LANGINFO_CODESET /* Most systems support nl_langinfo (CODESET) nowadays. */ codeset = nl_langinfo (CODESET); # else /* On old systems which lack it, use setlocale or getenv. */ const char *locale = NULL; /* But most old systems don't have a complete set of locales. Some (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't use setlocale here; it would return "C" when it doesn't support the locale name the user has set. */ # if HAVE_SETLOCALE && 0 locale = setlocale (LC_CTYPE, NULL); # endif if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } } /* On some old systems, one used to set locale = "iso8859_1". On others, you set it to "language_COUNTRY.charset". In any case, we resolve it through the charset.alias file. */ codeset = locale; # endif #elif defined WIN32 static char buf[2 + 10 + 1]; /* Woe32 has a function returning the locale's codepage as a number. */ sprintf (buf, "CP%u", GetACP ()); codeset = buf; #elif defined OS2 const char *locale; static char buf[2 + 10 + 1]; ULONG cp[3]; ULONG cplen; /* Allow user to override the codeset, as set in the operating system, with standard language environment variables. */ locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } if (locale != NULL && locale[0] != '\0') { /* If the locale name contains an encoding after the dot, return it. */ const char *dot = strchr (locale, '.'); if (dot != NULL) { const char *modifier; dot++; /* Look for the possible @... trailer and remove it, if any. */ modifier = strchr (dot, '@'); if (modifier == NULL) return dot; if (modifier - dot < sizeof (buf)) { memcpy (buf, dot, modifier - dot); buf [modifier - dot] = '\0'; return buf; } } /* Resolve through the charset.alias file. */ codeset = locale; } else { /* OS/2 has a function returning the locale's codepage as a number. */ if (DosQueryCp (sizeof (cp), cp, &cplen)) codeset = ""; else { sprintf (buf, "CP%u", cp[0]); codeset = buf; } } #endif if (codeset == NULL) /* The canonical name cannot be determined. */ codeset = ""; /* Resolve alias. */ for (aliases = get_charset_aliases (); *aliases != '\0'; aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1) if (strcmp (codeset, aliases) == 0 || (aliases[0] == '*' && aliases[1] == '\0')) { codeset = aliases + strlen (aliases) + 1; break; } /* Don't return an empty string. GNU libc and GNU libiconv interpret the empty string as denoting "the locale's character encoding", thus GNU libiconv would call this function a second time. */ if (codeset[0] == '\0') codeset = "ASCII"; return codeset; } lincity-1.13.1/intl/localename.c0000644000175000017500000005412607627052670013426 00000000000000/* Determine the current selected locale. Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* Written by Ulrich Drepper , 1995. */ /* Win32 code written by Tor Lillqvist . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #ifdef WIN32 # define WIN32_LEAN_AND_MEAN # include /* Mingw headers don't have latest language and sublanguage codes. */ # ifndef LANG_AFRIKAANS # define LANG_AFRIKAANS 0x36 # endif # ifndef LANG_ALBANIAN # define LANG_ALBANIAN 0x1c # endif # ifndef LANG_ARABIC # define LANG_ARABIC 0x01 # endif # ifndef LANG_ARMENIAN # define LANG_ARMENIAN 0x2b # endif # ifndef LANG_ASSAMESE # define LANG_ASSAMESE 0x4d # endif # ifndef LANG_AZERI # define LANG_AZERI 0x2c # endif # ifndef LANG_BASQUE # define LANG_BASQUE 0x2d # endif # ifndef LANG_BELARUSIAN # define LANG_BELARUSIAN 0x23 # endif # ifndef LANG_BENGALI # define LANG_BENGALI 0x45 # endif # ifndef LANG_CATALAN # define LANG_CATALAN 0x03 # endif # ifndef LANG_DIVEHI # define LANG_DIVEHI 0x65 # endif # ifndef LANG_ESTONIAN # define LANG_ESTONIAN 0x25 # endif # ifndef LANG_FAEROESE # define LANG_FAEROESE 0x38 # endif # ifndef LANG_FARSI # define LANG_FARSI 0x29 # endif # ifndef LANG_GALICIAN # define LANG_GALICIAN 0x56 # endif # ifndef LANG_GEORGIAN # define LANG_GEORGIAN 0x37 # endif # ifndef LANG_GUJARATI # define LANG_GUJARATI 0x47 # endif # ifndef LANG_HEBREW # define LANG_HEBREW 0x0d # endif # ifndef LANG_HINDI # define LANG_HINDI 0x39 # endif # ifndef LANG_INDONESIAN # define LANG_INDONESIAN 0x21 # endif # ifndef LANG_KANNADA # define LANG_KANNADA 0x4b # endif # ifndef LANG_KASHMIRI # define LANG_KASHMIRI 0x60 # endif # ifndef LANG_KAZAK # define LANG_KAZAK 0x3f # endif # ifndef LANG_KONKANI # define LANG_KONKANI 0x57 # endif # ifndef LANG_KYRGYZ # define LANG_KYRGYZ 0x40 # endif # ifndef LANG_LATVIAN # define LANG_LATVIAN 0x26 # endif # ifndef LANG_LITHUANIAN # define LANG_LITHUANIAN 0x27 # endif # ifndef LANG_MACEDONIAN # define LANG_MACEDONIAN 0x2f # endif # ifndef LANG_MALAY # define LANG_MALAY 0x3e # endif # ifndef LANG_MALAYALAM # define LANG_MALAYALAM 0x4c # endif # ifndef LANG_MANIPURI # define LANG_MANIPURI 0x58 # endif # ifndef LANG_MARATHI # define LANG_MARATHI 0x4e # endif # ifndef LANG_MONGOLIAN # define LANG_MONGOLIAN 0x50 # endif # ifndef LANG_NEPALI # define LANG_NEPALI 0x61 # endif # ifndef LANG_ORIYA # define LANG_ORIYA 0x48 # endif # ifndef LANG_PUNJABI # define LANG_PUNJABI 0x46 # endif # ifndef LANG_SANSKRIT # define LANG_SANSKRIT 0x4f # endif # ifndef LANG_SERBIAN # define LANG_SERBIAN 0x1a # endif # ifndef LANG_SINDHI # define LANG_SINDHI 0x59 # endif # ifndef LANG_SLOVAK # define LANG_SLOVAK 0x1b # endif # ifndef LANG_SORBIAN # define LANG_SORBIAN 0x2e # endif # ifndef LANG_SWAHILI # define LANG_SWAHILI 0x41 # endif # ifndef LANG_SYRIAC # define LANG_SYRIAC 0x5a # endif # ifndef LANG_TAMIL # define LANG_TAMIL 0x49 # endif # ifndef LANG_TATAR # define LANG_TATAR 0x44 # endif # ifndef LANG_TELUGU # define LANG_TELUGU 0x4a # endif # ifndef LANG_THAI # define LANG_THAI 0x1e # endif # ifndef LANG_UKRAINIAN # define LANG_UKRAINIAN 0x22 # endif # ifndef LANG_URDU # define LANG_URDU 0x20 # endif # ifndef LANG_UZBEK # define LANG_UZBEK 0x43 # endif # ifndef LANG_VIETNAMESE # define LANG_VIETNAMESE 0x2a # endif # ifndef SUBLANG_ARABIC_SAUDI_ARABIA # define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 # endif # ifndef SUBLANG_ARABIC_IRAQ # define SUBLANG_ARABIC_IRAQ 0x02 # endif # ifndef SUBLANG_ARABIC_EGYPT # define SUBLANG_ARABIC_EGYPT 0x03 # endif # ifndef SUBLANG_ARABIC_LIBYA # define SUBLANG_ARABIC_LIBYA 0x04 # endif # ifndef SUBLANG_ARABIC_ALGERIA # define SUBLANG_ARABIC_ALGERIA 0x05 # endif # ifndef SUBLANG_ARABIC_MOROCCO # define SUBLANG_ARABIC_MOROCCO 0x06 # endif # ifndef SUBLANG_ARABIC_TUNISIA # define SUBLANG_ARABIC_TUNISIA 0x07 # endif # ifndef SUBLANG_ARABIC_OMAN # define SUBLANG_ARABIC_OMAN 0x08 # endif # ifndef SUBLANG_ARABIC_YEMEN # define SUBLANG_ARABIC_YEMEN 0x09 # endif # ifndef SUBLANG_ARABIC_SYRIA # define SUBLANG_ARABIC_SYRIA 0x0a # endif # ifndef SUBLANG_ARABIC_JORDAN # define SUBLANG_ARABIC_JORDAN 0x0b # endif # ifndef SUBLANG_ARABIC_LEBANON # define SUBLANG_ARABIC_LEBANON 0x0c # endif # ifndef SUBLANG_ARABIC_KUWAIT # define SUBLANG_ARABIC_KUWAIT 0x0d # endif # ifndef SUBLANG_ARABIC_UAE # define SUBLANG_ARABIC_UAE 0x0e # endif # ifndef SUBLANG_ARABIC_BAHRAIN # define SUBLANG_ARABIC_BAHRAIN 0x0f # endif # ifndef SUBLANG_ARABIC_QATAR # define SUBLANG_ARABIC_QATAR 0x10 # endif # ifndef SUBLANG_AZERI_LATIN # define SUBLANG_AZERI_LATIN 0x01 # endif # ifndef SUBLANG_AZERI_CYRILLIC # define SUBLANG_AZERI_CYRILLIC 0x02 # endif # ifndef SUBLANG_CHINESE_MACAU # define SUBLANG_CHINESE_MACAU 0x05 # endif # ifndef SUBLANG_ENGLISH_SOUTH_AFRICA # define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 # endif # ifndef SUBLANG_ENGLISH_JAMAICA # define SUBLANG_ENGLISH_JAMAICA 0x08 # endif # ifndef SUBLANG_ENGLISH_CARIBBEAN # define SUBLANG_ENGLISH_CARIBBEAN 0x09 # endif # ifndef SUBLANG_ENGLISH_BELIZE # define SUBLANG_ENGLISH_BELIZE 0x0a # endif # ifndef SUBLANG_ENGLISH_TRINIDAD # define SUBLANG_ENGLISH_TRINIDAD 0x0b # endif # ifndef SUBLANG_ENGLISH_ZIMBABWE # define SUBLANG_ENGLISH_ZIMBABWE 0x0c # endif # ifndef SUBLANG_ENGLISH_PHILIPPINES # define SUBLANG_ENGLISH_PHILIPPINES 0x0d # endif # ifndef SUBLANG_FRENCH_LUXEMBOURG # define SUBLANG_FRENCH_LUXEMBOURG 0x05 # endif # ifndef SUBLANG_FRENCH_MONACO # define SUBLANG_FRENCH_MONACO 0x06 # endif # ifndef SUBLANG_GERMAN_LUXEMBOURG # define SUBLANG_GERMAN_LUXEMBOURG 0x04 # endif # ifndef SUBLANG_GERMAN_LIECHTENSTEIN # define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 # endif # ifndef SUBLANG_KASHMIRI_INDIA # define SUBLANG_KASHMIRI_INDIA 0x02 # endif # ifndef SUBLANG_MALAY_MALAYSIA # define SUBLANG_MALAY_MALAYSIA 0x01 # endif # ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM # define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 # endif # ifndef SUBLANG_NEPALI_INDIA # define SUBLANG_NEPALI_INDIA 0x02 # endif # ifndef SUBLANG_SERBIAN_LATIN # define SUBLANG_SERBIAN_LATIN 0x02 # endif # ifndef SUBLANG_SERBIAN_CYRILLIC # define SUBLANG_SERBIAN_CYRILLIC 0x03 # endif # ifndef SUBLANG_SPANISH_GUATEMALA # define SUBLANG_SPANISH_GUATEMALA 0x04 # endif # ifndef SUBLANG_SPANISH_COSTA_RICA # define SUBLANG_SPANISH_COSTA_RICA 0x05 # endif # ifndef SUBLANG_SPANISH_PANAMA # define SUBLANG_SPANISH_PANAMA 0x06 # endif # ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC # define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 # endif # ifndef SUBLANG_SPANISH_VENEZUELA # define SUBLANG_SPANISH_VENEZUELA 0x08 # endif # ifndef SUBLANG_SPANISH_COLOMBIA # define SUBLANG_SPANISH_COLOMBIA 0x09 # endif # ifndef SUBLANG_SPANISH_PERU # define SUBLANG_SPANISH_PERU 0x0a # endif # ifndef SUBLANG_SPANISH_ARGENTINA # define SUBLANG_SPANISH_ARGENTINA 0x0b # endif # ifndef SUBLANG_SPANISH_ECUADOR # define SUBLANG_SPANISH_ECUADOR 0x0c # endif # ifndef SUBLANG_SPANISH_CHILE # define SUBLANG_SPANISH_CHILE 0x0d # endif # ifndef SUBLANG_SPANISH_URUGUAY # define SUBLANG_SPANISH_URUGUAY 0x0e # endif # ifndef SUBLANG_SPANISH_PARAGUAY # define SUBLANG_SPANISH_PARAGUAY 0x0f # endif # ifndef SUBLANG_SPANISH_BOLIVIA # define SUBLANG_SPANISH_BOLIVIA 0x10 # endif # ifndef SUBLANG_SPANISH_EL_SALVADOR # define SUBLANG_SPANISH_EL_SALVADOR 0x11 # endif # ifndef SUBLANG_SPANISH_HONDURAS # define SUBLANG_SPANISH_HONDURAS 0x12 # endif # ifndef SUBLANG_SPANISH_NICARAGUA # define SUBLANG_SPANISH_NICARAGUA 0x13 # endif # ifndef SUBLANG_SPANISH_PUERTO_RICO # define SUBLANG_SPANISH_PUERTO_RICO 0x14 # endif # ifndef SUBLANG_SWEDISH_FINLAND # define SUBLANG_SWEDISH_FINLAND 0x02 # endif # ifndef SUBLANG_URDU_PAKISTAN # define SUBLANG_URDU_PAKISTAN 0x01 # endif # ifndef SUBLANG_URDU_INDIA # define SUBLANG_URDU_INDIA 0x02 # endif # ifndef SUBLANG_UZBEK_LATIN # define SUBLANG_UZBEK_LATIN 0x01 # endif # ifndef SUBLANG_UZBEK_CYRILLIC # define SUBLANG_UZBEK_CYRILLIC 0x02 # endif #endif /* XPG3 defines the result of 'setlocale (category, NULL)' as: "Directs 'setlocale()' to query 'category' and return the current setting of 'local'." However it does not specify the exact format. Neither do SUSV2 and ISO C 99. So we can use this feature only on selected systems (e.g. those using GNU C Library). */ #if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2) # define HAVE_LOCALE_NULL #endif /* Determine the current locale's name, and canonicalize it into XPG syntax language[_territory[.codeset]][@modifier] The codeset part in the result is not reliable; the locale_charset() should be used for codeset information instead. The result must not be freed; it is statically allocated. */ const char * _nl_locale_name (category, categoryname) int category; const char *categoryname; { const char *retval; #ifndef WIN32 /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'. On some systems this can be done by the 'setlocale' function itself. */ # if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL retval = setlocale (category, NULL); # else /* Setting of LC_ALL overwrites all other. */ retval = getenv ("LC_ALL"); if (retval == NULL || retval[0] == '\0') { /* Next comes the name of the desired category. */ retval = getenv (categoryname); if (retval == NULL || retval[0] == '\0') { /* Last possibility is the LANG environment variable. */ retval = getenv ("LANG"); if (retval == NULL || retval[0] == '\0') /* We use C as the default domain. POSIX says this is implementation defined. */ retval = "C"; } } # endif return retval; #else /* WIN32 */ /* Return an XPG style locale name language[_territory][@modifier]. Don't even bother determining the codeset; it's not useful in this context, because message catalogs are not specific to a single codeset. */ LCID lcid; LANGID langid; int primary, sub; /* Let the user override the system settings through environment variables, as on POSIX systems. */ retval = getenv ("LC_ALL"); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv (categoryname); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv ("LANG"); if (retval != NULL && retval[0] != '\0') return retval; /* Use native Win32 API locale ID. */ lcid = GetThreadLocale (); /* Strip off the sorting rules, keep only the language part. */ langid = LANGIDFROMLCID (lcid); /* Split into language and territory part. */ primary = PRIMARYLANGID (langid); sub = SUBLANGID (langid); /* Dispatch on language. See also http://www.unicode.org/unicode/onlinedat/languages.html . For details about languages, see http://www.ethnologue.com/ . */ switch (primary) { case LANG_AFRIKAANS: return "af_ZA"; case LANG_ALBANIAN: return "sq_AL"; case 0x5e: /* AMHARIC */ return "am_ET"; case LANG_ARABIC: switch (sub) { case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA"; case SUBLANG_ARABIC_IRAQ: return "ar_IQ"; case SUBLANG_ARABIC_EGYPT: return "ar_EG"; case SUBLANG_ARABIC_LIBYA: return "ar_LY"; case SUBLANG_ARABIC_ALGERIA: return "ar_DZ"; case SUBLANG_ARABIC_MOROCCO: return "ar_MA"; case SUBLANG_ARABIC_TUNISIA: return "ar_TN"; case SUBLANG_ARABIC_OMAN: return "ar_OM"; case SUBLANG_ARABIC_YEMEN: return "ar_YE"; case SUBLANG_ARABIC_SYRIA: return "ar_SY"; case SUBLANG_ARABIC_JORDAN: return "ar_JO"; case SUBLANG_ARABIC_LEBANON: return "ar_LB"; case SUBLANG_ARABIC_KUWAIT: return "ar_KW"; case SUBLANG_ARABIC_UAE: return "ar_AE"; case SUBLANG_ARABIC_BAHRAIN: return "ar_BH"; case SUBLANG_ARABIC_QATAR: return "ar_QA"; } return "ar"; case LANG_ARMENIAN: return "hy_AM"; case LANG_ASSAMESE: return "as_IN"; case LANG_AZERI: switch (sub) { /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */ case SUBLANG_AZERI_LATIN: return "az_AZ@latin"; case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic"; } return "az"; case LANG_BASQUE: return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */ case LANG_BELARUSIAN: return "be_BY"; case LANG_BENGALI: return "bn_IN"; case LANG_BULGARIAN: return "bg_BG"; case 0x55: /* BURMESE */ return "my_MM"; case 0x53: /* CAMBODIAN */ return "km_KH"; case LANG_CATALAN: return "ca_ES"; case 0x5c: /* CHEROKEE */ return "chr_US"; case LANG_CHINESE: switch (sub) { case SUBLANG_CHINESE_TRADITIONAL: return "zh_TW"; case SUBLANG_CHINESE_SIMPLIFIED: return "zh_CN"; case SUBLANG_CHINESE_HONGKONG: return "zh_HK"; case SUBLANG_CHINESE_SINGAPORE: return "zh_SG"; case SUBLANG_CHINESE_MACAU: return "zh_MO"; } return "zh"; case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN * What used to be called Serbo-Croatian * should really now be two separate * languages because of political reasons. * (Says tml, who knows nothing about Serbian * or Croatian.) * (I can feel those flames coming already.) */ switch (sub) { case SUBLANG_DEFAULT: return "hr_HR"; case SUBLANG_SERBIAN_LATIN: return "sr_YU"; case SUBLANG_SERBIAN_CYRILLIC: return "sr_YU@cyrillic"; } return "hr"; case LANG_CZECH: return "cs_CZ"; case LANG_DANISH: return "da_DK"; case LANG_DIVEHI: return "div_MV"; case LANG_DUTCH: switch (sub) { case SUBLANG_DUTCH: return "nl_NL"; case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE"; } return "nl"; case 0x66: /* EDO */ return "bin_NG"; case LANG_ENGLISH: switch (sub) { /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought * English was the language spoken in England. * Oh well. */ case SUBLANG_ENGLISH_US: return "en_US"; case SUBLANG_ENGLISH_UK: return "en_GB"; case SUBLANG_ENGLISH_AUS: return "en_AU"; case SUBLANG_ENGLISH_CAN: return "en_CA"; case SUBLANG_ENGLISH_NZ: return "en_NZ"; case SUBLANG_ENGLISH_EIRE: return "en_IE"; case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA"; case SUBLANG_ENGLISH_JAMAICA: return "en_JM"; case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */ case SUBLANG_ENGLISH_BELIZE: return "en_BZ"; case SUBLANG_ENGLISH_TRINIDAD: return "en_TT"; case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW"; case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH"; } return "en"; case LANG_ESTONIAN: return "et_EE"; case LANG_FAEROESE: return "fo_FO"; case LANG_FARSI: return "fa_IR"; case LANG_FINNISH: return "fi_FI"; case LANG_FRENCH: switch (sub) { case SUBLANG_FRENCH: return "fr_FR"; case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE"; case SUBLANG_FRENCH_CANADIAN: return "fr_CA"; case SUBLANG_FRENCH_SWISS: return "fr_CH"; case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU"; case SUBLANG_FRENCH_MONACO: return "fr_MC"; } return "fr"; case 0x62: /* FRISIAN */ return "fy_NL"; case 0x67: /* FULFULDE */ return "ful_NG"; case 0x3c: /* GAELIC */ switch (sub) { case 0x01: /* SCOTTISH */ return "gd_GB"; case 0x02: /* IRISH */ return "ga_IE"; } return "C"; case LANG_GALICIAN: return "gl_ES"; case LANG_GEORGIAN: return "ka_GE"; case LANG_GERMAN: switch (sub) { case SUBLANG_GERMAN: return "de_DE"; case SUBLANG_GERMAN_SWISS: return "de_CH"; case SUBLANG_GERMAN_AUSTRIAN: return "de_AT"; case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU"; case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI"; } return "de"; case LANG_GREEK: return "el_GR"; case 0x74: /* GUARANI */ return "gn_PY"; case LANG_GUJARATI: return "gu_IN"; case 0x68: /* HAUSA */ return "ha_NG"; case 0x75: /* HAWAIIAN */ /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers) or Hawaii Creole English ("cpe_US", 600000 speakers)? */ return "cpe_US"; case LANG_HEBREW: return "he_IL"; case LANG_HINDI: return "hi_IN"; case LANG_HUNGARIAN: return "hu_HU"; case 0x69: /* IBIBIO */ return "nic_NG"; case LANG_ICELANDIC: return "is_IS"; case 0x70: /* IGBO */ return "ibo_NG"; case LANG_INDONESIAN: return "id_ID"; case 0x5d: /* INUKTITUT */ return "iu_CA"; case LANG_ITALIAN: switch (sub) { case SUBLANG_ITALIAN: return "it_IT"; case SUBLANG_ITALIAN_SWISS: return "it_CH"; } return "it"; case LANG_JAPANESE: return "ja_JP"; case LANG_KANNADA: return "kn_IN"; case 0x71: /* KANURI */ return "kau_NG"; case LANG_KASHMIRI: switch (sub) { case SUBLANG_DEFAULT: return "ks_PK"; case SUBLANG_KASHMIRI_INDIA: return "ks_IN"; } return "ks"; case LANG_KAZAK: return "kk_KZ"; case LANG_KONKANI: /* FIXME: Adjust this when such locales appear on Unix. */ return "kok_IN"; case LANG_KOREAN: return "ko_KR"; case LANG_KYRGYZ: return "ky_KG"; case 0x54: /* LAO */ return "lo_LA"; case 0x76: /* LATIN */ return "la_VA"; case LANG_LATVIAN: return "lv_LV"; case LANG_LITHUANIAN: return "lt_LT"; case LANG_MACEDONIAN: return "mk_MK"; case LANG_MALAY: switch (sub) { case SUBLANG_MALAY_MALAYSIA: return "ms_MY"; case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN"; } return "ms"; case LANG_MALAYALAM: return "ml_IN"; case 0x3a: /* MALTESE */ return "mt_MT"; case LANG_MANIPURI: /* FIXME: Adjust this when such locales appear on Unix. */ return "mni_IN"; case LANG_MARATHI: return "mr_IN"; case LANG_MONGOLIAN: return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */ case LANG_NEPALI: switch (sub) { case SUBLANG_DEFAULT: return "ne_NP"; case SUBLANG_NEPALI_INDIA: return "ne_IN"; } return "ne"; case LANG_NORWEGIAN: switch (sub) { case SUBLANG_NORWEGIAN_BOKMAL: return "no_NO"; case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO"; } return "no"; case LANG_ORIYA: return "or_IN"; case 0x72: /* OROMO */ return "om_ET"; case 0x79: /* PAPIAMENTU */ return "pap_AN"; case 0x63: /* PASHTO */ return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */ case LANG_POLISH: return "pl_PL"; case LANG_PORTUGUESE: switch (sub) { case SUBLANG_PORTUGUESE: return "pt_PT"; /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT. Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */ case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR"; } return "pt"; case LANG_PUNJABI: return "pa_IN"; case 0x17: /* RHAETO-ROMANCE */ return "rm_CH"; case LANG_ROMANIAN: return "ro_RO"; case LANG_RUSSIAN: return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA". */ case 0x3b: /* SAMI */ return "se_NO"; case LANG_SANSKRIT: return "sa_IN"; case LANG_SINDHI: return "sd"; case 0x5b: /* SINHALESE */ return "si_LK"; case LANG_SLOVAK: return "sk_SK"; case LANG_SLOVENIAN: return "sl_SI"; case 0x77: /* SOMALI */ return "so_SO"; case LANG_SORBIAN: /* FIXME: Adjust this when such locales appear on Unix. */ return "wen_DE"; case LANG_SPANISH: switch (sub) { case SUBLANG_SPANISH: return "es_ES"; case SUBLANG_SPANISH_MEXICAN: return "es_MX"; case SUBLANG_SPANISH_MODERN: return "es_ES@modern"; /* not seen on Unix */ case SUBLANG_SPANISH_GUATEMALA: return "es_GT"; case SUBLANG_SPANISH_COSTA_RICA: return "es_CR"; case SUBLANG_SPANISH_PANAMA: return "es_PA"; case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO"; case SUBLANG_SPANISH_VENEZUELA: return "es_VE"; case SUBLANG_SPANISH_COLOMBIA: return "es_CO"; case SUBLANG_SPANISH_PERU: return "es_PE"; case SUBLANG_SPANISH_ARGENTINA: return "es_AR"; case SUBLANG_SPANISH_ECUADOR: return "es_EC"; case SUBLANG_SPANISH_CHILE: return "es_CL"; case SUBLANG_SPANISH_URUGUAY: return "es_UY"; case SUBLANG_SPANISH_PARAGUAY: return "es_PY"; case SUBLANG_SPANISH_BOLIVIA: return "es_BO"; case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV"; case SUBLANG_SPANISH_HONDURAS: return "es_HN"; case SUBLANG_SPANISH_NICARAGUA: return "es_NI"; case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR"; } return "es"; case 0x30: /* SUTU */ return "bnt_TZ"; case LANG_SWAHILI: return "sw_KE"; case LANG_SWEDISH: switch (sub) { case SUBLANG_DEFAULT: return "sv_SE"; case SUBLANG_SWEDISH_FINLAND: return "sv_FI"; } return "sv"; case LANG_SYRIAC: return "syr_TR"; /* An extinct language. */ case 0x64: /* TAGALOG */ return "tl_PH"; case 0x28: /* TAJIK */ return "tg_TJ"; case 0x5f: /* TAMAZIGHT */ return "ber_MA"; case LANG_TAMIL: return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */ case LANG_TATAR: return "tt_RU"; case LANG_TELUGU: return "te_IN"; case LANG_THAI: return "th_TH"; case 0x51: /* TIBETAN */ return "bo_CN"; case 0x73: /* TIGRINYA */ return "ti_ET"; case 0x31: /* TSONGA */ return "ts_ZA"; case LANG_TURKISH: return "tr_TR"; case 0x42: /* TURKMEN */ return "tk_TM"; case LANG_UKRAINIAN: return "uk_UA"; case LANG_URDU: switch (sub) { case SUBLANG_URDU_PAKISTAN: return "ur_PK"; case SUBLANG_URDU_INDIA: return "ur_IN"; } return "ur"; case LANG_UZBEK: switch (sub) { /* FIXME: Adjust this when Uzbek locales appear on Unix. */ case SUBLANG_UZBEK_LATIN: return "uz_UZ@latin"; case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic"; } return "uz"; case 0x33: /* VENDA */ return "ven_ZA"; case LANG_VIETNAMESE: return "vi_VN"; case 0x52: /* WELSH */ return "cy_GB"; case 0x34: /* XHOSA */ return "xh_ZA"; case 0x78: /* YI */ return "sit_CN"; case 0x3d: /* YIDDISH */ return "yi_IL"; case 0x6a: /* YORUBA */ return "yo_NG"; case 0x35: /* ZULU */ return "zu_ZA"; default: return "C"; } #endif } lincity-1.13.1/intl/osdep.c0000644000175000017500000000164307627052670012434 00000000000000/* OS dependent parts of libintl. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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 defined __EMX__ # include "os2compat.c" #else /* Avoid AIX compiler warning. */ typedef int dummy; #endif lincity-1.13.1/intl/os2compat.c0000644000175000017500000000550307627052670013230 00000000000000/* OS/2 compatibility functions. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #define OS2_AWARE #ifdef HAVE_CONFIG_H #include #endif #include #include #include /* A version of getenv() that works from DLLs */ extern unsigned long DosScanEnv (const unsigned char *pszName, unsigned char **ppszValue); char * _nl_getenv (const char *name) { unsigned char *value; if (DosScanEnv (name, &value)) return NULL; else return value; } /* A fixed size buffer. */ char libintl_nl_default_dirname[MAXPATHLEN+1]; char *_nlos2_libdir = NULL; char *_nlos2_localealiaspath = NULL; char *_nlos2_localedir = NULL; static __attribute__((constructor)) void nlos2_initialize () { char *root = getenv ("UNIXROOT"); char *gnulocaledir = getenv ("GNULOCALEDIR"); _nlos2_libdir = gnulocaledir; if (!_nlos2_libdir) { if (root) { size_t sl = strlen (root); _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); memcpy (_nlos2_libdir, root, sl); memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); } else _nlos2_libdir = LIBDIR; } _nlos2_localealiaspath = gnulocaledir; if (!_nlos2_localealiaspath) { if (root) { size_t sl = strlen (root); _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); memcpy (_nlos2_localealiaspath, root, sl); memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); } else _nlos2_localealiaspath = LOCALE_ALIAS_PATH; } _nlos2_localedir = gnulocaledir; if (!_nlos2_localedir) { if (root) { size_t sl = strlen (root); _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); memcpy (_nlos2_localedir, root, sl); memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1); } else _nlos2_localedir = LOCALEDIR; } if (strlen (_nlos2_localedir) <= MAXPATHLEN) strcpy (libintl_nl_default_dirname, _nlos2_localedir); } lincity-1.13.1/intl/intl-compat.c0000644000175000017500000000576707627052670013564 00000000000000/* intl-compat.c - Stub functions to call gettext functions from GNU gettext Library. Copyright (C) 1995, 2000-2002 Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifdef HAVE_CONFIG_H # include #endif #define _INTL_REDIRECT_MACROS #include "libgnuintl.h" #include "gettextP.h" /* @@ end of prolog @@ */ /* This file redirects the gettext functions (without prefix) to those defined in the included GNU libintl library (with "libintl_" prefix). It is compiled into libintl in order to make the AM_GNU_GETTEXT test of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which has the redirections primarily in the include file. */ #undef gettext #undef dgettext #undef dcgettext #undef ngettext #undef dngettext #undef dcngettext #undef textdomain #undef bindtextdomain #undef bind_textdomain_codeset char * gettext (msgid) const char *msgid; { return libintl_gettext (msgid); } char * dgettext (domainname, msgid) const char *domainname; const char *msgid; { return libintl_dgettext (domainname, msgid); } char * dcgettext (domainname, msgid, category) const char *domainname; const char *msgid; int category; { return libintl_dcgettext (domainname, msgid, category); } char * ngettext (msgid1, msgid2, n) const char *msgid1; const char *msgid2; unsigned long int n; { return libintl_ngettext (msgid1, msgid2, n); } char * dngettext (domainname, msgid1, msgid2, n) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; { return libintl_dngettext (domainname, msgid1, msgid2, n); } char * dcngettext (domainname, msgid1, msgid2, n, category) const char *domainname; const char *msgid1; const char *msgid2; unsigned long int n; int category; { return libintl_dcngettext (domainname, msgid1, msgid2, n, category); } char * textdomain (domainname) const char *domainname; { return libintl_textdomain (domainname); } char * bindtextdomain (domainname, dirname) const char *domainname; const char *dirname; { return libintl_bindtextdomain (domainname, dirname); } char * bind_textdomain_codeset (domainname, codeset) const char *domainname; const char *codeset; { return libintl_bind_textdomain_codeset (domainname, codeset); } lincity-1.13.1/intl/plural.c0000644000175000017500000007747007627052670012634 00000000000000 /* A Bison parser, made from plural.y by GNU Bison version 1.28 */ #define YYBISON 1 /* Identify Bison output. */ #define yyparse __gettextparse #define yylex __gettextlex #define yyerror __gettexterror #define yylval __gettextlval #define yychar __gettextchar #define yydebug __gettextdebug #define yynerrs __gettextnerrs #define EQUOP2 257 #define CMPOP2 258 #define ADDOP2 259 #define MULOP2 260 #define NUMBER 261 #line 1 "plural.y" /* Expression parsing for plural form selection. Copyright (C) 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg #line 49 "plural.y" typedef union { unsigned long int num; enum operator op; struct expression *exp; } YYSTYPE; #line 55 "plural.y" /* Prototypes for local functions. */ static struct expression *new_exp PARAMS ((int nargs, enum operator op, struct expression * const *args)); static inline struct expression *new_exp_0 PARAMS ((enum operator op)); static inline struct expression *new_exp_1 PARAMS ((enum operator op, struct expression *right)); static struct expression *new_exp_2 PARAMS ((enum operator op, struct expression *left, struct expression *right)); static inline struct expression *new_exp_3 PARAMS ((enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch)); static int yylex PARAMS ((YYSTYPE *lval, const char **pexp)); static void yyerror PARAMS ((const char *str)); /* Allocation of expressions. */ static struct expression * new_exp (nargs, op, args) int nargs; enum operator op; struct expression * const *args; { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (op) enum operator op; { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (op, right) enum operator op; struct expression *right; { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (op, left, right) enum operator op; struct expression *left; struct expression *right; { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (op, bexp, tbranch, fbranch) enum operator op; struct expression *bexp; struct expression *tbranch; struct expression *fbranch; { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } #include #ifndef __cplusplus #ifndef __STDC__ #define const #endif #endif #define YYFINAL 27 #define YYFLAG -32768 #define YYNTBASE 16 #define YYTRANSLATE(x) ((unsigned)(x) <= 261 ? yytranslate[x] : 18) static const char yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 5, 2, 14, 15, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 12, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 13, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 6, 7, 8, 9, 11 }; #if YYDEBUG != 0 static const short yyprhs[] = { 0, 0, 2, 8, 12, 16, 20, 24, 28, 32, 35, 37, 39 }; static const short yyrhs[] = { 17, 0, 17, 3, 17, 12, 17, 0, 17, 4, 17, 0, 17, 5, 17, 0, 17, 6, 17, 0, 17, 7, 17, 0, 17, 8, 17, 0, 17, 9, 17, 0, 10, 17, 0, 13, 0, 11, 0, 14, 17, 15, 0 }; #endif #if YYDEBUG != 0 static const short yyrline[] = { 0, 174, 182, 186, 190, 194, 198, 202, 206, 210, 214, 218, 223 }; #endif #if YYDEBUG != 0 || defined (YYERROR_VERBOSE) static const char * const yytname[] = { "$","error","$undefined.","'?'","'|'", "'&'","EQUOP2","CMPOP2","ADDOP2","MULOP2","'!'","NUMBER","':'","'n'","'('","')'", "start","exp", NULL }; #endif static const short yyr1[] = { 0, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17 }; static const short yyr2[] = { 0, 1, 5, 3, 3, 3, 3, 3, 3, 2, 1, 1, 3 }; static const short yydefact[] = { 0, 0, 11, 10, 0, 1, 9, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 3, 4, 5, 6, 7, 8, 0, 2, 0, 0, 0 }; static const short yydefgoto[] = { 25, 5 }; static const short yypact[] = { -9, -9,-32768,-32768, -9, 34,-32768, 11, -9, -9, -9, -9, -9, -9, -9,-32768, 24, 39, 43, 16, 26, -3,-32768, -9, 34, 21, 53,-32768 }; static const short yypgoto[] = {-32768, -1 }; #define YYLAST 53 static const short yytable[] = { 6, 1, 2, 7, 3, 4, 14, 16, 17, 18, 19, 20, 21, 22, 8, 9, 10, 11, 12, 13, 14, 26, 24, 12, 13, 14, 15, 8, 9, 10, 11, 12, 13, 14, 13, 14, 23, 8, 9, 10, 11, 12, 13, 14, 10, 11, 12, 13, 14, 11, 12, 13, 14, 27 }; static const short yycheck[] = { 1, 10, 11, 4, 13, 14, 9, 8, 9, 10, 11, 12, 13, 14, 3, 4, 5, 6, 7, 8, 9, 0, 23, 7, 8, 9, 15, 3, 4, 5, 6, 7, 8, 9, 8, 9, 12, 3, 4, 5, 6, 7, 8, 9, 5, 6, 7, 8, 9, 6, 7, 8, 9, 0 }; #define YYPURE 1 /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ #line 3 "/usr/local/share/bison.simple" /* This file comes from bison-1.28. */ /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990 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 02111-1307, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. */ /* This is the parser code that is written into each bison parser when the %semantic_parser declaration is not specified in the grammar. It was written by Richard Stallman by simplifying the hairy parser used when %semantic_parser is specified. */ #ifndef YYSTACK_USE_ALLOCA #ifdef alloca #define YYSTACK_USE_ALLOCA #else /* alloca not defined */ #ifdef __GNUC__ #define YYSTACK_USE_ALLOCA #define alloca __builtin_alloca #else /* not GNU C. */ #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386)) #define YYSTACK_USE_ALLOCA #include #else /* not sparc */ /* We think this test detects Watcom and Microsoft C. */ /* This used to test MSDOS, but that is a bad idea since that symbol is in the user namespace. */ #if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__) #if 0 /* No need for malloc.h, which pollutes the namespace; instead, just don't use alloca. */ #include #endif #else /* not MSDOS, or __TURBOC__ */ #if defined(_AIX) /* I don't know what this was needed for, but it pollutes the namespace. So I turned it off. rms, 2 May 1997. */ /* #include */ #pragma alloca #define YYSTACK_USE_ALLOCA #else /* not MSDOS, or __TURBOC__, or _AIX */ #if 0 #ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up, and on HPUX 10. Eventually we can turn this on. */ #define YYSTACK_USE_ALLOCA #define alloca __builtin_alloca #endif /* __hpux */ #endif #endif /* not _AIX */ #endif /* not MSDOS, or __TURBOC__ */ #endif /* not sparc */ #endif /* not GNU C */ #endif /* alloca not defined */ #endif /* YYSTACK_USE_ALLOCA not defined */ #ifdef YYSTACK_USE_ALLOCA #define YYSTACK_ALLOC alloca #else #define YYSTACK_ALLOC malloc #endif /* Note: there must be only one dollar sign in this file. It is replaced by the list of actions, each action as one case of the switch. */ #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY -2 #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrlab1 /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. */ #define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(token, value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { yychar = (token), yylval = (value); \ yychar1 = YYTRANSLATE (yychar); \ YYPOPSTACK; \ goto yybackup; \ } \ else \ { yyerror ("syntax error: cannot back up"); YYERROR; } \ while (0) #define YYTERROR 1 #define YYERRCODE 256 #ifndef YYPURE #define YYLEX yylex() #endif #ifdef YYPURE #ifdef YYLSP_NEEDED #ifdef YYLEX_PARAM #define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM) #else #define YYLEX yylex(&yylval, &yylloc) #endif #else /* not YYLSP_NEEDED */ #ifdef YYLEX_PARAM #define YYLEX yylex(&yylval, YYLEX_PARAM) #else #define YYLEX yylex(&yylval) #endif #endif /* not YYLSP_NEEDED */ #endif /* If nonreentrant, generate the variables here */ #ifndef YYPURE int yychar; /* the lookahead symbol */ YYSTYPE yylval; /* the semantic value of the */ /* lookahead symbol */ #ifdef YYLSP_NEEDED YYLTYPE yylloc; /* location data for the lookahead */ /* symbol */ #endif int yynerrs; /* number of parse errors so far */ #endif /* not YYPURE */ #if YYDEBUG != 0 int yydebug; /* nonzero means print parse trace */ /* Since this is uninitialized, it does not stop multiple parsers from coexisting. */ #endif /* YYINITDEPTH indicates the initial size of the parser's stacks */ #ifndef YYINITDEPTH #define YYINITDEPTH 200 #endif /* YYMAXDEPTH is the maximum size the stacks can grow to (effective only if the built-in stack extension method is used). */ #if YYMAXDEPTH == 0 #undef YYMAXDEPTH #endif #ifndef YYMAXDEPTH #define YYMAXDEPTH 10000 #endif /* Define __yy_memcpy. Note that the size argument should be passed with type unsigned int, because that is what the non-GCC definitions require. With GCC, __builtin_memcpy takes an arg of type size_t, but it can handle unsigned int. */ #if __GNUC__ > 1 /* GNU C and GNU C++ define this. */ #define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT) #else /* not GNU C or C++ */ #ifndef __cplusplus /* This is the most reliable way to avoid incompatibilities in available built-in functions on various systems. */ static void __yy_memcpy (to, from, count) char *to; char *from; unsigned int count; { register char *f = from; register char *t = to; register int i = count; while (i-- > 0) *t++ = *f++; } #else /* __cplusplus */ /* This is the most reliable way to avoid incompatibilities in available built-in functions on various systems. */ static void __yy_memcpy (char *to, char *from, unsigned int count) { register char *t = to; register char *f = from; register int i = count; while (i-- > 0) *t++ = *f++; } #endif #endif #line 217 "/usr/local/share/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. It should actually point to an object. Grammar actions can access the variable by casting it to the proper pointer type. */ #ifdef YYPARSE_PARAM #ifdef __cplusplus #define YYPARSE_PARAM_ARG void *YYPARSE_PARAM #define YYPARSE_PARAM_DECL #else /* not __cplusplus */ #define YYPARSE_PARAM_ARG YYPARSE_PARAM #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; #endif /* not __cplusplus */ #else /* not YYPARSE_PARAM */ #define YYPARSE_PARAM_ARG #define YYPARSE_PARAM_DECL #endif /* not YYPARSE_PARAM */ /* Prevent warning if -Wstrict-prototypes. */ #ifdef __GNUC__ #ifdef YYPARSE_PARAM int yyparse (void *); #else int yyparse (void); #endif #endif int yyparse(YYPARSE_PARAM_ARG) YYPARSE_PARAM_DECL { register int yystate; register int yyn; register short *yyssp; register YYSTYPE *yyvsp; int yyerrstatus; /* number of tokens to shift before error messages enabled */ int yychar1 = 0; /* lookahead token as an internal (translated) token number */ short yyssa[YYINITDEPTH]; /* the state stack */ YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */ short *yyss = yyssa; /* refer to the stacks thru separate pointers */ YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */ #ifdef YYLSP_NEEDED YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */ YYLTYPE *yyls = yylsa; YYLTYPE *yylsp; #define YYPOPSTACK (yyvsp--, yyssp--, yylsp--) #else #define YYPOPSTACK (yyvsp--, yyssp--) #endif int yystacksize = YYINITDEPTH; int yyfree_stacks = 0; #ifdef YYPURE int yychar; YYSTYPE yylval; int yynerrs; #ifdef YYLSP_NEEDED YYLTYPE yylloc; #endif #endif YYSTYPE yyval; /* the variable used to return */ /* semantic values from the action */ /* routines */ int yylen; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Starting parse\n"); #endif yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss - 1; yyvsp = yyvs; #ifdef YYLSP_NEEDED yylsp = yyls; #endif /* Push a new state, which is found in yystate . */ /* In all cases, when you get here, the value and location stacks have just been pushed. so pushing a state here evens the stacks. */ yynewstate: *++yyssp = yystate; if (yyssp >= yyss + yystacksize - 1) { /* Give user a chance to reallocate the stack */ /* Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; short *yyss1 = yyss; #ifdef YYLSP_NEEDED YYLTYPE *yyls1 = yyls; #endif /* Get the current used size of the three stacks, in elements. */ int size = yyssp - yyss + 1; #ifdef yyoverflow /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. */ #ifdef YYLSP_NEEDED /* This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow("parser stack overflow", &yyss1, size * sizeof (*yyssp), &yyvs1, size * sizeof (*yyvsp), &yyls1, size * sizeof (*yylsp), &yystacksize); #else yyoverflow("parser stack overflow", &yyss1, size * sizeof (*yyssp), &yyvs1, size * sizeof (*yyvsp), &yystacksize); #endif yyss = yyss1; yyvs = yyvs1; #ifdef YYLSP_NEEDED yyls = yyls1; #endif #else /* no yyoverflow */ /* Extend the stack our own way. */ if (yystacksize >= YYMAXDEPTH) { yyerror("parser stack overflow"); if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 2; } yystacksize *= 2; if (yystacksize > YYMAXDEPTH) yystacksize = YYMAXDEPTH; #ifndef YYSTACK_USE_ALLOCA yyfree_stacks = 1; #endif yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp)); __yy_memcpy ((char *)yyss, (char *)yyss1, size * (unsigned int) sizeof (*yyssp)); yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp)); __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * (unsigned int) sizeof (*yyvsp)); #ifdef YYLSP_NEEDED yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp)); __yy_memcpy ((char *)yyls, (char *)yyls1, size * (unsigned int) sizeof (*yylsp)); #endif #endif /* no yyoverflow */ yyssp = yyss + size - 1; yyvsp = yyvs + size - 1; #ifdef YYLSP_NEEDED yylsp = yyls + size - 1; #endif #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Stack size increased to %d\n", yystacksize); #endif if (yyssp >= yyss + yystacksize - 1) YYABORT; } #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Entering state %d\n", yystate); #endif goto yybackup; yybackup: /* Do appropriate processing given the current state. */ /* Read a lookahead token if we need one and don't already have one. */ /* yyresume: */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yyn == YYFLAG) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* yychar is either YYEMPTY or YYEOF or a valid token in external form. */ if (yychar == YYEMPTY) { #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Reading a token: "); #endif yychar = YYLEX; } /* Convert token to internal form (in yychar1) for indexing tables with */ if (yychar <= 0) /* This means end of input. */ { yychar1 = 0; yychar = YYEOF; /* Don't call YYLEX any more */ #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Now at end of input.\n"); #endif } else { yychar1 = YYTRANSLATE(yychar); #if YYDEBUG != 0 if (yydebug) { fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]); /* Give the individual parser a way to print the precise meaning of a token, for further debugging info. */ #ifdef YYPRINT YYPRINT (stderr, yychar, yylval); #endif fprintf (stderr, ")\n"); } #endif } yyn += yychar1; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1) goto yydefault; yyn = yytable[yyn]; /* yyn is what to do for this token type in this state. Negative => reduce, -yyn is rule number. Positive => shift, yyn is new state. New state is final state => don't bother to shift, just return success. 0, or most negative number => error. */ if (yyn < 0) { if (yyn == YYFLAG) goto yyerrlab; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrlab; if (yyn == YYFINAL) YYACCEPT; /* Shift the lookahead token. */ #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]); #endif /* Discard the token being shifted unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; *++yyvsp = yylval; #ifdef YYLSP_NEEDED *++yylsp = yylloc; #endif /* count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; yystate = yyn; goto yynewstate; /* Do the default action for the current state. */ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; /* Do a reduction. yyn is the number of a rule to reduce with. */ yyreduce: yylen = yyr2[yyn]; if (yylen > 0) yyval = yyvsp[1-yylen]; /* implement default value of the action */ #if YYDEBUG != 0 if (yydebug) { int i; fprintf (stderr, "Reducing via rule %d (line %d), ", yyn, yyrline[yyn]); /* Print the symbols being reduced, and their result. */ for (i = yyprhs[yyn]; yyrhs[i] > 0; i++) fprintf (stderr, "%s ", yytname[yyrhs[i]]); fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]); } #endif switch (yyn) { case 1: #line 175 "plural.y" { if (yyvsp[0].exp == NULL) YYABORT; ((struct parse_args *) arg)->res = yyvsp[0].exp; ; break;} case 2: #line 183 "plural.y" { yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 3: #line 187 "plural.y" { yyval.exp = new_exp_2 (lor, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 4: #line 191 "plural.y" { yyval.exp = new_exp_2 (land, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 5: #line 195 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 6: #line 199 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 7: #line 203 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 8: #line 207 "plural.y" { yyval.exp = new_exp_2 (yyvsp[-1].op, yyvsp[-2].exp, yyvsp[0].exp); ; break;} case 9: #line 211 "plural.y" { yyval.exp = new_exp_1 (lnot, yyvsp[0].exp); ; break;} case 10: #line 215 "plural.y" { yyval.exp = new_exp_0 (var); ; break;} case 11: #line 219 "plural.y" { if ((yyval.exp = new_exp_0 (num)) != NULL) yyval.exp->val.num = yyvsp[0].num; ; break;} case 12: #line 224 "plural.y" { yyval.exp = yyvsp[-1].exp; ; break;} } /* the action file gets copied in in place of this dollarsign */ #line 543 "/usr/local/share/bison.simple" yyvsp -= yylen; yyssp -= yylen; #ifdef YYLSP_NEEDED yylsp -= yylen; #endif #if YYDEBUG != 0 if (yydebug) { short *ssp1 = yyss - 1; fprintf (stderr, "state stack now"); while (ssp1 != yyssp) fprintf (stderr, " %d", *++ssp1); fprintf (stderr, "\n"); } #endif *++yyvsp = yyval; #ifdef YYLSP_NEEDED yylsp++; if (yylen == 0) { yylsp->first_line = yylloc.first_line; yylsp->first_column = yylloc.first_column; yylsp->last_line = (yylsp-1)->last_line; yylsp->last_column = (yylsp-1)->last_column; yylsp->text = 0; } else { yylsp->last_line = (yylsp+yylen-1)->last_line; yylsp->last_column = (yylsp+yylen-1)->last_column; } #endif /* Now "shift" the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTBASE] + *yyssp; if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTBASE]; goto yynewstate; yyerrlab: /* here on detecting error */ if (! yyerrstatus) /* If not already recovering from an error, report this error. */ { ++yynerrs; #ifdef YYERROR_VERBOSE yyn = yypact[yystate]; if (yyn > YYFLAG && yyn < YYLAST) { int size = 0; char *msg; int x, count; count = 0; /* Start X at -yyn if nec to avoid negative indexes in yycheck. */ for (x = (yyn < 0 ? -yyn : 0); x < (sizeof(yytname) / sizeof(char *)); x++) if (yycheck[x + yyn] == x) size += strlen(yytname[x]) + 15, count++; msg = (char *) malloc(size + 15); if (msg != 0) { strcpy(msg, "parse error"); if (count < 5) { count = 0; for (x = (yyn < 0 ? -yyn : 0); x < (sizeof(yytname) / sizeof(char *)); x++) if (yycheck[x + yyn] == x) { strcat(msg, count == 0 ? ", expecting `" : " or `"); strcat(msg, yytname[x]); strcat(msg, "'"); count++; } } yyerror(msg); free(msg); } else yyerror ("parse error; also virtual memory exceeded"); } else #endif /* YYERROR_VERBOSE */ yyerror("parse error"); } goto yyerrlab1; yyerrlab1: /* here on error raised explicitly by an action */ if (yyerrstatus == 3) { /* if just tried and failed to reuse lookahead token after an error, discard it. */ /* return failure if at end of input */ if (yychar == YYEOF) YYABORT; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]); #endif yychar = YYEMPTY; } /* Else will try to reuse lookahead token after shifting the error token. */ yyerrstatus = 3; /* Each real token shifted decrements this */ goto yyerrhandle; yyerrdefault: /* current state does not do anything special for the error token. */ #if 0 /* This is wrong; only states that explicitly want error tokens should shift them. */ yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/ if (yyn) goto yydefault; #endif yyerrpop: /* pop the current state because it cannot handle the error token */ if (yyssp == yyss) YYABORT; yyvsp--; yystate = *--yyssp; #ifdef YYLSP_NEEDED yylsp--; #endif #if YYDEBUG != 0 if (yydebug) { short *ssp1 = yyss - 1; fprintf (stderr, "Error: state stack now"); while (ssp1 != yyssp) fprintf (stderr, " %d", *++ssp1); fprintf (stderr, "\n"); } #endif yyerrhandle: yyn = yypact[yystate]; if (yyn == YYFLAG) goto yyerrdefault; yyn += YYTERROR; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR) goto yyerrdefault; yyn = yytable[yyn]; if (yyn < 0) { if (yyn == YYFLAG) goto yyerrpop; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrpop; if (yyn == YYFINAL) YYACCEPT; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Shifting error token, "); #endif *++yyvsp = yylval; #ifdef YYLSP_NEEDED *++yylsp = yylloc; #endif yystate = yyn; goto yynewstate; yyacceptlab: /* YYACCEPT comes here. */ if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 0; yyabortlab: /* YYABORT comes here. */ if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 1; } #line 229 "plural.y" void internal_function FREE_EXPRESSION (exp) struct expression *exp; { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (lval, pexp) YYSTYPE *lval; const char **pexp; { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (str) const char *str; { /* Do nothing. We don't print error messages here. */ } lincity-1.13.1/intl/VERSION0000644000175000017500000000005007627052670012215 00000000000000GNU gettext library from gettext-0.11.5 lincity-1.13.1/po/0000777000175000017500000000000010073426330010671 500000000000000lincity-1.13.1/po/Makefile.in.in0000644000175000017500000002431407627052671013301 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2002 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: $(CATALOGS) all-no: # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common); do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext"; then \ for file in $(DISTFILES.common); do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all dvi info tags TAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: $(DISTFILES) dists="$(DISTFILES)"; \ if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir); \ else \ cp -p $(srcdir)/$$file $(distdir); \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ $(SHELL) ./config.status force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: lincity-1.13.1/po/Makevars0000644000175000017500000000207707640242606012317 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = I.J. Peters, G.C. Sharp and others # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = lincity-1.13.1/po/remove-potcdate.sin0000644000175000017500000000066007627067167014444 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } lincity-1.13.1/po/quot.sed0000644000175000017500000000023107627067167012312 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g lincity-1.13.1/po/boldquot.sed0000644000175000017500000000033107627052671013146 00000000000000s/"\([^"]*\)"/“\1”/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“”/""/g s/“/“/g s/”/”/g s/‘/‘/g s/’/’/g lincity-1.13.1/po/en@quot.header0000644000175000017500000000226307627067167013421 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # lincity-1.13.1/po/en@boldquot.header0000644000175000017500000000247107627067167014263 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # lincity-1.13.1/po/insert-header.sin0000644000175000017500000000124007627067167014073 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } lincity-1.13.1/po/Rules-quot0000644000175000017500000000323107627052671012625 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header lincity-1.13.1/po/POTFILES.in0000644000175000017500000000160510066321005012357 00000000000000# List of files which containing translatable strings. # Copyright (C) 1995, 1998 Free Software Foundation, Inc. # Files to translate: cliglobs.c engine.c fileutil.c geometry.c lchelp.c lcsvga.c lcwin32.c lcx11.c ldsvgui.c ldsvguts.c lintypes.c main.c module_buttons.c mouse.c mps.c screen.c modules/blacksmith.c modules/coal_power.c modules/coalmine.c modules/commune.c modules/cricket.c modules/fire.c modules/firestation.c modules/health_centre.c modules/heavy_industry.c modules/light_industry.c modules/mill.c modules/monument.c modules/oremine.c modules/organic_farm.c modules/parkland.c modules/port.c modules/pottery.c modules/power_line.c modules/rail.c modules/recycle.c modules/residence.c modules/road.c modules/rocket_pad.c modules/school.c modules/shanty.c modules/solar_power.c modules/substation.c modules/tip.c modules/track.c modules/university.c modules/water.c modules/windmill.c lincity-1.13.1/po/lincity.pot0000644000175000017500000006235610073426330013020 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR I.J. Peters, G.C. Sharp and others # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-07-08 23:27-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: cliglobs.c:56 msgid "Jan" msgstr "" #: cliglobs.c:56 msgid "Feb" msgstr "" #: cliglobs.c:56 msgid "Mar" msgstr "" #: cliglobs.c:56 msgid "Apr" msgstr "" #: cliglobs.c:57 msgid "May" msgstr "" #: cliglobs.c:57 msgid "Jun" msgstr "" #: cliglobs.c:57 msgid "Jul" msgstr "" #: cliglobs.c:57 msgid "Aug" msgstr "" #: cliglobs.c:58 msgid "Sep" msgstr "" #: cliglobs.c:58 msgid "Oct" msgstr "" #: cliglobs.c:58 msgid "Nov" msgstr "" #: cliglobs.c:58 msgid "Dec" msgstr "" #: engine.c:145 msgid "You can't build a tip here" msgstr "" #: engine.c:146 engine.c:177 msgid "This area was once a landfill" msgstr "" #: engine.c:147 engine.c:178 engine.c:185 screen.c:2284 screen.c:2288 #: screen.c:2358 screen.c:2362 msgid "OK" msgstr "" #: engine.c:176 engine.c:183 msgid "You can't build a mine here" msgstr "" #: engine.c:184 msgid "There is no ore left at this site" msgstr "" #: engine.c:670 msgid "It's at a power line." msgstr "" #: engine.c:672 msgid "It's at a solar power station." msgstr "" #: engine.c:674 msgid "It's at a substation." msgstr "" #: engine.c:676 msgid "It's at a residential area." msgstr "" #: engine.c:678 msgid "It's at a farm." msgstr "" #: engine.c:680 msgid "It's at a market." msgstr "" #: engine.c:682 msgid "It's at a track." msgstr "" #: engine.c:684 msgid "It's at a coal mine." msgstr "" #: engine.c:686 msgid "It's at a railway." msgstr "" #: engine.c:688 msgid "It's at a coal power station." msgstr "" #: engine.c:690 msgid "It's at a road." msgstr "" #: engine.c:692 msgid "It's at light industry." msgstr "" #: engine.c:694 msgid "It's at a university." msgstr "" #: engine.c:696 msgid "It's at a commune." msgstr "" #: engine.c:698 msgid "It's at a tip." msgstr "" #: engine.c:700 msgid "It's at a port." msgstr "" #: engine.c:702 msgid "It's at a steel works." msgstr "" #: engine.c:704 msgid "It's at a recycle centre." msgstr "" #: engine.c:706 msgid "It's at a health centre." msgstr "" #: engine.c:708 msgid "It's at a rocket site." msgstr "" #: engine.c:710 msgid "It's at a windmill." msgstr "" #: engine.c:712 msgid "It's at a school." msgstr "" #: engine.c:714 msgid "It's at a blacksmith." msgstr "" #: engine.c:716 msgid "It's at a mill." msgstr "" #: engine.c:718 msgid "It's at a pottery." msgstr "" #: engine.c:720 msgid "It's at a fire station!!!." msgstr "" #: engine.c:722 msgid "It's at a cricket pitch!!!." msgstr "" #: engine.c:724 msgid "It's at a shanty town." msgstr "" #: engine.c:726 msgid "UNKNOWN!" msgstr "" #: fileutil.c:299 fileutil.c:349 msgid "Error. Can't find LINCITY_HOME" msgstr "" #: fileutil.c:570 msgid "Error verifying package. Can't find colour.pal." msgstr "" #: fileutil.c:589 fileutil.c:598 #, c-format msgid "Couldn't create the save directory %s\n" msgstr "" #: fileutil.c:644 #, c-format msgid "Out of memory: malloc failure\n" msgstr "" #: geometry.c:536 msgid "Menu" msgstr "" #: geometry.c:561 msgid "Help" msgstr "" #: geometry.c:586 msgid "Stats" msgstr "" #: lchelp.c:267 msgid "Sorry, lincity cannot run without this directory. Exiting." msgstr "" #: lchelp.c:363 msgid "tbutton 4 387 return-1 BACK" msgstr "" #: lchelp.c:367 msgid "tbutton 370 387 return-2 OUT" msgstr "" #: lcsvga.c:243 lcx11.c:453 #, c-format msgid "An error has occurred. The description is below...\n" msgstr "" #: lcsvga.c:247 lcx11.c:457 #, c-format msgid "Program aborting...\n" msgstr "" #: lcwin32.c:57 msgid "ERROR" msgstr "" #: lcx11.c:310 #, c-format msgid "Version %s\n" msgstr "" #: lcx11.c:395 #, c-format msgid "xlincity, Version %s, (Copyright) IJ Peters - copying policy GNU GPL" msgstr "" #: ldsvgui.c:204 msgid "Transport overwrite" msgstr "" #: ldsvgui.c:205 msgid "Popup info to dialog boxes" msgstr "" #: ldsvgui.c:206 msgid "Time multiplexed stats windows" msgstr "" #: ldsvgui.c:208 msgid "Confine X pointer" msgstr "" #: ldsvgui.c:223 msgid "OUT" msgstr "" #: ldsvgui.c:288 msgid "Save a scene" msgstr "" #: ldsvgui.c:290 msgid "Choose the number of the scene you want to save" msgstr "" #: ldsvgui.c:292 ldsvgui.c:384 ldsvgui.c:654 msgid "Press space to cancel." msgstr "" #: ldsvgui.c:316 msgid "Type comment for the saved scene" msgstr "" #: ldsvgui.c:318 msgid "The comment may be up to 40 characters" msgstr "" #: ldsvgui.c:320 msgid "and may contain spaces or % . - + ," msgstr "" #: ldsvgui.c:329 msgid "Saving city scene... please wait" msgstr "" #: ldsvgui.c:374 msgid "Load a file" msgstr "" #: ldsvgui.c:376 msgid "Choose the number of the scene you want" msgstr "" #: ldsvgui.c:378 msgid "Entries coloured red are either not there," msgstr "" #: ldsvgui.c:380 msgid "or they are from an earlier version, they" msgstr "" #: ldsvgui.c:382 msgid "might not load properly." msgstr "" #: ldsvgui.c:408 ldsvgui.c:679 msgid "No scene." msgstr "" #: ldsvgui.c:409 ldsvgui.c:680 msgid "There is no save scene with this number." msgstr "" #: ldsvgui.c:410 ldsvgui.c:681 msgid "Do you want to" msgstr "" #: ldsvgui.c:411 ldsvgui.c:682 msgid "try again?" msgstr "" #: ldsvgui.c:422 ldsvgui.c:693 msgid "Loading Scene" msgstr "" #: ldsvgui.c:423 ldsvgui.c:694 msgid "Do you want to load the scene" msgstr "" #: ldsvgui.c:425 ldsvgui.c:696 msgid "and forget the current game?" msgstr "" #: ldsvgui.c:428 ldsvgui.c:699 msgid "Loading scene... please wait" msgstr "" #: ldsvgui.c:469 #, c-format msgid "Couldn't find the save directory %s\n" msgstr "" #: ldsvgui.c:650 msgid "Choose network server" msgstr "" #: ldsvgui.c:652 msgid "Please enter the address and port of the server" msgstr "" #: ldsvguts.c:124 #, c-format msgid "Save file <%s> - " msgstr "" #: ldsvguts.c:125 msgid "Can't open save file!" msgstr "" #: ldsvguts.c:130 msgid "Saving scene" msgstr "" #: ldsvguts.c:357 #, c-format msgid "Can't open <%s> (gzipped)" msgstr "" #: ldsvguts.c:375 msgid "Loading scene" msgstr "" #: lintypes.c:22 msgid "Empty" msgstr "" #: lintypes.c:34 msgid "Power line" msgstr "" #: lintypes.c:46 msgid "Solar PS" msgstr "" #: lintypes.c:58 modules/substation.c:98 msgid "Substation" msgstr "" #: lintypes.c:70 msgid "Residential LL" msgstr "" #: lintypes.c:82 msgid "Farm" msgstr "" #: lintypes.c:94 screen.c:2124 msgid "Market" msgstr "" #: lintypes.c:106 modules/track.c:44 msgid "Track" msgstr "" #: lintypes.c:118 msgid "Coalmine" msgstr "" #: lintypes.c:130 msgid "Railway" msgstr "" #: lintypes.c:142 msgid "Coal PS" msgstr "" #: lintypes.c:154 modules/road.c:53 msgid "Road" msgstr "" #: lintypes.c:166 msgid "Lt. Industry" msgstr "" #: lintypes.c:178 modules/university.c:73 msgid "University" msgstr "" #: lintypes.c:190 modules/commune.c:151 msgid "Commune" msgstr "" #: lintypes.c:202 msgid "Ore mine" msgstr "" #: lintypes.c:214 msgid "Rubbish tip" msgstr "" #: lintypes.c:226 screen.c:2126 modules/port.c:210 msgid "Port" msgstr "" #: lintypes.c:238 msgid "Hv. Industry" msgstr "" #: lintypes.c:250 msgid "Park" msgstr "" #: lintypes.c:262 mps.c:542 msgid "Recycle" msgstr "" #: lintypes.c:274 modules/water.c:26 msgid "Water" msgstr "" #: lintypes.c:286 msgid "Health centre" msgstr "" #: lintypes.c:298 msgid "Rocket pad" msgstr "" #: lintypes.c:310 mps.c:532 modules/windmill.c:83 msgid "Windmill" msgstr "" #: lintypes.c:322 modules/monument.c:63 msgid "Monument" msgstr "" #: lintypes.c:334 modules/school.c:56 msgid "School" msgstr "" #: lintypes.c:346 modules/blacksmith.c:103 msgid "Blacksmith" msgstr "" #: lintypes.c:358 msgid "Mill" msgstr "" #: lintypes.c:370 modules/pottery.c:126 msgid "Pottery" msgstr "" #: lintypes.c:382 msgid "Fire sta'n" msgstr "" #: lintypes.c:394 msgid "Cricket pitch" msgstr "" #: lintypes.c:407 msgid "Burnt" msgstr "" #: lintypes.c:420 msgid "Shanty town" msgstr "" #: lintypes.c:433 mps.c:413 modules/residence.c:297 msgid "Fire" msgstr "" #: lintypes.c:446 msgid "Used" msgstr "" #: lintypes.c:458 msgid "Residential ML" msgstr "" #: lintypes.c:470 msgid "Residential HL" msgstr "" #: lintypes.c:482 lintypes.c:494 lintypes.c:506 msgid "Residential" msgstr "" #: main.c:262 msgid "Loading the game" msgstr "" #: main.c:272 msgid "Creating pixmaps" msgstr "" #: main.c:675 msgid "Quit The Game?" msgstr "" #: main.c:676 msgid "Do you really want to quit?" msgstr "" #: main.c:677 msgid "If you want to save the game select NO." msgstr "" #. TRANSLATORS: Test mode is like using "cheat codes" #: main.c:713 msgid "TEST" msgstr "" #: main.c:713 msgid "You have pressed a test key" msgstr "" #: main.c:714 msgid "You will only see this message once" msgstr "" #: main.c:715 msgid "Do you really want to play in test mode..." msgstr "" #: main.c:740 #, c-format msgid "Unable to open %s\n" msgstr "" #: main.c:745 #, c-format msgid "----- IN TEST MODE -------\n" msgstr "" #: main.c:746 #, c-format msgid "Game statistics from LinCity Version %s\n" msgstr "" #: main.c:748 #, c-format msgid "Initial loaded scene - %s\n" msgstr "" #: main.c:750 #, c-format msgid "Economy is sustainable\n" msgstr "" #: main.c:751 #, c-format msgid "Population %d of which %d are not housed.\n" msgstr "" #: main.c:754 #, c-format msgid "Max population %d Number evacuated %d Total births %d\n" msgstr "" #: main.c:757 #, c-format msgid " Date %s %04d Money %8d Tech-level %5.1f (%5.1f)\n" msgstr "" #: main.c:762 #, c-format msgid " Deaths by starvation %7d History %8.3f\n" msgstr "" #: main.c:765 #, c-format msgid "Deaths from pollution %7d History %8.3f\n" msgstr "" #: main.c:767 #, c-format msgid "Years of unemployment %7d History %8.3f\n" msgstr "" #: main.c:769 #, c-format msgid "Rockets launched %2d Successful launches %2d\n" msgstr "" #: main.c:772 #, c-format msgid " Residences %4d Markets %4d Farms %4d\n" msgstr "" #: main.c:781 #, c-format msgid " Tracks %4d Roads %4d Rail %4d\n" msgstr "" #: main.c:784 #, c-format msgid " Potteries %4d Blacksmiths %4d Mills %4d\n" msgstr "" #: main.c:787 #, c-format msgid " Monuments %4d Schools %4d Universities %4d\n" msgstr "" #: main.c:790 #, c-format msgid " Fire stations %4d Parks %4d Cricket gnds %4d\n" msgstr "" #: main.c:793 #, c-format msgid " Coal mines %4d Ore mines %4d Communes %4d\n" msgstr "" #: main.c:796 #, c-format msgid " Windmills %4d Coal powers %4d Solar powers %4d\n" msgstr "" #: main.c:800 #, c-format msgid " Substations %4d Power lines %4d Ports %4d\n" msgstr "" #: main.c:803 #, c-format msgid " Light inds %4d Heavy inds %4d Recyclers %4d\n" msgstr "" #: main.c:806 #, c-format msgid "Health centres %4d Tips %4d Shanties %4d\n" msgstr "" #: module_buttons.c:481 #, c-format msgid "Bulldoze - cost varies" msgstr "" #: module_buttons.c:483 #, c-format msgid "%s %s Bulldoze %s" msgstr "" #. TRANSLATORS: The part about the cup of tea is one of Ian's #. jokes, but the part about ports needing to be connected #. to rivers is true. #: mouse.c:587 mouse.c:766 mouse.c:774 mouse.c:782 msgid "WARNING" msgstr "" #: mouse.c:588 msgid "Ports need to be" msgstr "" #: mouse.c:589 msgid "connected to rivers!" msgstr "" #: mouse.c:590 msgid "Want to make a cup of tea?" msgstr "" #: mouse.c:591 msgid "TEA BREAK" msgstr "" #: mouse.c:592 msgid "Boil->pour->wait->stir" msgstr "" #: mouse.c:593 msgid "stir->pour->stir->wait->drink...ahhh" msgstr "" #: mouse.c:594 msgid "Have you finished yet?" msgstr "" #: mouse.c:767 msgid "Bulldozing a monument costs" msgstr "" #: mouse.c:768 msgid "a lot of money." msgstr "" #: mouse.c:769 mouse.c:777 mouse.c:785 msgid "Want to bulldoze?" msgstr "" #: mouse.c:775 msgid "Bulldozing a section of river" msgstr "" #: mouse.c:776 msgid "costs a lot of money." msgstr "" #: mouse.c:783 msgid "Bulldozing a shanty town costs a" msgstr "" #: mouse.c:784 msgid "lot of money and may cause a fire." msgstr "" #. TRANSLATORS: Don't translate the leading "text" #: mouse.c:984 #, c-format msgid "text -1 20 Choose the type of residence you want\n" msgstr "" #: mouse.c:988 #, c-format msgid "text -1 45 (LB=Low Birthrate HB=High Birthrate)\n" msgstr "" #: mouse.c:990 #, c-format msgid "text -1 55 (LD=Low Deathrate HD=High Deathrate)\n" msgstr "" #: mouse.c:992 #, c-format msgid "text -1 85 Low Tech\n" msgstr "" #: mouse.c:995 #, c-format msgid "text 68 106 Cost %4d\n" msgstr "" #. TRANSLATORS: Only translate "pop" <> #: mouse.c:999 #, c-format msgid "tbutton 82 180 return1 pop 50\n" msgstr "" #. TRANSLATORS: Only translate LB, HD (low birth, high death) #: mouse.c:1001 #, c-format msgid "text 89 195 LB HD\n" msgstr "" #: mouse.c:1004 #, c-format msgid "text 155 106 Cost %4d\n" msgstr "" #: mouse.c:1007 #, c-format msgid "tbutton 164 180 return2 pop 100\n" msgstr "" #: mouse.c:1008 #, c-format msgid "text 175 195 HB LD\n" msgstr "" #: mouse.c:1011 #, c-format msgid "text 238 106 Cost %4d\n" msgstr "" #: mouse.c:1014 #, c-format msgid "tbutton 250 180 return3 pop 200\n" msgstr "" #: mouse.c:1015 #, c-format msgid "text 261 195 HB HD\n" msgstr "" #: mouse.c:1017 #, c-format msgid "text -1 215 Click on one to select\n" msgstr "" #: mouse.c:1021 #, c-format msgid "text -1 255 High Tech\n" msgstr "" #: mouse.c:1024 #, c-format msgid "text 68 276 Cost %4d\n" msgstr "" #: mouse.c:1027 #, c-format msgid "tbutton 78 350 return4 pop 100\n" msgstr "" #: mouse.c:1028 #, c-format msgid "text 89 365 LB HD\n" msgstr "" #: mouse.c:1031 #, c-format msgid "text 155 276 Cost %4d\n" msgstr "" #: mouse.c:1034 #, c-format msgid "tbutton 164 350 return5 pop 200\n" msgstr "" #: mouse.c:1035 #, c-format msgid "text 175 365 HB LD\n" msgstr "" #: mouse.c:1038 #, c-format msgid "text 238 276 Cost %4d\n" msgstr "" #: mouse.c:1041 #, c-format msgid "tbutton 250 350 return6 pop 400\n" msgstr "" #: mouse.c:1042 #, c-format msgid "text 261 365 HB HD\n" msgstr "" #: mouse.c:1270 #, c-format msgid "Can't build %s over that!" msgstr "" #: mouse.c:1273 #, c-format msgid "%d sections of %s will cost %3d to build" msgstr "" #: mps.c:411 msgid "Coverage" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2226 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 msgid "Yes" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2227 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 msgid "No" msgstr "" #: mps.c:416 msgid "Health" msgstr "" #: mps.c:419 mps.c:540 modules/residence.c:300 msgid "Cricket" msgstr "" #: mps.c:421 modules/residence.c:302 msgid "Pollution" msgstr "" #: mps.c:424 msgid "clear" msgstr "" #: mps.c:426 modules/residence.c:304 msgid "good" msgstr "" #: mps.c:428 msgid "fair" msgstr "" #: mps.c:430 msgid "smelly" msgstr "" #: mps.c:432 msgid "smokey" msgstr "" #: mps.c:434 msgid "smoggy" msgstr "" #: mps.c:436 msgid "bad" msgstr "" #: mps.c:438 msgid "very bad" msgstr "" #: mps.c:440 msgid "death!" msgstr "" #: mps.c:445 msgid "Bulldoze Cost" msgstr "" #: mps.c:448 msgid "N/A" msgstr "" #: mps.c:464 msgid "Tax Income" msgstr "" #: mps.c:468 msgid "Income" msgstr "" #: mps.c:472 modules/blacksmith.c:111 modules/coal_power.c:97 #: modules/coal_power.c:111 modules/commune.c:157 modules/heavy_industry.c:335 #: modules/heavy_industry.c:350 modules/mill.c:119 modules/port.c:219 #: modules/pottery.c:137 modules/rail.c:63 modules/road.c:60 #: modules/track.c:51 msgid "Coal" msgstr "" #: mps.c:476 modules/blacksmith.c:109 modules/cricket.c:112 #: modules/firestation.c:131 modules/health_centre.c:78 modules/mill.c:115 #: modules/port.c:227 modules/pottery.c:133 modules/rail.c:65 #: modules/road.c:62 modules/rocket_pad.c:178 modules/school.c:64 #: modules/track.c:53 modules/university.c:83 msgid "Goods" msgstr "" #: mps.c:480 msgid "Export" msgstr "" #: mps.c:484 msgid "Expenses" msgstr "" #: mps.c:488 msgid "Unemp." msgstr "" #: mps.c:492 msgid "Transport" msgstr "" #: mps.c:496 msgid "Imports" msgstr "" #: mps.c:500 msgid "Others" msgstr "" #: mps.c:505 msgid "Net" msgstr "" #: mps.c:515 msgid "Other Costs" msgstr "" #: mps.c:520 msgid "For year" msgstr "" #: mps.c:524 msgid "Interest" msgstr "" #: mps.c:526 msgid "Schools" msgstr "" #: mps.c:528 msgid "Univers." msgstr "" #: mps.c:530 msgid "Deaths" msgstr "" #: mps.c:534 msgid "Hospital" msgstr "" #: mps.c:536 msgid "Rockets" msgstr "" #: mps.c:538 msgid "Fire Stn" msgstr "" #: mps.c:552 msgid "Population" msgstr "" #: mps.c:554 modules/port.c:235 msgid "Total" msgstr "" #: mps.c:555 msgid "Housed" msgstr "" #: mps.c:556 msgid "Homeless" msgstr "" #: mps.c:557 msgid "Shanties" msgstr "" #: mps.c:558 msgid "Unn Dths" msgstr "" #: mps.c:559 screen.c:1238 msgid "Unemployment" msgstr "" #: mps.c:560 msgid "Claims" msgstr "" #: mps.c:561 mps.c:566 msgid "Rate" msgstr "" #: mps.c:563 msgid "Starvation" msgstr "" #: mps.c:564 msgid "Cases" msgstr "" #: mps.c:577 msgid "PEOPLE" msgstr "" #: mps.c:578 msgid "Pop" msgstr "" #: mps.c:579 msgid "Unnat death" msgstr "" #: screen.c:861 msgid "Coal survey" msgstr "" #: screen.c:862 msgid "This will cost you 1 million" msgstr "" #: screen.c:863 msgid "After that it's is free to call again" msgstr "" #: screen.c:864 msgid "Do coal survey?" msgstr "" #: screen.c:1043 msgid "Land Use " msgstr "" #: screen.c:1098 msgid "Pollution " msgstr "" #: screen.c:1130 msgid "Fire cover " msgstr "" #: screen.c:1166 msgid "Crickt cover" msgstr "" #: screen.c:1202 msgid "Health cover" msgstr "" #: screen.c:1267 msgid "Starvation " msgstr "" #: screen.c:1297 msgid "Coal Reserve" msgstr "" #: screen.c:1315 msgid "Click here" msgstr "" #: screen.c:1316 msgid " to do " msgstr "" #: screen.c:1317 msgid "coal survey" msgstr "" #: screen.c:1358 msgid "Power " msgstr "" #: screen.c:1360 msgid "Power (none)" msgstr "" #: screen.c:1800 #, c-format msgid "Money: " msgstr "" #: screen.c:1822 #, c-format msgid "Date %s %04d " msgstr "" #: screen.c:1854 #, c-format msgid "%s%5.1f MINS/year V %s" msgstr "" #: screen.c:1855 screen.c:1859 msgid "TEST MODE" msgstr "" #: screen.c:1858 #, c-format msgid "%s%5.1f secs/year V %s " msgstr "" #: screen.c:2133 msgid "Buy" msgstr "" #: screen.c:2134 msgid "Sell" msgstr "" #: screen.c:2136 msgid "JOBS" msgstr "" #: screen.c:2138 msgid "FOOD" msgstr "" #: screen.c:2139 msgid "COAL" msgstr "" #: screen.c:2140 msgid "ORE" msgstr "" #: screen.c:2141 msgid "GOODS" msgstr "" #: screen.c:2142 msgid "STEEL" msgstr "" #. TRANSLATORS: #. MIN=Mining, PRT=Import/export from port, #. MNY=Money, POP=Population, TEC=Technology, #. FIR=Fire coverage #. #: screen.c:2464 msgid "MIN" msgstr "" #: screen.c:2467 msgid "PRT" msgstr "" #: screen.c:2470 msgid "MNY" msgstr "" #: screen.c:2473 msgid "POP" msgstr "" #: screen.c:2476 msgid "TEC" msgstr "" #: screen.c:2479 msgid "FIR" msgstr "" #: screen.c:2592 msgid "ROCKET LAUNCH" msgstr "" #: screen.c:2593 msgid "You can launch the rocket now or wait until later." msgstr "" #: screen.c:2594 msgid "If you wait, it costs you *only* money to keep the" msgstr "" #: screen.c:2595 msgid "rocket ready. Launch?" msgstr "" #: screen.c:2601 msgid "Rocket ready to launch" msgstr "" #: screen.c:2602 msgid "You can launch it now or wait until later." msgstr "" #: screen.c:2603 msgid "If you wait it will continue costing you money." msgstr "" #: screen.c:2604 msgid "Launch it later by clicking on the rocket area." msgstr "" #: modules/blacksmith.c:106 modules/heavy_industry.c:352 #: modules/light_industry.c:353 modules/mill.c:112 modules/pottery.c:128 #: modules/recycle.c:180 modules/school.c:67 modules/university.c:85 msgid "Capacity" msgstr "" #: modules/blacksmith.c:108 modules/cricket.c:109 modules/firestation.c:128 #: modules/health_centre.c:75 modules/mill.c:114 modules/pottery.c:130 #: modules/recycle.c:188 modules/rocket_pad.c:175 modules/school.c:61 #: modules/university.c:80 msgid "Inventory" msgstr "" #: modules/coal_power.c:98 modules/solar_power.c:53 msgid "Power Station" msgstr "" #: modules/coal_power.c:102 modules/solar_power.c:57 msgid "Max Output" msgstr "" #: modules/coal_power.c:107 modules/solar_power.c:62 msgid "Current Output" msgstr "" #: modules/coal_power.c:113 modules/cricket.c:110 modules/firestation.c:129 #: modules/health_centre.c:76 modules/pottery.c:131 modules/rail.c:61 #: modules/road.c:58 modules/rocket_pad.c:176 modules/school.c:62 #: modules/track.c:49 modules/university.c:81 msgid "Jobs" msgstr "" #: modules/coal_power.c:115 modules/organic_farm.c:188 modules/recycle.c:185 #: modules/solar_power.c:66 modules/windmill.c:87 modules/windmill.c:98 msgid "Tech" msgstr "" #: modules/coal_power.c:117 modules/power_line.c:60 modules/solar_power.c:68 #: modules/substation.c:118 modules/windmill.c:114 msgid "Grid ID" msgstr "" #: modules/coalmine.c:176 msgid "Coal Mine" msgstr "" #: modules/coalmine.c:179 modules/oremine.c:195 msgid "Stock" msgstr "" #: modules/coalmine.c:183 modules/coalmine.c:185 modules/oremine.c:199 msgid "Reserve" msgstr "" #: modules/coalmine.c:185 msgid "EMPTY" msgstr "" #: modules/commune.c:154 msgid "Activity" msgstr "" #: modules/commune.c:159 modules/heavy_industry.c:348 #: modules/light_industry.c:349 modules/port.c:223 modules/pottery.c:135 #: modules/rail.c:67 modules/recycle.c:189 modules/road.c:64 #: modules/track.c:55 msgid "Ore" msgstr "" #: modules/commune.c:161 modules/light_industry.c:351 modules/port.c:231 #: modules/rail.c:69 modules/road.c:66 modules/rocket_pad.c:180 #: modules/track.c:57 msgid "Steel" msgstr "" #: modules/commune.c:163 modules/rail.c:71 modules/recycle.c:191 #: modules/road.c:68 modules/track.c:59 msgid "Waste" msgstr "" #: modules/cricket.c:107 msgid "Cricket Pitch" msgstr "" #: modules/firestation.c:126 msgid "Fire Station" msgstr "" #: modules/health_centre.c:73 msgid "Health Centre" msgstr "" #: modules/heavy_industry.c:329 msgid "Heavy" msgstr "" #: modules/heavy_industry.c:330 modules/light_industry.c:338 msgid "Industry" msgstr "" #: modules/heavy_industry.c:337 msgid "Grid" msgstr "" #: modules/heavy_industry.c:340 modules/light_industry.c:342 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "NO" msgstr "" #: modules/heavy_industry.c:343 modules/light_industry.c:343 #: modules/organic_farm.c:186 modules/recycle.c:183 modules/residence.c:285 msgid "Power" msgstr "" #: modules/heavy_industry.c:345 modules/light_industry.c:345 msgid "Output" msgstr "" #: modules/heavy_industry.c:346 modules/light_industry.c:347 msgid "Store" msgstr "" #: modules/light_industry.c:337 msgid "Light" msgstr "" #: modules/light_industry.c:342 modules/organic_farm.c:182 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "YES" msgstr "" #: modules/mill.c:110 msgid "Textile Mill" msgstr "" #: modules/mill.c:117 modules/port.c:215 modules/rail.c:59 modules/road.c:56 #: modules/track.c:47 msgid "Food" msgstr "" #: modules/monument.c:69 msgid "Wisdom Bestowed" msgstr "" #: modules/monument.c:73 #, c-format msgid "% Complete" msgstr "" #: modules/oremine.c:192 msgid "Ore Mine" msgstr "" #: modules/organic_farm.c:178 #, c-format msgid "Organic Farm" msgstr "" #: modules/organic_farm.c:184 msgid "NO " msgstr "" #: modules/organic_farm.c:191 msgid "Prod" msgstr "" #: modules/power_line.c:57 msgid "Power Line" msgstr "" #: modules/rail.c:56 msgid "Rail" msgstr "" #: modules/recycle.c:176 msgid "Recycling" msgstr "" #: modules/recycle.c:177 msgid "Center" msgstr "" #: modules/residence.c:278 msgid "Residence" msgstr "" #: modules/residence.c:282 msgid "People" msgstr "" #: modules/residence.c:288 msgid "Fed" msgstr "" #: modules/residence.c:291 msgid "Employed" msgstr "" #: modules/residence.c:294 msgid "Health Cvr" msgstr "" #: modules/residence.c:304 msgid "poor" msgstr "" #: modules/residence.c:305 msgid "Job" msgstr "" #: modules/rocket_pad.c:169 msgid "Rocket Pad" msgstr "" #: modules/rocket_pad.c:172 msgid "Completion" msgstr "" #: modules/school.c:58 msgid "Lessons Learned" msgstr "" #: modules/solar_power.c:52 msgid "Solar" msgstr "" #: modules/substation.c:102 msgid "Local Demand" msgstr "" #: modules/substation.c:106 modules/windmill.c:102 msgid "Grid Status" msgstr "" #: modules/substation.c:109 modules/windmill.c:105 msgid "T. Cap." msgstr "" #: modules/substation.c:112 modules/windmill.c:108 msgid "A. Cap." msgstr "" #: modules/substation.c:115 modules/windmill.c:96 modules/windmill.c:111 msgid "Demand" msgstr "" #: modules/tip.c:118 msgid "Landfill" msgstr "" #: modules/tip.c:121 msgid "Last Month" msgstr "" #: modules/tip.c:122 msgid "Tons" msgstr "" #: modules/tip.c:123 msgid "Percent" msgstr "" #: modules/tip.c:126 #, c-format msgid "% Filled" msgstr "" #: modules/university.c:75 msgid "Tech Produced" msgstr "" #: modules/water.c:30 msgid "Navigable" msgstr "" #: modules/windmill.c:90 msgid "Local Status" msgstr "" #: modules/windmill.c:93 msgid "Prod." msgstr "" lincity-1.13.1/po/ca.po0000644000175000017500000006246610073426330011546 00000000000000# Catalan translations for Lincity package. # Copyright (C) 2003 THE Lincity'S COPYRIGHT HOLDER # This file is distributed under the same license as the Lincity package. # , 2003. # msgid "" msgstr "" "Project-Id-Version: Lincity 1.12pre51\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-07-08 23:27-0600\n" "PO-Revision-Date: 2003-02-23 01:00-0500\n" "Last-Translator: \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" #: cliglobs.c:56 msgid "Jan" msgstr "JAN" #: cliglobs.c:56 msgid "Feb" msgstr "FEB" #: cliglobs.c:56 msgid "Mar" msgstr "MAR" #: cliglobs.c:56 msgid "Apr" msgstr "APR" #: cliglobs.c:57 msgid "May" msgstr "" #: cliglobs.c:57 msgid "Jun" msgstr "" #: cliglobs.c:57 msgid "Jul" msgstr "" #: cliglobs.c:57 msgid "Aug" msgstr "" #: cliglobs.c:58 msgid "Sep" msgstr "" #: cliglobs.c:58 msgid "Oct" msgstr "" #: cliglobs.c:58 msgid "Nov" msgstr "" #: cliglobs.c:58 msgid "Dec" msgstr "" #: engine.c:145 msgid "You can't build a tip here" msgstr "" #: engine.c:146 engine.c:177 msgid "This area was once a landfill" msgstr "" #: engine.c:147 engine.c:178 engine.c:185 screen.c:2284 screen.c:2288 #: screen.c:2358 screen.c:2362 msgid "OK" msgstr "" #: engine.c:176 engine.c:183 msgid "You can't build a mine here" msgstr "" #: engine.c:184 msgid "There is no ore left at this site" msgstr "" #: engine.c:670 msgid "It's at a power line." msgstr "" #: engine.c:672 msgid "It's at a solar power station." msgstr "" #: engine.c:674 msgid "It's at a substation." msgstr "" #: engine.c:676 msgid "It's at a residential area." msgstr "" #: engine.c:678 msgid "It's at a farm." msgstr "" #: engine.c:680 msgid "It's at a market." msgstr "" #: engine.c:682 msgid "It's at a track." msgstr "" #: engine.c:684 msgid "It's at a coal mine." msgstr "" #: engine.c:686 msgid "It's at a railway." msgstr "" #: engine.c:688 msgid "It's at a coal power station." msgstr "" #: engine.c:690 msgid "It's at a road." msgstr "" #: engine.c:692 msgid "It's at light industry." msgstr "" #: engine.c:694 msgid "It's at a university." msgstr "" #: engine.c:696 msgid "It's at a commune." msgstr "" #: engine.c:698 msgid "It's at a tip." msgstr "" #: engine.c:700 msgid "It's at a port." msgstr "" #: engine.c:702 msgid "It's at a steel works." msgstr "" #: engine.c:704 msgid "It's at a recycle centre." msgstr "" #: engine.c:706 msgid "It's at a health centre." msgstr "" #: engine.c:708 msgid "It's at a rocket site." msgstr "" #: engine.c:710 msgid "It's at a windmill." msgstr "" #: engine.c:712 msgid "It's at a school." msgstr "" #: engine.c:714 msgid "It's at a blacksmith." msgstr "" #: engine.c:716 msgid "It's at a mill." msgstr "" #: engine.c:718 msgid "It's at a pottery." msgstr "" #: engine.c:720 msgid "It's at a fire station!!!." msgstr "" #: engine.c:722 msgid "It's at a cricket pitch!!!." msgstr "" #: engine.c:724 msgid "It's at a shanty town." msgstr "" #: engine.c:726 msgid "UNKNOWN!" msgstr "" #: fileutil.c:299 fileutil.c:349 msgid "Error. Can't find LINCITY_HOME" msgstr "" #: fileutil.c:570 msgid "Error verifying package. Can't find colour.pal." msgstr "" #: fileutil.c:589 fileutil.c:598 #, c-format msgid "Couldn't create the save directory %s\n" msgstr "" #: fileutil.c:644 #, c-format msgid "Out of memory: malloc failure\n" msgstr "" #: geometry.c:536 msgid "Menu" msgstr "" #: geometry.c:561 msgid "Help" msgstr "" #: geometry.c:586 msgid "Stats" msgstr "" #: lchelp.c:267 msgid "Sorry, lincity cannot run without this directory. Exiting." msgstr "" #: lchelp.c:363 msgid "tbutton 4 387 return-1 BACK" msgstr "" #: lchelp.c:367 msgid "tbutton 370 387 return-2 OUT" msgstr "" #: lcsvga.c:243 lcx11.c:453 #, c-format msgid "An error has occurred. The description is below...\n" msgstr "" #: lcsvga.c:247 lcx11.c:457 #, c-format msgid "Program aborting...\n" msgstr "" #: lcwin32.c:57 msgid "ERROR" msgstr "" #: lcx11.c:310 #, c-format msgid "Version %s\n" msgstr "" #: lcx11.c:395 #, c-format msgid "xlincity, Version %s, (Copyright) IJ Peters - copying policy GNU GPL" msgstr "" #: ldsvgui.c:204 msgid "Transport overwrite" msgstr "" #: ldsvgui.c:205 msgid "Popup info to dialog boxes" msgstr "" #: ldsvgui.c:206 msgid "Time multiplexed stats windows" msgstr "" #: ldsvgui.c:208 msgid "Confine X pointer" msgstr "" #: ldsvgui.c:223 msgid "OUT" msgstr "" #: ldsvgui.c:288 msgid "Save a scene" msgstr "" #: ldsvgui.c:290 msgid "Choose the number of the scene you want to save" msgstr "" #: ldsvgui.c:292 ldsvgui.c:384 ldsvgui.c:654 msgid "Press space to cancel." msgstr "" #: ldsvgui.c:316 msgid "Type comment for the saved scene" msgstr "" #: ldsvgui.c:318 msgid "The comment may be up to 40 characters" msgstr "" #: ldsvgui.c:320 msgid "and may contain spaces or % . - + ," msgstr "" #: ldsvgui.c:329 msgid "Saving city scene... please wait" msgstr "" #: ldsvgui.c:374 msgid "Load a file" msgstr "" #: ldsvgui.c:376 msgid "Choose the number of the scene you want" msgstr "" #: ldsvgui.c:378 msgid "Entries coloured red are either not there," msgstr "" #: ldsvgui.c:380 msgid "or they are from an earlier version, they" msgstr "" #: ldsvgui.c:382 msgid "might not load properly." msgstr "" #: ldsvgui.c:408 ldsvgui.c:679 msgid "No scene." msgstr "" #: ldsvgui.c:409 ldsvgui.c:680 msgid "There is no save scene with this number." msgstr "" #: ldsvgui.c:410 ldsvgui.c:681 msgid "Do you want to" msgstr "" #: ldsvgui.c:411 ldsvgui.c:682 msgid "try again?" msgstr "" #: ldsvgui.c:422 ldsvgui.c:693 msgid "Loading Scene" msgstr "" #: ldsvgui.c:423 ldsvgui.c:694 msgid "Do you want to load the scene" msgstr "" #: ldsvgui.c:425 ldsvgui.c:696 msgid "and forget the current game?" msgstr "" #: ldsvgui.c:428 ldsvgui.c:699 msgid "Loading scene... please wait" msgstr "" #: ldsvgui.c:469 #, c-format msgid "Couldn't find the save directory %s\n" msgstr "" #: ldsvgui.c:650 msgid "Choose network server" msgstr "" #: ldsvgui.c:652 msgid "Please enter the address and port of the server" msgstr "" #: ldsvguts.c:124 #, c-format msgid "Save file <%s> - " msgstr "" #: ldsvguts.c:125 msgid "Can't open save file!" msgstr "" #: ldsvguts.c:130 msgid "Saving scene" msgstr "" #: ldsvguts.c:357 #, c-format msgid "Can't open <%s> (gzipped)" msgstr "" #: ldsvguts.c:375 msgid "Loading scene" msgstr "" #: lintypes.c:22 msgid "Empty" msgstr "" #: lintypes.c:34 msgid "Power line" msgstr "" #: lintypes.c:46 msgid "Solar PS" msgstr "" #: lintypes.c:58 modules/substation.c:98 msgid "Substation" msgstr "" #: lintypes.c:70 msgid "Residential LL" msgstr "" #: lintypes.c:82 msgid "Farm" msgstr "" #: lintypes.c:94 screen.c:2124 msgid "Market" msgstr "" #: lintypes.c:106 modules/track.c:44 msgid "Track" msgstr "" #: lintypes.c:118 msgid "Coalmine" msgstr "" #: lintypes.c:130 msgid "Railway" msgstr "" #: lintypes.c:142 msgid "Coal PS" msgstr "" #: lintypes.c:154 modules/road.c:53 msgid "Road" msgstr "" #: lintypes.c:166 msgid "Lt. Industry" msgstr "" #: lintypes.c:178 modules/university.c:73 msgid "University" msgstr "" #: lintypes.c:190 modules/commune.c:151 msgid "Commune" msgstr "" #: lintypes.c:202 msgid "Ore mine" msgstr "" #: lintypes.c:214 msgid "Rubbish tip" msgstr "" #: lintypes.c:226 screen.c:2126 modules/port.c:210 msgid "Port" msgstr "" #: lintypes.c:238 msgid "Hv. Industry" msgstr "" #: lintypes.c:250 msgid "Park" msgstr "" #: lintypes.c:262 mps.c:542 msgid "Recycle" msgstr "" #: lintypes.c:274 modules/water.c:26 msgid "Water" msgstr "" #: lintypes.c:286 msgid "Health centre" msgstr "" #: lintypes.c:298 msgid "Rocket pad" msgstr "" #: lintypes.c:310 mps.c:532 modules/windmill.c:83 msgid "Windmill" msgstr "" #: lintypes.c:322 modules/monument.c:63 msgid "Monument" msgstr "" #: lintypes.c:334 modules/school.c:56 msgid "School" msgstr "" #: lintypes.c:346 modules/blacksmith.c:103 msgid "Blacksmith" msgstr "" #: lintypes.c:358 msgid "Mill" msgstr "" #: lintypes.c:370 modules/pottery.c:126 msgid "Pottery" msgstr "" #: lintypes.c:382 msgid "Fire sta'n" msgstr "" #: lintypes.c:394 msgid "Cricket pitch" msgstr "" #: lintypes.c:407 msgid "Burnt" msgstr "" #: lintypes.c:420 msgid "Shanty town" msgstr "" #: lintypes.c:433 mps.c:413 modules/residence.c:297 msgid "Fire" msgstr "" #: lintypes.c:446 msgid "Used" msgstr "" #: lintypes.c:458 msgid "Residential ML" msgstr "" #: lintypes.c:470 msgid "Residential HL" msgstr "" #: lintypes.c:482 lintypes.c:494 lintypes.c:506 msgid "Residential" msgstr "" #: main.c:262 msgid "Loading the game" msgstr "" #: main.c:272 msgid "Creating pixmaps" msgstr "" #: main.c:675 msgid "Quit The Game?" msgstr "" #: main.c:676 msgid "Do you really want to quit?" msgstr "" #: main.c:677 msgid "If you want to save the game select NO." msgstr "" #. TRANSLATORS: Test mode is like using "cheat codes" #: main.c:713 msgid "TEST" msgstr "" #: main.c:713 msgid "You have pressed a test key" msgstr "" #: main.c:714 msgid "You will only see this message once" msgstr "" #: main.c:715 msgid "Do you really want to play in test mode..." msgstr "" #: main.c:740 #, c-format msgid "Unable to open %s\n" msgstr "" #: main.c:745 #, c-format msgid "----- IN TEST MODE -------\n" msgstr "" #: main.c:746 #, c-format msgid "Game statistics from LinCity Version %s\n" msgstr "" #: main.c:748 #, c-format msgid "Initial loaded scene - %s\n" msgstr "" #: main.c:750 #, c-format msgid "Economy is sustainable\n" msgstr "" #: main.c:751 #, c-format msgid "Population %d of which %d are not housed.\n" msgstr "" #: main.c:754 #, c-format msgid "Max population %d Number evacuated %d Total births %d\n" msgstr "" #: main.c:757 #, c-format msgid " Date %s %04d Money %8d Tech-level %5.1f (%5.1f)\n" msgstr "" #: main.c:762 #, c-format msgid " Deaths by starvation %7d History %8.3f\n" msgstr "" #: main.c:765 #, c-format msgid "Deaths from pollution %7d History %8.3f\n" msgstr "" #: main.c:767 #, c-format msgid "Years of unemployment %7d History %8.3f\n" msgstr "" #: main.c:769 #, c-format msgid "Rockets launched %2d Successful launches %2d\n" msgstr "" #: main.c:772 #, c-format msgid " Residences %4d Markets %4d Farms %4d\n" msgstr "" #: main.c:781 #, c-format msgid " Tracks %4d Roads %4d Rail %4d\n" msgstr "" #: main.c:784 #, c-format msgid " Potteries %4d Blacksmiths %4d Mills %4d\n" msgstr "" #: main.c:787 #, c-format msgid " Monuments %4d Schools %4d Universities %4d\n" msgstr "" #: main.c:790 #, c-format msgid " Fire stations %4d Parks %4d Cricket gnds %4d\n" msgstr "" #: main.c:793 #, c-format msgid " Coal mines %4d Ore mines %4d Communes %4d\n" msgstr "" #: main.c:796 #, c-format msgid " Windmills %4d Coal powers %4d Solar powers %4d\n" msgstr "" #: main.c:800 #, c-format msgid " Substations %4d Power lines %4d Ports %4d\n" msgstr "" #: main.c:803 #, c-format msgid " Light inds %4d Heavy inds %4d Recyclers %4d\n" msgstr "" #: main.c:806 #, c-format msgid "Health centres %4d Tips %4d Shanties %4d\n" msgstr "" #: module_buttons.c:481 #, c-format msgid "Bulldoze - cost varies" msgstr "" #: module_buttons.c:483 #, c-format msgid "%s %s Bulldoze %s" msgstr "" #. TRANSLATORS: The part about the cup of tea is one of Ian's #. jokes, but the part about ports needing to be connected #. to rivers is true. #: mouse.c:587 mouse.c:766 mouse.c:774 mouse.c:782 msgid "WARNING" msgstr "" #: mouse.c:588 msgid "Ports need to be" msgstr "" #: mouse.c:589 msgid "connected to rivers!" msgstr "" #: mouse.c:590 msgid "Want to make a cup of tea?" msgstr "" #: mouse.c:591 msgid "TEA BREAK" msgstr "" #: mouse.c:592 msgid "Boil->pour->wait->stir" msgstr "" #: mouse.c:593 msgid "stir->pour->stir->wait->drink...ahhh" msgstr "" #: mouse.c:594 msgid "Have you finished yet?" msgstr "" #: mouse.c:767 msgid "Bulldozing a monument costs" msgstr "" #: mouse.c:768 msgid "a lot of money." msgstr "" #: mouse.c:769 mouse.c:777 mouse.c:785 msgid "Want to bulldoze?" msgstr "" #: mouse.c:775 msgid "Bulldozing a section of river" msgstr "" #: mouse.c:776 msgid "costs a lot of money." msgstr "" #: mouse.c:783 msgid "Bulldozing a shanty town costs a" msgstr "" #: mouse.c:784 msgid "lot of money and may cause a fire." msgstr "" #. TRANSLATORS: Don't translate the leading "text" #: mouse.c:984 #, c-format msgid "text -1 20 Choose the type of residence you want\n" msgstr "" #: mouse.c:988 #, c-format msgid "text -1 45 (LB=Low Birthrate HB=High Birthrate)\n" msgstr "" #: mouse.c:990 #, c-format msgid "text -1 55 (LD=Low Deathrate HD=High Deathrate)\n" msgstr "" #: mouse.c:992 #, c-format msgid "text -1 85 Low Tech\n" msgstr "" #: mouse.c:995 #, c-format msgid "text 68 106 Cost %4d\n" msgstr "" #. TRANSLATORS: Only translate "pop" <> #: mouse.c:999 #, c-format msgid "tbutton 82 180 return1 pop 50\n" msgstr "" #. TRANSLATORS: Only translate LB, HD (low birth, high death) #: mouse.c:1001 #, c-format msgid "text 89 195 LB HD\n" msgstr "" #: mouse.c:1004 #, c-format msgid "text 155 106 Cost %4d\n" msgstr "" #: mouse.c:1007 #, c-format msgid "tbutton 164 180 return2 pop 100\n" msgstr "" #: mouse.c:1008 #, c-format msgid "text 175 195 HB LD\n" msgstr "" #: mouse.c:1011 #, c-format msgid "text 238 106 Cost %4d\n" msgstr "" #: mouse.c:1014 #, c-format msgid "tbutton 250 180 return3 pop 200\n" msgstr "" #: mouse.c:1015 #, c-format msgid "text 261 195 HB HD\n" msgstr "" #: mouse.c:1017 #, c-format msgid "text -1 215 Click on one to select\n" msgstr "" #: mouse.c:1021 #, c-format msgid "text -1 255 High Tech\n" msgstr "" #: mouse.c:1024 #, c-format msgid "text 68 276 Cost %4d\n" msgstr "" #: mouse.c:1027 #, c-format msgid "tbutton 78 350 return4 pop 100\n" msgstr "" #: mouse.c:1028 #, c-format msgid "text 89 365 LB HD\n" msgstr "" #: mouse.c:1031 #, c-format msgid "text 155 276 Cost %4d\n" msgstr "" #: mouse.c:1034 #, c-format msgid "tbutton 164 350 return5 pop 200\n" msgstr "" #: mouse.c:1035 #, c-format msgid "text 175 365 HB LD\n" msgstr "" #: mouse.c:1038 #, c-format msgid "text 238 276 Cost %4d\n" msgstr "" #: mouse.c:1041 #, c-format msgid "tbutton 250 350 return6 pop 400\n" msgstr "" #: mouse.c:1042 #, c-format msgid "text 261 365 HB HD\n" msgstr "" #: mouse.c:1270 #, c-format msgid "Can't build %s over that!" msgstr "" #: mouse.c:1273 #, c-format msgid "%d sections of %s will cost %3d to build" msgstr "" #: mps.c:411 msgid "Coverage" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2226 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 msgid "Yes" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2227 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 msgid "No" msgstr "" #: mps.c:416 msgid "Health" msgstr "" #: mps.c:419 mps.c:540 modules/residence.c:300 msgid "Cricket" msgstr "" #: mps.c:421 modules/residence.c:302 msgid "Pollution" msgstr "" #: mps.c:424 msgid "clear" msgstr "" #: mps.c:426 modules/residence.c:304 msgid "good" msgstr "" #: mps.c:428 msgid "fair" msgstr "" #: mps.c:430 msgid "smelly" msgstr "" #: mps.c:432 msgid "smokey" msgstr "" #: mps.c:434 msgid "smoggy" msgstr "" #: mps.c:436 msgid "bad" msgstr "" #: mps.c:438 msgid "very bad" msgstr "" #: mps.c:440 msgid "death!" msgstr "" #: mps.c:445 msgid "Bulldoze Cost" msgstr "" #: mps.c:448 msgid "N/A" msgstr "" #: mps.c:464 msgid "Tax Income" msgstr "" #: mps.c:468 msgid "Income" msgstr "" #: mps.c:472 modules/blacksmith.c:111 modules/coal_power.c:97 #: modules/coal_power.c:111 modules/commune.c:157 modules/heavy_industry.c:335 #: modules/heavy_industry.c:350 modules/mill.c:119 modules/port.c:219 #: modules/pottery.c:137 modules/rail.c:63 modules/road.c:60 #: modules/track.c:51 msgid "Coal" msgstr "" #: mps.c:476 modules/blacksmith.c:109 modules/cricket.c:112 #: modules/firestation.c:131 modules/health_centre.c:78 modules/mill.c:115 #: modules/port.c:227 modules/pottery.c:133 modules/rail.c:65 #: modules/road.c:62 modules/rocket_pad.c:178 modules/school.c:64 #: modules/track.c:53 modules/university.c:83 msgid "Goods" msgstr "" #: mps.c:480 msgid "Export" msgstr "" #: mps.c:484 msgid "Expenses" msgstr "" #: mps.c:488 msgid "Unemp." msgstr "" #: mps.c:492 msgid "Transport" msgstr "" #: mps.c:496 msgid "Imports" msgstr "" #: mps.c:500 msgid "Others" msgstr "" #: mps.c:505 msgid "Net" msgstr "" #: mps.c:515 msgid "Other Costs" msgstr "" #: mps.c:520 msgid "For year" msgstr "" #: mps.c:524 msgid "Interest" msgstr "" #: mps.c:526 msgid "Schools" msgstr "" #: mps.c:528 msgid "Univers." msgstr "" #: mps.c:530 msgid "Deaths" msgstr "" #: mps.c:534 msgid "Hospital" msgstr "" #: mps.c:536 msgid "Rockets" msgstr "" #: mps.c:538 msgid "Fire Stn" msgstr "" #: mps.c:552 msgid "Population" msgstr "" #: mps.c:554 modules/port.c:235 msgid "Total" msgstr "" #: mps.c:555 msgid "Housed" msgstr "" #: mps.c:556 msgid "Homeless" msgstr "" #: mps.c:557 msgid "Shanties" msgstr "" #: mps.c:558 msgid "Unn Dths" msgstr "" #: mps.c:559 screen.c:1238 msgid "Unemployment" msgstr "" #: mps.c:560 msgid "Claims" msgstr "" #: mps.c:561 mps.c:566 msgid "Rate" msgstr "" #: mps.c:563 msgid "Starvation" msgstr "" #: mps.c:564 msgid "Cases" msgstr "" #: mps.c:577 msgid "PEOPLE" msgstr "" #: mps.c:578 msgid "Pop" msgstr "" #: mps.c:579 msgid "Unnat death" msgstr "" #: screen.c:861 msgid "Coal survey" msgstr "" #: screen.c:862 msgid "This will cost you 1 million" msgstr "" #: screen.c:863 msgid "After that it's is free to call again" msgstr "" #: screen.c:864 msgid "Do coal survey?" msgstr "" #: screen.c:1043 msgid "Land Use " msgstr "" #: screen.c:1098 msgid "Pollution " msgstr "" #: screen.c:1130 msgid "Fire cover " msgstr "" #: screen.c:1166 msgid "Crickt cover" msgstr "" #: screen.c:1202 msgid "Health cover" msgstr "" #: screen.c:1267 msgid "Starvation " msgstr "" #: screen.c:1297 msgid "Coal Reserve" msgstr "" #: screen.c:1315 msgid "Click here" msgstr "" #: screen.c:1316 msgid " to do " msgstr "" #: screen.c:1317 msgid "coal survey" msgstr "" #: screen.c:1358 msgid "Power " msgstr "" #: screen.c:1360 msgid "Power (none)" msgstr "" #: screen.c:1800 #, c-format msgid "Money: " msgstr "" #: screen.c:1822 #, c-format msgid "Date %s %04d " msgstr "" #: screen.c:1854 #, c-format msgid "%s%5.1f MINS/year V %s" msgstr "" #: screen.c:1855 screen.c:1859 msgid "TEST MODE" msgstr "" #: screen.c:1858 #, c-format msgid "%s%5.1f secs/year V %s " msgstr "" #: screen.c:2133 msgid "Buy" msgstr "" #: screen.c:2134 msgid "Sell" msgstr "" #: screen.c:2136 msgid "JOBS" msgstr "" #: screen.c:2138 msgid "FOOD" msgstr "" #: screen.c:2139 msgid "COAL" msgstr "" #: screen.c:2140 msgid "ORE" msgstr "" #: screen.c:2141 msgid "GOODS" msgstr "" #: screen.c:2142 msgid "STEEL" msgstr "" #. TRANSLATORS: #. MIN=Mining, PRT=Import/export from port, #. MNY=Money, POP=Population, TEC=Technology, #. FIR=Fire coverage #. #: screen.c:2464 msgid "MIN" msgstr "" #: screen.c:2467 msgid "PRT" msgstr "" #: screen.c:2470 msgid "MNY" msgstr "" #: screen.c:2473 msgid "POP" msgstr "" #: screen.c:2476 msgid "TEC" msgstr "" #: screen.c:2479 msgid "FIR" msgstr "" #: screen.c:2592 msgid "ROCKET LAUNCH" msgstr "" #: screen.c:2593 msgid "You can launch the rocket now or wait until later." msgstr "" #: screen.c:2594 msgid "If you wait, it costs you *only* money to keep the" msgstr "" #: screen.c:2595 msgid "rocket ready. Launch?" msgstr "" #: screen.c:2601 msgid "Rocket ready to launch" msgstr "" #: screen.c:2602 msgid "You can launch it now or wait until later." msgstr "" #: screen.c:2603 msgid "If you wait it will continue costing you money." msgstr "" #: screen.c:2604 msgid "Launch it later by clicking on the rocket area." msgstr "" #: modules/blacksmith.c:106 modules/heavy_industry.c:352 #: modules/light_industry.c:353 modules/mill.c:112 modules/pottery.c:128 #: modules/recycle.c:180 modules/school.c:67 modules/university.c:85 msgid "Capacity" msgstr "" #: modules/blacksmith.c:108 modules/cricket.c:109 modules/firestation.c:128 #: modules/health_centre.c:75 modules/mill.c:114 modules/pottery.c:130 #: modules/recycle.c:188 modules/rocket_pad.c:175 modules/school.c:61 #: modules/university.c:80 msgid "Inventory" msgstr "" #: modules/coal_power.c:98 modules/solar_power.c:53 msgid "Power Station" msgstr "" #: modules/coal_power.c:102 modules/solar_power.c:57 msgid "Max Output" msgstr "" #: modules/coal_power.c:107 modules/solar_power.c:62 msgid "Current Output" msgstr "" #: modules/coal_power.c:113 modules/cricket.c:110 modules/firestation.c:129 #: modules/health_centre.c:76 modules/pottery.c:131 modules/rail.c:61 #: modules/road.c:58 modules/rocket_pad.c:176 modules/school.c:62 #: modules/track.c:49 modules/university.c:81 msgid "Jobs" msgstr "" #: modules/coal_power.c:115 modules/organic_farm.c:188 modules/recycle.c:185 #: modules/solar_power.c:66 modules/windmill.c:87 modules/windmill.c:98 msgid "Tech" msgstr "" #: modules/coal_power.c:117 modules/power_line.c:60 modules/solar_power.c:68 #: modules/substation.c:118 modules/windmill.c:114 msgid "Grid ID" msgstr "" #: modules/coalmine.c:176 msgid "Coal Mine" msgstr "" #: modules/coalmine.c:179 modules/oremine.c:195 msgid "Stock" msgstr "" #: modules/coalmine.c:183 modules/coalmine.c:185 modules/oremine.c:199 msgid "Reserve" msgstr "" #: modules/coalmine.c:185 msgid "EMPTY" msgstr "" #: modules/commune.c:154 msgid "Activity" msgstr "" #: modules/commune.c:159 modules/heavy_industry.c:348 #: modules/light_industry.c:349 modules/port.c:223 modules/pottery.c:135 #: modules/rail.c:67 modules/recycle.c:189 modules/road.c:64 #: modules/track.c:55 msgid "Ore" msgstr "" #: modules/commune.c:161 modules/light_industry.c:351 modules/port.c:231 #: modules/rail.c:69 modules/road.c:66 modules/rocket_pad.c:180 #: modules/track.c:57 msgid "Steel" msgstr "" #: modules/commune.c:163 modules/rail.c:71 modules/recycle.c:191 #: modules/road.c:68 modules/track.c:59 msgid "Waste" msgstr "" #: modules/cricket.c:107 msgid "Cricket Pitch" msgstr "" #: modules/firestation.c:126 msgid "Fire Station" msgstr "" #: modules/health_centre.c:73 msgid "Health Centre" msgstr "" #: modules/heavy_industry.c:329 msgid "Heavy" msgstr "" #: modules/heavy_industry.c:330 modules/light_industry.c:338 msgid "Industry" msgstr "" #: modules/heavy_industry.c:337 msgid "Grid" msgstr "" #: modules/heavy_industry.c:340 modules/light_industry.c:342 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "NO" msgstr "" #: modules/heavy_industry.c:343 modules/light_industry.c:343 #: modules/organic_farm.c:186 modules/recycle.c:183 modules/residence.c:285 msgid "Power" msgstr "" #: modules/heavy_industry.c:345 modules/light_industry.c:345 msgid "Output" msgstr "" #: modules/heavy_industry.c:346 modules/light_industry.c:347 msgid "Store" msgstr "" #: modules/light_industry.c:337 msgid "Light" msgstr "" #: modules/light_industry.c:342 modules/organic_farm.c:182 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "YES" msgstr "" #: modules/mill.c:110 msgid "Textile Mill" msgstr "" #: modules/mill.c:117 modules/port.c:215 modules/rail.c:59 modules/road.c:56 #: modules/track.c:47 msgid "Food" msgstr "" #: modules/monument.c:69 msgid "Wisdom Bestowed" msgstr "" #: modules/monument.c:73 #, c-format msgid "% Complete" msgstr "" #: modules/oremine.c:192 msgid "Ore Mine" msgstr "" #: modules/organic_farm.c:178 #, c-format msgid "Organic Farm" msgstr "" #: modules/organic_farm.c:184 msgid "NO " msgstr "" #: modules/organic_farm.c:191 msgid "Prod" msgstr "" #: modules/power_line.c:57 msgid "Power Line" msgstr "" #: modules/rail.c:56 msgid "Rail" msgstr "" #: modules/recycle.c:176 msgid "Recycling" msgstr "" #: modules/recycle.c:177 msgid "Center" msgstr "" #: modules/residence.c:278 msgid "Residence" msgstr "" #: modules/residence.c:282 msgid "People" msgstr "" #: modules/residence.c:288 #, fuzzy msgid "Fed" msgstr "FEB" #: modules/residence.c:291 msgid "Employed" msgstr "" #: modules/residence.c:294 msgid "Health Cvr" msgstr "" #: modules/residence.c:304 msgid "poor" msgstr "" #: modules/residence.c:305 msgid "Job" msgstr "" #: modules/rocket_pad.c:169 msgid "Rocket Pad" msgstr "" #: modules/rocket_pad.c:172 msgid "Completion" msgstr "" #: modules/school.c:58 msgid "Lessons Learned" msgstr "" #: modules/solar_power.c:52 msgid "Solar" msgstr "" #: modules/substation.c:102 msgid "Local Demand" msgstr "" #: modules/substation.c:106 modules/windmill.c:102 msgid "Grid Status" msgstr "" #: modules/substation.c:109 modules/windmill.c:105 msgid "T. Cap." msgstr "" #: modules/substation.c:112 modules/windmill.c:108 msgid "A. Cap." msgstr "" #: modules/substation.c:115 modules/windmill.c:96 modules/windmill.c:111 msgid "Demand" msgstr "" #: modules/tip.c:118 msgid "Landfill" msgstr "" #: modules/tip.c:121 msgid "Last Month" msgstr "" #: modules/tip.c:122 msgid "Tons" msgstr "" #: modules/tip.c:123 msgid "Percent" msgstr "" #: modules/tip.c:126 #, c-format msgid "% Filled" msgstr "" #: modules/university.c:75 msgid "Tech Produced" msgstr "" #: modules/water.c:30 msgid "Navigable" msgstr "" #: modules/windmill.c:90 msgid "Local Status" msgstr "" #: modules/windmill.c:93 msgid "Prod." msgstr "" #, fuzzy #~ msgid "Max" #~ msgstr "MAR" lincity-1.13.1/po/it.po0000644000175000017500000007555010073426330011575 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: lincity 1.12pre52\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-07-08 23:27-0600\n" "PO-Revision-Date: 2003-03-26 00:39-0500\n" "Last-Translator: kkk \n" "Language-Team: it_IT \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: cliglobs.c:56 msgid "Jan" msgstr "Gen" #: cliglobs.c:56 msgid "Feb" msgstr "Feb" #: cliglobs.c:56 msgid "Mar" msgstr "Mar" #: cliglobs.c:56 msgid "Apr" msgstr "Apr" #: cliglobs.c:57 msgid "May" msgstr "Mag" #: cliglobs.c:57 msgid "Jun" msgstr "Giu" #: cliglobs.c:57 msgid "Jul" msgstr "Lug" #: cliglobs.c:57 msgid "Aug" msgstr "Ago" #: cliglobs.c:58 msgid "Sep" msgstr "Set" #: cliglobs.c:58 msgid "Oct" msgstr "Ott" #: cliglobs.c:58 msgid "Nov" msgstr "Nov" #: cliglobs.c:58 msgid "Dec" msgstr "Dic" #: engine.c:145 msgid "You can't build a tip here" msgstr "" #: engine.c:146 engine.c:177 msgid "This area was once a landfill" msgstr "" #: engine.c:147 engine.c:178 engine.c:185 screen.c:2284 screen.c:2288 #: screen.c:2358 screen.c:2362 msgid "OK" msgstr "" #: engine.c:176 engine.c:183 msgid "You can't build a mine here" msgstr "" #: engine.c:184 #, fuzzy msgid "There is no ore left at this site" msgstr "Nessuno scenario salvato con questo numero." #: engine.c:670 msgid "It's at a power line." msgstr "" #: engine.c:672 msgid "It's at a solar power station." msgstr "" #: engine.c:674 msgid "It's at a substation." msgstr "" #: engine.c:676 msgid "It's at a residential area." msgstr "" #: engine.c:678 msgid "It's at a farm." msgstr "" #: engine.c:680 msgid "It's at a market." msgstr "" #: engine.c:682 msgid "It's at a track." msgstr "" #: engine.c:684 msgid "It's at a coal mine." msgstr "" #: engine.c:686 msgid "It's at a railway." msgstr "" #: engine.c:688 msgid "It's at a coal power station." msgstr "" #: engine.c:690 msgid "It's at a road." msgstr "" #: engine.c:692 msgid "It's at light industry." msgstr "" #: engine.c:694 msgid "It's at a university." msgstr "" #: engine.c:696 msgid "It's at a commune." msgstr "" #: engine.c:698 msgid "It's at a tip." msgstr "" #: engine.c:700 msgid "It's at a port." msgstr "" #: engine.c:702 msgid "It's at a steel works." msgstr "" #: engine.c:704 msgid "It's at a recycle centre." msgstr "" #: engine.c:706 msgid "It's at a health centre." msgstr "" #: engine.c:708 msgid "It's at a rocket site." msgstr "" #: engine.c:710 msgid "It's at a windmill." msgstr "" #: engine.c:712 msgid "It's at a school." msgstr "" #: engine.c:714 msgid "It's at a blacksmith." msgstr "" #: engine.c:716 msgid "It's at a mill." msgstr "" #: engine.c:718 msgid "It's at a pottery." msgstr "" #: engine.c:720 msgid "It's at a fire station!!!." msgstr "" #: engine.c:722 msgid "It's at a cricket pitch!!!." msgstr "" #: engine.c:724 msgid "It's at a shanty town." msgstr "" #: engine.c:726 msgid "UNKNOWN!" msgstr "" #: fileutil.c:299 fileutil.c:349 msgid "Error. Can't find LINCITY_HOME" msgstr "" #: fileutil.c:570 msgid "Error verifying package. Can't find colour.pal." msgstr "" #: fileutil.c:589 fileutil.c:598 #, fuzzy, c-format msgid "Couldn't create the save directory %s\n" msgstr "Non sono riuscito a trovare la directory per il salvataggio %s\n" #: fileutil.c:644 #, c-format msgid "Out of memory: malloc failure\n" msgstr "" #: geometry.c:536 msgid "Menu" msgstr "" #: geometry.c:561 msgid "Help" msgstr "" #: geometry.c:586 msgid "Stats" msgstr "" #: lchelp.c:267 msgid "Sorry, lincity cannot run without this directory. Exiting." msgstr "" #: lchelp.c:363 msgid "tbutton 4 387 return-1 BACK" msgstr "" #: lchelp.c:367 msgid "tbutton 370 387 return-2 OUT" msgstr "" #: lcsvga.c:243 lcx11.c:453 #, c-format msgid "An error has occurred. The description is below...\n" msgstr "" #: lcsvga.c:247 lcx11.c:457 #, c-format msgid "Program aborting...\n" msgstr "" #: lcwin32.c:57 msgid "ERROR" msgstr "" #: lcx11.c:310 #, fuzzy, c-format msgid "Version %s\n" msgstr "Versione=%d\n" #: lcx11.c:395 #, c-format msgid "xlincity, Version %s, (Copyright) IJ Peters - copying policy GNU GPL" msgstr "" #: ldsvgui.c:204 msgid "Transport overwrite" msgstr "" #: ldsvgui.c:205 msgid "Popup info to dialog boxes" msgstr "" #: ldsvgui.c:206 msgid "Time multiplexed stats windows" msgstr "" #: ldsvgui.c:208 msgid "Confine X pointer" msgstr "" #: ldsvgui.c:223 msgid "OUT" msgstr "" #: ldsvgui.c:288 msgid "Save a scene" msgstr "Salva uno scenario" #: ldsvgui.c:290 msgid "Choose the number of the scene you want to save" msgstr "Scegli il numero dello scenario che vuoi salvare" #: ldsvgui.c:292 ldsvgui.c:384 ldsvgui.c:654 msgid "Press space to cancel." msgstr "Premi spazio per cancellare." #: ldsvgui.c:316 msgid "Type comment for the saved scene" msgstr "Digita un commento per lo scenario salvato" #: ldsvgui.c:318 msgid "The comment may be up to 40 characters" msgstr "Il commento può avere fino a 40 caratteri" #: ldsvgui.c:320 msgid "and may contain spaces or % . - + ," msgstr "e può contenere spazi o % . - + ," #: ldsvgui.c:329 msgid "Saving city scene... please wait" msgstr "Salvataggio scenario città in corso... attendere" #: ldsvgui.c:374 msgid "Load a file" msgstr "Carica un file" #: ldsvgui.c:376 msgid "Choose the number of the scene you want" msgstr "Scegli il numero dello scenario desiderato" #: ldsvgui.c:378 msgid "Entries coloured red are either not there," msgstr "Gli elementi in rosso non sono in quella posizione," #: ldsvgui.c:380 msgid "or they are from an earlier version, they" msgstr "oppure vengono da una versione precedente, essi" #: ldsvgui.c:382 msgid "might not load properly." msgstr "potrebbero non caricarsi correttamente." #: ldsvgui.c:408 ldsvgui.c:679 msgid "No scene." msgstr "Nessuno scenario." #: ldsvgui.c:409 ldsvgui.c:680 msgid "There is no save scene with this number." msgstr "Nessuno scenario salvato con questo numero." #: ldsvgui.c:410 ldsvgui.c:681 msgid "Do you want to" msgstr "Vuoi" #: ldsvgui.c:411 ldsvgui.c:682 msgid "try again?" msgstr "provarci di nuovo?" #: ldsvgui.c:422 ldsvgui.c:693 msgid "Loading Scene" msgstr "Caricamento Scenario in corso" #: ldsvgui.c:423 ldsvgui.c:694 msgid "Do you want to load the scene" msgstr "Vuoi caricare lo scenario" #: ldsvgui.c:425 ldsvgui.c:696 msgid "and forget the current game?" msgstr "e abbandonare il gioco corrente?" #: ldsvgui.c:428 ldsvgui.c:699 msgid "Loading scene... please wait" msgstr "Caricamento scenario... attendere" #: ldsvgui.c:469 #, c-format msgid "Couldn't find the save directory %s\n" msgstr "Non sono riuscito a trovare la directory per il salvataggio %s\n" #: ldsvgui.c:650 msgid "Choose network server" msgstr "Scegli network server" #: ldsvgui.c:652 msgid "Please enter the address and port of the server" msgstr "Inserisci per favore l'indirizzo e la porta del server" #: ldsvguts.c:124 #, fuzzy, c-format msgid "Save file <%s> - " msgstr "Tcore file <%s> - " #: ldsvguts.c:125 #, fuzzy msgid "Can't open save file!" msgstr "Non posso aprirlo!" #: ldsvguts.c:130 #, fuzzy msgid "Saving scene" msgstr "Salva uno scenario" #: ldsvguts.c:357 #, fuzzy, c-format msgid "Can't open <%s> (gzipped)" msgstr "Non posso aprirlo!" #: ldsvguts.c:375 #, fuzzy msgid "Loading scene" msgstr "Caricamento Scenario in corso" #: lintypes.c:22 msgid "Empty" msgstr "" #: lintypes.c:34 msgid "Power line" msgstr "" #: lintypes.c:46 msgid "Solar PS" msgstr "" #: lintypes.c:58 modules/substation.c:98 #, fuzzy msgid "Substation" msgstr "Substazione[%d]=%d\n" #: lintypes.c:70 msgid "Residential LL" msgstr "" #: lintypes.c:82 msgid "Farm" msgstr "" #: lintypes.c:94 screen.c:2124 msgid "Market" msgstr "Mercato" #: lintypes.c:106 modules/track.c:44 msgid "Track" msgstr "" #: lintypes.c:118 msgid "Coalmine" msgstr "" #: lintypes.c:130 msgid "Railway" msgstr "" #: lintypes.c:142 msgid "Coal PS" msgstr "" #: lintypes.c:154 modules/road.c:53 msgid "Road" msgstr "" #: lintypes.c:166 msgid "Lt. Industry" msgstr "" #: lintypes.c:178 modules/university.c:73 msgid "University" msgstr "" #: lintypes.c:190 modules/commune.c:151 msgid "Commune" msgstr "" #: lintypes.c:202 msgid "Ore mine" msgstr "" #: lintypes.c:214 msgid "Rubbish tip" msgstr "" #: lintypes.c:226 screen.c:2126 modules/port.c:210 msgid "Port" msgstr "Porto" #: lintypes.c:238 msgid "Hv. Industry" msgstr "" #: lintypes.c:250 #, fuzzy msgid "Park" msgstr "Mercato" #: lintypes.c:262 mps.c:542 msgid "Recycle" msgstr "" #: lintypes.c:274 modules/water.c:26 msgid "Water" msgstr "" #: lintypes.c:286 msgid "Health centre" msgstr "" #: lintypes.c:298 msgid "Rocket pad" msgstr "" #: lintypes.c:310 mps.c:532 modules/windmill.c:83 msgid "Windmill" msgstr "" #: lintypes.c:322 modules/monument.c:63 msgid "Monument" msgstr "" #: lintypes.c:334 modules/school.c:56 msgid "School" msgstr "" #: lintypes.c:346 modules/blacksmith.c:103 msgid "Blacksmith" msgstr "" #: lintypes.c:358 msgid "Mill" msgstr "" #: lintypes.c:370 modules/pottery.c:126 msgid "Pottery" msgstr "" #: lintypes.c:382 msgid "Fire sta'n" msgstr "" #: lintypes.c:394 msgid "Cricket pitch" msgstr "" #: lintypes.c:407 msgid "Burnt" msgstr "" #: lintypes.c:420 msgid "Shanty town" msgstr "" #: lintypes.c:433 mps.c:413 modules/residence.c:297 msgid "Fire" msgstr "" #: lintypes.c:446 msgid "Used" msgstr "" #: lintypes.c:458 msgid "Residential ML" msgstr "" #: lintypes.c:470 msgid "Residential HL" msgstr "" #: lintypes.c:482 lintypes.c:494 lintypes.c:506 msgid "Residential" msgstr "" #: main.c:262 msgid "Loading the game" msgstr "Caricamento gioco in corso" #: main.c:272 msgid "Creating pixmaps" msgstr "Creazione pixmaps" #: main.c:675 msgid "Quit The Game?" msgstr "Uscire dal Gioco?" #: main.c:676 msgid "Do you really want to quit?" msgstr "Vuoi veramente uscire?" #: main.c:677 msgid "If you want to save the game select NO." msgstr "Se vuoi salvare il gioco seleziona NO." #. TRANSLATORS: Test mode is like using "cheat codes" #: main.c:713 msgid "TEST" msgstr "TEST" #: main.c:713 msgid "You have pressed a test key" msgstr "Hai premuto un pulsante di test" #: main.c:714 msgid "You will only see this message once" msgstr "Vedrai questo messaggio una sola volta" #: main.c:715 msgid "Do you really want to play in test mode..." msgstr "Vuoi veramente giocare in modalità test..." #: main.c:740 #, c-format msgid "Unable to open %s\n" msgstr "Impossibile aprire %s\n" #: main.c:745 #, c-format msgid "----- IN TEST MODE -------\n" msgstr "----- IN MODALITA' TEST -------\n" #: main.c:746 #, c-format msgid "Game statistics from LinCity Version %s\n" msgstr "Statistiche del gioco da LinCity Versione %s\n" #: main.c:748 #, c-format msgid "Initial loaded scene - %s\n" msgstr "Scenario iniziale caricato - %s\n" #: main.c:750 #, c-format msgid "Economy is sustainable\n" msgstr "L'economia è sostenibile\n" #: main.c:751 #, c-format msgid "Population %d of which %d are not housed.\n" msgstr "Popolazione di %d dei quali %d sono senza casa.\n" #: main.c:754 #, c-format msgid "Max population %d Number evacuated %d Total births %d\n" msgstr "Max popolazione %d Numero evacuati %d Nascite Totali %d\n" #: main.c:757 #, c-format msgid " Date %s %04d Money %8d Tech-level %5.1f (%5.1f)\n" msgstr " Data %s %04d Denaro %8d Livello Tecnologico %5.1f (%5.1f)\n" #: main.c:762 #, c-format msgid " Deaths by starvation %7d History %8.3f\n" msgstr " Morti per fame %7d Storia %8.3f\n" #: main.c:765 #, c-format msgid "Deaths from pollution %7d History %8.3f\n" msgstr "Morti per inquinamento %7d Storia %8.3f\n" #: main.c:767 #, c-format msgid "Years of unemployment %7d History %8.3f\n" msgstr "Anni di disoccupazione %7d Storia %8.3f\n" #: main.c:769 #, c-format msgid "Rockets launched %2d Successful launches %2d\n" msgstr "Razzi lanciati %2d Lanci riusciti %2d\n" #: main.c:772 #, c-format msgid " Residences %4d Markets %4d Farms %4d\n" msgstr " Residenze %4d Mercati %4d Fattorie %4d\n" #: main.c:781 #, c-format msgid " Tracks %4d Roads %4d Rail %4d\n" msgstr " Piste %4d Strade %4d Ferrovie %4d\n" #: main.c:784 #, c-format msgid " Potteries %4d Blacksmiths %4d Mills %4d\n" msgstr " Fabbriche Ceramica %4d Fabbri %4d Mulini %4d\n" #: main.c:787 #, c-format msgid " Monuments %4d Schools %4d Universities %4d\n" msgstr " Monumenti %4d Scuole %4d Università %4d\n" #: main.c:790 #, c-format msgid " Fire stations %4d Parks %4d Cricket gnds %4d\n" msgstr "" " Stazioni vigili fuoco %4d Parchi %4d Campi Cricket %4d\n" #: main.c:793 #, c-format msgid " Coal mines %4d Ore mines %4d Communes %4d\n" msgstr "" " Miniere Carbone %4d Miniere minerali %4d Comuni %4d\n" #: main.c:796 #, c-format msgid " Windmills %4d Coal powers %4d Solar powers %4d\n" msgstr "" " Mulini a Vento %4d Centrali a Carbone %4d Centrali Solari %4d\n" #: main.c:800 #, c-format msgid " Substations %4d Power lines %4d Ports %4d\n" msgstr " Substazioni %4d Linee Elettriche %4d Porti %4d\n" #: main.c:803 #, c-format msgid " Light inds %4d Heavy inds %4d Recyclers %4d\n" msgstr " Ind leggere %4d Ind pesanti %4d Riciclatori %4d\n" #: main.c:806 #, c-format msgid "Health centres %4d Tips %4d Shanties %4d\n" msgstr "Centri Salute %4d Discariche %4d Baracche %4d\n" #: module_buttons.c:481 #, c-format msgid "Bulldoze - cost varies" msgstr "" #: module_buttons.c:483 #, c-format msgid "%s %s Bulldoze %s" msgstr "" #. TRANSLATORS: The part about the cup of tea is one of Ian's #. jokes, but the part about ports needing to be connected #. to rivers is true. #: mouse.c:587 mouse.c:766 mouse.c:774 mouse.c:782 msgid "WARNING" msgstr "" #: mouse.c:588 msgid "Ports need to be" msgstr "" #: mouse.c:589 msgid "connected to rivers!" msgstr "" #: mouse.c:590 msgid "Want to make a cup of tea?" msgstr "" #: mouse.c:591 msgid "TEA BREAK" msgstr "" #: mouse.c:592 msgid "Boil->pour->wait->stir" msgstr "" #: mouse.c:593 msgid "stir->pour->stir->wait->drink...ahhh" msgstr "" #: mouse.c:594 msgid "Have you finished yet?" msgstr "" #: mouse.c:767 msgid "Bulldozing a monument costs" msgstr "" #: mouse.c:768 msgid "a lot of money." msgstr "" #: mouse.c:769 mouse.c:777 mouse.c:785 msgid "Want to bulldoze?" msgstr "" #: mouse.c:775 msgid "Bulldozing a section of river" msgstr "" #: mouse.c:776 msgid "costs a lot of money." msgstr "" #: mouse.c:783 msgid "Bulldozing a shanty town costs a" msgstr "" #: mouse.c:784 msgid "lot of money and may cause a fire." msgstr "" #. TRANSLATORS: Don't translate the leading "text" #: mouse.c:984 #, fuzzy, c-format msgid "text -1 20 Choose the type of residence you want\n" msgstr "Scegli il numero dello scenario desiderato" #: mouse.c:988 #, c-format msgid "text -1 45 (LB=Low Birthrate HB=High Birthrate)\n" msgstr "" #: mouse.c:990 #, c-format msgid "text -1 55 (LD=Low Deathrate HD=High Deathrate)\n" msgstr "" #: mouse.c:992 #, c-format msgid "text -1 85 Low Tech\n" msgstr "" #: mouse.c:995 #, c-format msgid "text 68 106 Cost %4d\n" msgstr "" #. TRANSLATORS: Only translate "pop" <> #: mouse.c:999 #, c-format msgid "tbutton 82 180 return1 pop 50\n" msgstr "" #. TRANSLATORS: Only translate LB, HD (low birth, high death) #: mouse.c:1001 #, c-format msgid "text 89 195 LB HD\n" msgstr "" #: mouse.c:1004 #, c-format msgid "text 155 106 Cost %4d\n" msgstr "" #: mouse.c:1007 #, c-format msgid "tbutton 164 180 return2 pop 100\n" msgstr "" #: mouse.c:1008 #, c-format msgid "text 175 195 HB LD\n" msgstr "" #: mouse.c:1011 #, c-format msgid "text 238 106 Cost %4d\n" msgstr "" #: mouse.c:1014 #, c-format msgid "tbutton 250 180 return3 pop 200\n" msgstr "" #: mouse.c:1015 #, c-format msgid "text 261 195 HB HD\n" msgstr "" #: mouse.c:1017 #, c-format msgid "text -1 215 Click on one to select\n" msgstr "" #: mouse.c:1021 #, c-format msgid "text -1 255 High Tech\n" msgstr "" #: mouse.c:1024 #, c-format msgid "text 68 276 Cost %4d\n" msgstr "" #: mouse.c:1027 #, c-format msgid "tbutton 78 350 return4 pop 100\n" msgstr "" #: mouse.c:1028 #, c-format msgid "text 89 365 LB HD\n" msgstr "" #: mouse.c:1031 #, c-format msgid "text 155 276 Cost %4d\n" msgstr "" #: mouse.c:1034 #, c-format msgid "tbutton 164 350 return5 pop 200\n" msgstr "" #: mouse.c:1035 #, c-format msgid "text 175 365 HB LD\n" msgstr "" #: mouse.c:1038 #, c-format msgid "text 238 276 Cost %4d\n" msgstr "" #: mouse.c:1041 #, c-format msgid "tbutton 250 350 return6 pop 400\n" msgstr "" #: mouse.c:1042 #, c-format msgid "text 261 365 HB HD\n" msgstr "" #: mouse.c:1270 #, c-format msgid "Can't build %s over that!" msgstr "" #: mouse.c:1273 #, c-format msgid "%d sections of %s will cost %3d to build" msgstr "" #: mps.c:411 msgid "Coverage" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2226 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 msgid "Yes" msgstr "" #: mps.c:412 mps.c:415 mps.c:418 screen.c:2227 modules/commune.c:156 #: modules/commune.c:158 modules/commune.c:160 modules/commune.c:162 #: modules/water.c:29 #, fuzzy msgid "No" msgstr "Nov" #: mps.c:416 msgid "Health" msgstr "" #: mps.c:419 mps.c:540 modules/residence.c:300 #, fuzzy msgid "Cricket" msgstr "Mercato" #: mps.c:421 modules/residence.c:302 msgid "Pollution" msgstr "" #: mps.c:424 msgid "clear" msgstr "" #: mps.c:426 modules/residence.c:304 msgid "good" msgstr "" #: mps.c:428 msgid "fair" msgstr "" #: mps.c:430 #, fuzzy msgid "smelly" msgstr "Vendi" #: mps.c:432 msgid "smokey" msgstr "" #: mps.c:434 msgid "smoggy" msgstr "" #: mps.c:436 msgid "bad" msgstr "" #: mps.c:438 msgid "very bad" msgstr "" #: mps.c:440 msgid "death!" msgstr "" #: mps.c:445 msgid "Bulldoze Cost" msgstr "" #: mps.c:448 msgid "N/A" msgstr "" #: mps.c:464 msgid "Tax Income" msgstr "" #: mps.c:468 msgid "Income" msgstr "" #: mps.c:472 modules/blacksmith.c:111 modules/coal_power.c:97 #: modules/coal_power.c:111 modules/commune.c:157 modules/heavy_industry.c:335 #: modules/heavy_industry.c:350 modules/mill.c:119 modules/port.c:219 #: modules/pottery.c:137 modules/rail.c:63 modules/road.c:60 #: modules/track.c:51 msgid "Coal" msgstr "" #: mps.c:476 modules/blacksmith.c:109 modules/cricket.c:112 #: modules/firestation.c:131 modules/health_centre.c:78 modules/mill.c:115 #: modules/port.c:227 modules/pottery.c:133 modules/rail.c:65 #: modules/road.c:62 modules/rocket_pad.c:178 modules/school.c:64 #: modules/track.c:53 modules/university.c:83 msgid "Goods" msgstr "" #: mps.c:480 #, fuzzy msgid "Export" msgstr "Porto" #: mps.c:484 msgid "Expenses" msgstr "" #: mps.c:488 msgid "Unemp." msgstr "" #: mps.c:492 msgid "Transport" msgstr "" #: mps.c:496 msgid "Imports" msgstr "" #: mps.c:500 msgid "Others" msgstr "" #: mps.c:505 msgid "Net" msgstr "" #: mps.c:515 msgid "Other Costs" msgstr "" #: mps.c:520 msgid "For year" msgstr "" #: mps.c:524 msgid "Interest" msgstr "" #: mps.c:526 msgid "Schools" msgstr "" #: mps.c:528 msgid "Univers." msgstr "" #: mps.c:530 msgid "Deaths" msgstr "" #: mps.c:534 msgid "Hospital" msgstr "" #: mps.c:536 msgid "Rockets" msgstr "" #: mps.c:538 msgid "Fire Stn" msgstr "" #: mps.c:552 #, fuzzy msgid "Population" msgstr "tpopolazione=%d\n" #: mps.c:554 modules/port.c:235 msgid "Total" msgstr "" #: mps.c:555 msgid "Housed" msgstr "" #: mps.c:556 msgid "Homeless" msgstr "" #: mps.c:557 msgid "Shanties" msgstr "" #: mps.c:558 msgid "Unn Dths" msgstr "" #: mps.c:559 screen.c:1238 msgid "Unemployment" msgstr "" #: mps.c:560 msgid "Claims" msgstr "" #: mps.c:561 mps.c:566 msgid "Rate" msgstr "" #: mps.c:563 #, fuzzy msgid "Starvation" msgstr "Substazione[%d]=%d\n" #: mps.c:564 msgid "Cases" msgstr "" #: mps.c:577 msgid "PEOPLE" msgstr "" #: mps.c:578 msgid "Pop" msgstr "" #: mps.c:579 msgid "Unnat death" msgstr "" #: screen.c:861 msgid "Coal survey" msgstr "" #: screen.c:862 msgid "This will cost you 1 million" msgstr "" #: screen.c:863 msgid "After that it's is free to call again" msgstr "" #: screen.c:864 msgid "Do coal survey?" msgstr "" #: screen.c:1043 msgid "Land Use " msgstr "" #: screen.c:1098 msgid "Pollution " msgstr "" #: screen.c:1130 msgid "Fire cover " msgstr "" #: screen.c:1166 msgid "Crickt cover" msgstr "" #: screen.c:1202 msgid "Health cover" msgstr "" #: screen.c:1267 msgid "Starvation " msgstr "" #: screen.c:1297 msgid "Coal Reserve" msgstr "" #: screen.c:1315 msgid "Click here" msgstr "" #: screen.c:1316 msgid " to do " msgstr "" #: screen.c:1317 #, fuzzy msgid "coal survey" msgstr "ricerca_carbone_effettuata=%d\n" #: screen.c:1358 msgid "Power " msgstr "" #: screen.c:1360 msgid "Power (none)" msgstr "" #: screen.c:1800 #, c-format msgid "Money: " msgstr "" #: screen.c:1822 #, c-format msgid "Date %s %04d " msgstr "" #: screen.c:1854 #, c-format msgid "%s%5.1f MINS/year V %s" msgstr "" #: screen.c:1855 screen.c:1859 #, fuzzy msgid "TEST MODE" msgstr "TEST" #: screen.c:1858 #, c-format msgid "%s%5.1f secs/year V %s " msgstr "" #: screen.c:2133 msgid "Buy" msgstr "Compra" #: screen.c:2134 msgid "Sell" msgstr "Vendi" #: screen.c:2136 msgid "JOBS" msgstr "LAVORI" #: screen.c:2138 msgid "FOOD" msgstr "CIBO" #: screen.c:2139 msgid "COAL" msgstr "CARBONE" #: screen.c:2140 msgid "ORE" msgstr "MINERALI" #: screen.c:2141 msgid "GOODS" msgstr "BENI" #: screen.c:2142 msgid "STEEL" msgstr "ACCIAIO" #. TRANSLATORS: #. MIN=Mining, PRT=Import/export from port, #. MNY=Money, POP=Population, TEC=Technology, #. FIR=Fire coverage #. #: screen.c:2464 msgid "MIN" msgstr "" #: screen.c:2467 msgid "PRT" msgstr "" #: screen.c:2470 msgid "MNY" msgstr "" #: screen.c:2473 msgid "POP" msgstr "" #: screen.c:2476 msgid "TEC" msgstr "" #: screen.c:2479 msgid "FIR" msgstr "" #: screen.c:2592 msgid "ROCKET LAUNCH" msgstr "" #: screen.c:2593 msgid "You can launch the rocket now or wait until later." msgstr "" #: screen.c:2594 msgid "If you wait, it costs you *only* money to keep the" msgstr "" #: screen.c:2595 msgid "rocket ready. Launch?" msgstr "" #: screen.c:2601 msgid "Rocket ready to launch" msgstr "" #: screen.c:2602 msgid "You can launch it now or wait until later." msgstr "" #: screen.c:2603 msgid "If you wait it will continue costing you money." msgstr "" #: screen.c:2604 msgid "Launch it later by clicking on the rocket area." msgstr "" #: modules/blacksmith.c:106 modules/heavy_industry.c:352 #: modules/light_industry.c:353 modules/mill.c:112 modules/pottery.c:128 #: modules/recycle.c:180 modules/school.c:67 modules/university.c:85 msgid "Capacity" msgstr "" #: modules/blacksmith.c:108 modules/cricket.c:109 modules/firestation.c:128 #: modules/health_centre.c:75 modules/mill.c:114 modules/pottery.c:130 #: modules/recycle.c:188 modules/rocket_pad.c:175 modules/school.c:61 #: modules/university.c:80 msgid "Inventory" msgstr "" #: modules/coal_power.c:98 modules/solar_power.c:53 #, fuzzy msgid "Power Station" msgstr "Substazione[%d]=%d\n" #: modules/coal_power.c:102 modules/solar_power.c:57 msgid "Max Output" msgstr "" #: modules/coal_power.c:107 modules/solar_power.c:62 msgid "Current Output" msgstr "" #: modules/coal_power.c:113 modules/cricket.c:110 modules/firestation.c:129 #: modules/health_centre.c:76 modules/pottery.c:131 modules/rail.c:61 #: modules/road.c:58 modules/rocket_pad.c:176 modules/school.c:62 #: modules/track.c:49 modules/university.c:81 msgid "Jobs" msgstr "" #: modules/coal_power.c:115 modules/organic_farm.c:188 modules/recycle.c:185 #: modules/solar_power.c:66 modules/windmill.c:87 modules/windmill.c:98 msgid "Tech" msgstr "" #: modules/coal_power.c:117 modules/power_line.c:60 modules/solar_power.c:68 #: modules/substation.c:118 modules/windmill.c:114 msgid "Grid ID" msgstr "" #: modules/coalmine.c:176 msgid "Coal Mine" msgstr "" #: modules/coalmine.c:179 modules/oremine.c:195 msgid "Stock" msgstr "" #: modules/coalmine.c:183 modules/coalmine.c:185 modules/oremine.c:199 msgid "Reserve" msgstr "" #: modules/coalmine.c:185 msgid "EMPTY" msgstr "" #: modules/commune.c:154 msgid "Activity" msgstr "" #: modules/commune.c:159 modules/heavy_industry.c:348 #: modules/light_industry.c:349 modules/port.c:223 modules/pottery.c:135 #: modules/rail.c:67 modules/recycle.c:189 modules/road.c:64 #: modules/track.c:55 msgid "Ore" msgstr "" #: modules/commune.c:161 modules/light_industry.c:351 modules/port.c:231 #: modules/rail.c:69 modules/road.c:66 modules/rocket_pad.c:180 #: modules/track.c:57 #, fuzzy msgid "Steel" msgstr "Vendi" #: modules/commune.c:163 modules/rail.c:71 modules/recycle.c:191 #: modules/road.c:68 modules/track.c:59 msgid "Waste" msgstr "" #: modules/cricket.c:107 msgid "Cricket Pitch" msgstr "" #: modules/firestation.c:126 #, fuzzy msgid "Fire Station" msgstr "Substazione[%d]=%d\n" #: modules/health_centre.c:73 msgid "Health Centre" msgstr "" #: modules/heavy_industry.c:329 msgid "Heavy" msgstr "" #: modules/heavy_industry.c:330 modules/light_industry.c:338 msgid "Industry" msgstr "" #: modules/heavy_industry.c:337 msgid "Grid" msgstr "" #: modules/heavy_industry.c:340 modules/light_industry.c:342 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "NO" msgstr "" #: modules/heavy_industry.c:343 modules/light_industry.c:343 #: modules/organic_farm.c:186 modules/recycle.c:183 modules/residence.c:285 #, fuzzy msgid "Power" msgstr "Porto" #: modules/heavy_industry.c:345 modules/light_industry.c:345 msgid "Output" msgstr "" #: modules/heavy_industry.c:346 modules/light_industry.c:347 msgid "Store" msgstr "" #: modules/light_industry.c:337 msgid "Light" msgstr "" #: modules/light_industry.c:342 modules/organic_farm.c:182 #: modules/recycle.c:182 modules/residence.c:284 modules/residence.c:287 #: modules/residence.c:290 modules/residence.c:293 modules/residence.c:296 #: modules/residence.c:299 msgid "YES" msgstr "" #: modules/mill.c:110 msgid "Textile Mill" msgstr "" #: modules/mill.c:117 modules/port.c:215 modules/rail.c:59 modules/road.c:56 #: modules/track.c:47 msgid "Food" msgstr "" #: modules/monument.c:69 msgid "Wisdom Bestowed" msgstr "" #: modules/monument.c:73 #, c-format msgid "% Complete" msgstr "" #: modules/oremine.c:192 msgid "Ore Mine" msgstr "" #: modules/organic_farm.c:178 #, c-format msgid "Organic Farm" msgstr "" #: modules/organic_farm.c:184 msgid "NO " msgstr "" #: modules/organic_farm.c:191 msgid "Prod" msgstr "" #: modules/power_line.c:57 #, fuzzy msgid "Power Line" msgstr "Porto" #: modules/rail.c:56 msgid "Rail" msgstr "" #: modules/recycle.c:176 msgid "Recycling" msgstr "" #: modules/recycle.c:177 msgid "Center" msgstr "" #: modules/residence.c:278 msgid "Residence" msgstr "" #: modules/residence.c:282 msgid "People" msgstr "" #: modules/residence.c:288 #, fuzzy msgid "Fed" msgstr "Feb" #: modules/residence.c:291 msgid "Employed" msgstr "" #: modules/residence.c:294 msgid "Health Cvr" msgstr "" #: modules/residence.c:304 msgid "poor" msgstr "" #: modules/residence.c:305 msgid "Job" msgstr "" #: modules/rocket_pad.c:169 msgid "Rocket Pad" msgstr "" #: modules/rocket_pad.c:172 msgid "Completion" msgstr "" #: modules/school.c:58 msgid "Lessons Learned" msgstr "" #: modules/solar_power.c:52 msgid "Solar" msgstr "" #: modules/substation.c:102 msgid "Local Demand" msgstr "" #: modules/substation.c:106 modules/windmill.c:102 msgid "Grid Status" msgstr "" #: modules/substation.c:109 modules/windmill.c:105 msgid "T. Cap." msgstr "" #: modules/substation.c:112 modules/windmill.c:108 msgid "A. Cap." msgstr "" #: modules/substation.c:115 modules/windmill.c:96 modules/windmill.c:111 msgid "Demand" msgstr "" #: modules/tip.c:118 #, fuzzy msgid "Landfill" msgstr "Carica un file" #: modules/tip.c:121 msgid "Last Month" msgstr "" #: modules/tip.c:122 msgid "Tons" msgstr "" #: modules/tip.c:123 msgid "Percent" msgstr "" #: modules/tip.c:126 #, c-format msgid "% Filled" msgstr "" #: modules/university.c:75 msgid "Tech Produced" msgstr "" #: modules/water.c:30 msgid "Navigable" msgstr "" #: modules/windmill.c:90 msgid "Local Status" msgstr "" #: modules/windmill.c:93 msgid "Prod." msgstr "" #, fuzzy #~ msgid "S store" #~ msgstr "Salvataggio tcore" #, fuzzy #~ msgid "Max" #~ msgstr "Mag" #, fuzzy #~ msgid " Steel" #~ msgstr "Vendi" #, fuzzy #~ msgid "Housed %" #~ msgstr "minerali_usati=%d\n" #~ msgid "Can't open %s for writing, can't continue\n" #~ msgstr "Non posso aprire %s in scrittura, impossibile continuare\n" #~ msgid "What!! can't open %s for reading after writing???\n" #~ msgstr "Cosa!! non posso aprire %s in lettura dopo la scrittura???\n" #~ msgid "Got mouse type: %d\n" #~ msgstr "Ottenuto tipo mouse: %d\n" #~ msgid "mappoint[%d][%d]b%d=%d\n" #~ msgstr "puntomappa[%d][%d]b%d=%d\n" #~ msgid "mappointpol[%d][%d]=%d\n" #~ msgstr "puntomappapol[%d][%d]=%d\n" #~ msgid "mappoint[%d][%d].type=%d\n" #~ msgstr "puntomappa[%d][%d].tipo=%d\n" #~ msgid "Origx=%d\n" #~ msgstr "Origx=%d\n" #~ msgid "Origy=%d\n" #~ msgstr "Origy=%d\n" #~ msgid "Total time=%d\n" #~ msgstr "Tempo totale=%d\n" #~ msgid "SustationX[%d]=%d\n" #~ msgstr "SubstazioneX[%d]=%d\n" #~ msgid "Num of substations=%d\n" #~ msgstr "N di substazioni=%d\n" #~ msgid "MarketX[%d]=%d\n" #~ msgstr "MercatoX[%d]=%d\n" #~ msgid "MarketY[%d]=%d\n" #~ msgstr "MercatoY[%d]=%d\n" #~ msgid "numof_markets=%d\n" #~ msgstr "num_mercati=%d\n" #~ msgid "people_pool=%d\n" #~ msgstr "people_pool=%d\n" #~ msgid "total_money=%d\n" #~ msgstr "denaro_totale=%d\n" #~ msgid "income_tax_rate=%d\n" #~ msgstr "percentuale_tassa_reddito=%d\n" #~ msgid "coal_tax_rate=%d\n" #~ msgstr "percentuale_tassa_carbone=%d\n" #~ msgid "dole_rate=%d\n" #~ msgstr "percentuale_sussidio_disoccup=%d\n" #~ msgid "transport_cost_rate=%d\n" #~ msgstr "percentuale_costo_trasporti=%d\n" #~ msgid "goods_tax_rate=%d\n" #~ msgstr "percentuale_tassa_beni=%d\n" #~ msgid "export_tax=%d\n" #~ msgstr "tassa_export=%d\n" #~ msgid "export_tax_rate=%d\n" #~ msgstr "percentuale_tassa_export=%d\n" #~ msgid "import_cost=%d\n" #~ msgstr "costo_import=%d\n" #~ msgid "import_cost_rate=%d\n" #~ msgstr "percentuale_costo_import=%d\n" #~ msgid "tech_level=%d\n" #~ msgstr "livello_tecnologico=%d\n" #~ msgid "tstarving_population=%d\n" #~ msgstr "tpopolazione_affamata=%d\n" #~ msgid "tunemployed_population=%d\n" #~ msgstr "tpopolazione_disoccupata=%d\n" #~ msgid "waste_goods=%d\n" #~ msgstr "beni_persi=%d\n" #~ msgid "power_made=%d\n" #~ msgstr "energia_prodotta=%d\n" #~ msgid "power_used=%d\n" #~ msgstr "energia_usata=%d\n" #~ msgid "coal_used=%d\n" #~ msgstr "carbone_usato=%d\n" #~ msgid "goods_made=%d\n" #~ msgstr "beni_prodotti=%d\n" #~ msgid "goods_used=%d\n" #~ msgstr "beni_usati=%d\n" #~ msgid "ore_made=%d\n" #~ msgstr "minerali_prodotti=%d\n" #~ msgid "diff_old_population=%d\n" #~ msgstr "differenza_vecchia_popolazione=%d\n" #~ msgid "rockets_launched=%d\n" #~ msgstr "razzi_lanciati=%d\n" #~ msgid "rockets_launched_success=%d\n" #~ msgstr "razzi_lanciati_con_successo=%d\n" lincity-1.13.1/po/ca.gmo0000644000175000017500000000074410073426330011701 00000000000000Ŝ•Dlˆ‰‘•:™ÔĜÜàAprFebJanMarProject-Id-Version: Lincity 1.12pre51 Report-Msgid-Bugs-To: POT-Creation-Date: 2004-07-08 23:27-0600 PO-Revision-Date: 2003-02-23 01:00-0500 Last-Translator: Language-Team: Catalan MIME-Version: 1.0 Content-Type: text/plain; charset=ASCII Content-Transfer-Encoding: 8bit APRFEBJANMARlincity-1.13.1/po/it.gmo0000644000175000017500000001440010073426330011724 00000000000000Ŝ•M„gìˆ<‰<Ĉ<<@<}<ş<÷<46q*¨<Ó , 0 4 8 = 'S /{ $Ğ  *á  * ; W f „ *œ Ç Ì  (Ö <˙ '< d  „ ˆ Œ  œ Ş È Ù Ŭ 7ä  * . 2 /6 .f • š ħ .À ï ġ  # ( , &1 (X  ˘ *µ à #ü  #=a)z ¤+Ż@Û9AVK˜Fä@+>lAĞ@í#.FR ™şÂÉÑ*ç0?Cƒ*•À*Äï %3?sx|-AŻ&ñ 9@DHL["yœ·ğ9ŭ 6$4[–³'Ċíġ09?C)H+r*žÉ*à &+ R!s'•/½íM@  %'6(L&I9=F#H"1:7KC, /B?>)4! A; 83GJ02-E5.$+ D<* Tracks %4d Roads %4d Rail %4d Monuments %4d Schools %4d Universities %4d Potteries %4d Blacksmiths %4d Mills %4d Windmills %4d Coal powers %4d Solar powers %4d Coal mines %4d Ore mines %4d Communes %4d Light inds %4d Heavy inds %4d Recyclers %4d Residences %4d Markets %4d Farms %4d Substations %4d Power lines %4d Ports %4d Date %s %04d Money %8d Tech-level %5.1f (%5.1f) Deaths by starvation %7d History %8.3f Fire stations %4d Parks %4d Cricket gnds %4d ----- IN TEST MODE ------- AprAugBuyCOALChoose network serverChoose the number of the scene you wantChoose the number of the scene you want to saveCouldn't find the save directory %s Creating pixmapsDeaths from pollution %7d History %8.3f DecDo you really want to play in test mode...Do you really want to quit?Do you want toDo you want to load the sceneEconomy is sustainable Entries coloured red are either not there,FOODFebGOODSGame statistics from LinCity Version %s Health centres %4d Tips %4d Shanties %4d If you want to save the game select NO.Initial loaded scene - %s JOBSJanJulJunLoad a fileLoading SceneLoading scene... please waitLoading the gameMarMarketMax population %d Number evacuated %d Total births %d MayNo scene.NovOREOctPlease enter the address and port of the serverPopulation %d of which %d are not housed. PortPress space to cancel.Quit The Game?Rockets launched %2d Successful launches %2d STEELSave a sceneSaving city scene... please waitSellSepTESTThe comment may be up to 40 charactersThere is no save scene with this number.Type comment for the saved sceneUnable to open %s Years of unemployment %7d History %8.3f You have pressed a test keyYou will only see this message onceand forget the current game?and may contain spaces or % . - + ,might not load properly.or they are from an earlier version, theytry again?Project-Id-Version: lincity 1.12pre52 Report-Msgid-Bugs-To: POT-Creation-Date: 2004-07-08 23:27-0600 PO-Revision-Date: 2003-03-26 00:39-0500 Last-Translator: kkk Language-Team: it_IT MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Piste %4d Strade %4d Ferrovie %4d Monumenti %4d Scuole %4d Università %4d Fabbriche Ceramica %4d Fabbri %4d Mulini %4d Mulini a Vento %4d Centrali a Carbone %4d Centrali Solari %4d Miniere Carbone %4d Miniere minerali %4d Comuni %4d Ind leggere %4d Ind pesanti %4d Riciclatori %4d Residenze %4d Mercati %4d Fattorie %4d Substazioni %4d Linee Elettriche %4d Porti %4d Data %s %04d Denaro %8d Livello Tecnologico %5.1f (%5.1f) Morti per fame %7d Storia %8.3f Stazioni vigili fuoco %4d Parchi %4d Campi Cricket %4d ----- IN MODALITA' TEST ------- AprAgoCompraCARBONEScegli network serverScegli il numero dello scenario desideratoScegli il numero dello scenario che vuoi salvareNon sono riuscito a trovare la directory per il salvataggio %s Creazione pixmapsMorti per inquinamento %7d Storia %8.3f DicVuoi veramente giocare in modalità test...Vuoi veramente uscire?VuoiVuoi caricare lo scenarioL'economia è sostenibile Gli elementi in rosso non sono in quella posizione,CIBOFebBENIStatistiche del gioco da LinCity Versione %s Centri Salute %4d Discariche %4d Baracche %4d Se vuoi salvare il gioco seleziona NO.Scenario iniziale caricato - %s LAVORIGenLugGiuCarica un fileCaricamento Scenario in corsoCaricamento scenario... attendereCaricamento gioco in corsoMarMercatoMax popolazione %d Numero evacuati %d Nascite Totali %d MagNessuno scenario.NovMINERALIOttInserisci per favore l'indirizzo e la porta del serverPopolazione di %d dei quali %d sono senza casa. PortoPremi spazio per cancellare.Uscire dal Gioco?Razzi lanciati %2d Lanci riusciti %2d ACCIAIOSalva uno scenarioSalvataggio scenario città in corso... attendereVendiSetTESTIl commento può avere fino a 40 caratteriNessuno scenario salvato con questo numero.Digita un commento per lo scenario salvatoImpossibile aprire %s Anni di disoccupazione %7d Storia %8.3f Hai premuto un pulsante di testVedrai questo messaggio una sola voltae abbandonare il gioco corrente?e può contenere spazi o % . - + ,potrebbero non caricarsi correttamente.oppure vengono da una versione precedente, essiprovarci di nuovo?lincity-1.13.1/po/LINGUAS0000644000175000017500000000004407640242606011640 00000000000000# Set of available languages. ca it lincity-1.13.1/README0000644000175000017500000005335210004117143011050 00000000000000 ** Welcome to lincity ** This is the README for lincity 1.13 (development version) WHAT IS LINCITY =============== Lincity is a city/country simulation game for Linux (SVGALIB and X), Solaris, FreeBSD, HPUX, AIX, SCO, IRIX, Compaq Tru64, BeOS, OS/2, VMS, OS X, AtheOS, and Win32 (Win95, Win98, ME, NT, 2000, XP). You are required to build and maintain a city. You must feed, house, provide jobs and goods for your residents. You can build a sustainable economy with the help of renewable energy and recycling, or you can go for broke and build rockets to escape from a pollution ridden and resource starved planet, it's up to you. Due to the finite resources available in any one place, this is not a game that you can leave for long periods of time. Lincity recently moved to sourceforge.net. This brings new CVS access, mailing lists, and web pages. If you are subscribed to lincity-users@floot.demon.co.uk, please also subscribe to the new list, shown below, and make all of your posts there. Please also note the new home page, which is not yet complete. Anyone with an eye for design and a desire to help is welcome to make suggestions or design a page to replace this one. The lincity home page is now located at: http://lincity.sourceforge.net The official users mailing list (mailman) can be subscribed to by visiting: http://lists.sourceforge.net/lists/listinfo/lincity-users CVS commit notification can be had at: http://lists.sourceforge.net/lists/listinfo/lincity-commits Additionally, our sourceforge page is: http://sourceforge.net/projects/lincity/ REQUIREMENTS ============ * SVGALIB 1.3.0 (or greater). OR X11. OR A Win32 OS. * The libpng and libz libraries. I have tested with libpng versions 1.0.12 and 1.2.5. These libraries are included in the windows version. * A graphics card supported by your above choice. * You probably need at least a 486DX2-66. (Even better for the X version I suspect.) * You probably need at least 8 MB memory (16 MB for X or win32). * Other things? Send us an email. INSTALLATION (UNIX) =================== To install lincity, (as root) untar the file lincity-1.12.0.gz tar -xzvf lincity-1.12.0.tar.gz You now want to compile the source cd lincity-1.12.0 ./configure make Lincity will run out of the source directory. But if you want to install you can do this: make install The old method choosing the install directory by setting LC_BINDIR and LC_LIBDIR in the makefile no longer applies. To install to a different directory, you must use the --prefix flag when you configure the package. For example: ./configure --prefix=/usr/mylocal If you are installing a version downloaded from the cvs server, the timestamps may be incorrect, which will cause the "make" to fail. In this case, you need to run a script to fix the timestamps: ./fix-timestamps.sh ./configure make make install INSTALLATION (WIN32) ==================== Simply unpack the archive, and double click on the LINCITY.EXE icon. You can get your free copy of UNZIP from the INFO-ZIP web page at http://www.info-zip.org UNINSTALLING (UNIX) ==================== If you still have the configured source directory, you can do this: make uninstall Otherwise, do this (assuming you installed to /usr/local) rm /usr/local/bin/lincity rm /usr/local/bin/xlincity rm /usr/local/man/man6/lincity.6 rm -rf /usr/local/share/lincity In addition, if you ran lincity, you should delete these: rm -rf $HOME/.lincity rm $HOME/.lincityrc If you have an older version, before 1.12pre54, you should delete this: rm -rf $HOME/.Lin-city UNINSTALLING (WIN32) ==================== Like all good DOS programs, lincity runs within a single directory. No files are copied to your "windows directory." The windows registry is not used. Simply delete the lincity directory to uninstall. RUNNING LINCITY (UNIX) ====================== Usually you will invoke the game with 'lincity' or 'xlincity'. Typing 'lincity' will run the SVGA version, while typing 'xlincity' will run the X Windows version. The SVGA version will not run under X. lincity [opts] xlincity [opts] The following options apply to both. -w Do some *crude* gamma correction to boost the red and blue. This makes some 'washed out' displays a bit more colourful. You have control of the individual values, see below. -R -G -B These options allow you to boost the individual colours. is a number between 0.0 and 1.0 The default values for -w are 1.0 0.0 0.4 (ATTOW) This option only applies to lincity. -m Set the VGA mode. See below for choices of mode. This option only applies to xlincity. -r Add an extra border around the game. -d Double the size of the window to 1280x960 -b *obsolete* omit border around game. Now on by default. RUNNING LINCITY (WIN32) ====================== Double click the LINCITY.EXE icon. The WIN32 version does not accept command line arguments. UPGRADING FROM VERSION 1.11 =========================== Lincity 1.12 is forward compatible with lincity 1.11, in the sense that 1.12 can read files generated in 1.11. However, please note that you may need to copy over the save files. Save files can be found in the following directories. UNIX users note the change! Lincity 1.11 Lincity 1.12 ---------------- ---------------- UNIX $HOME/.Lin-city $HOME/.lincity WINDOWS %LINCITY_HOME%\SAVED_GAMES %LINCITY_HOME%\SAVED_GAMES THE LINCITY HOME DIRECTORY ========================== If you get a message such as "Error. Can't find LINCITY_HOME", this means that lincity can't find its home directory. To find its home directory, lincity searches for the file "colour.pal" in the following three directories (in order): The directory pointed to by the $LINCITY_HOME environment variable The current working directory The default directory LINCITY CONFIGURATION FILE ========================== Lincity now has a configuration file for saving defaults. You can find it in the following location: UNIX: $HOME/.lincityrc WINDOWS: %LINCITY_HOME%\lincity.ini To reset to the "factory default" configuration, simply delete the file. Lincity will regenerate the file if it is missing. LINCITY ARTWORK =============== Starting with version 1.13, you can (more easily) customize the lincity buildings and animations. To modify the artwork simply edit the icon image file, located at opening/icons.png, with your favorite image editor. The icons.png file has a 256-color indexed format. The palette contained within icons.png, however, is ignored by lincity. Instead, lincity uses the file "Colour.pal" to determine the palette. NOTES FOR SVGALIB VERSION ========================= It is now possible to run at higher resolution. You can use the command line to set the mode: lincity ## default mode lincity -m 10 ## mode 10, 640x480 lincity -m 11 ## mode 11, 800x600 lincity -m 12 ## mode 12, 1024x768 lincity -m 13 ## mode 13, 1280x1024 If not specified, lincity uses the default mode. The default mode can be set according to the SVGALIB_DEFAULT_MODE environment variable. See "man svgalib" for details on the svgalib default graphics mode. If no default graphics mode has been specified, lincity will use mode 10 (640x480, 256 colors). As of version 1.12, lincity now uses the mouse settings in your svga configuration file (i.e. /etc/vga/vga.config). Please use this method to specify which make/model of mouse you are using, and other mouse parameters. NOTES FOR X VERSION =================== When playing in 256 colour (8bbp) display modes, when you go over the edge of your window, the window manager changes the colour palette back to the 'normal' one, then back to the game's one when the mouse reenters the window. This is what is supposed to happen, but can be a bit annoying when trying to click on areas close to the edge and overshooting. For this reason, I have added an extra border around the game to give players a bit of 'breathing space'. You can disable this feature by starting the game with a '-b' switch. ie. xlincity -b There is now a button that enables you to confine the mouse pointer within the X window. ( xlincity -b, then confining the pointer and changing the screen resolution to 640x480 gives you a 'full screen' game. :) ) NOTES FOR WIN32 VERSION ======================= Lincity for Win32 automatically chooses whether or not to add a border and/or perform pix doubling, depending on your resolution. Furthermore, it will automatically maximize the window or even go into full screen mode. Here is what you should see for some of the more popular resolutions: Resolution Window Style Border Pix Doubling ------------ ------------ ------------ ------------ 640 x 480 Full screen None No 800 x 600 Window Yes No 1024 x 768 Window Yes No 1152 x 864 Window Yes No 1280 x 1024 Window None Yes If you are running 1280x1024, you may need to autohide the taskbar in order to see pix doubling. Lincity no longer uses a real windows font to draw text. Although this gives a considerable speed improvement (about 20%), it sometimes doesn't work correctly, for a reason that I haven't yet identified. Save files are gzip compatible with the UNIX version of lincity. That is, you will need to gzip/gunzip the save files when you transfer them to/from your UNIX box. The source code is distributed together with the binary distribution, in the file source.tgz. NOTES FOR CYGWIN ================ Cygwin is fully supported. However, at the time of writing, performance is very slow when X Windows is started in multiwindow mode (which is the default setting). To fix this, you can edit startxwin.bat to choose a different setting. http://sources.redhat.com/ml/cygwin-xfree/2003-09/msg00485.html INTERNATIONALIZATION UNDER LINUX ================================ Lincity supports a modest amount of internationalization. Only languages that can be represented using a iso8859-1 font are currently supported. I have created a lincity-compatible iso8859-2 font also, but have not used it yet because of no demand (send me an email if you would like to try). If you wish to make a translation for your language, you will need to download and install gettext 0.11.2 or higher. The first task is to get the sample Italian translation to display correctly. Download a fresh lincity (1.12pre53 or higher) from sourceforge. Do a configure, make, and make install. Next, download the Italian package. Install as described in README.it. Run as follows: export LANG=it_IT ## (on bash and similar) setenv LANG it_IT ## (on csh and similar) xlincity -D Hopefully you will see something like this: Setting entire locale to it_IT Setting messages locale to it_IT Query locale is it_IT GUESS 1 -- intl_suffix is it_IT Trying Message Path /home/gsharp/lincity/share/lincity/messages/it_IT/ Trying Help Path /home/gsharp/lincity/share/lincity/help/it_IT/ GUESS 2 -- intl_suffix is it Trying Message Path /home/gsharp/lincity/share/lincity/messages/it/ Set Message Path /home/gsharp/lincity/share/lincity/messages/it/ Trying Help Path /home/gsharp/lincity/share/lincity/help/it/ Set Help Path /home/gsharp/lincity/share/lincity/help/it/ Bound textdomain directory is /home/gsharp/lincity/share/locale Textdomain is lincity DefaultVisual id=35 bp-rgb=8 map-entries=256 If you see this, then everything worked perfectly. You should see perfect Italian. In particular, note the following: (1) The opening screen (help page) is in Italian (2) The month January will be written "Gen" instead of "Jan" (3) Click on something that hasn't been invented yet, like a power station or windmill. The message for "Not enough tech" will be in Italian. It is possible that you see English for (1) and (3). If so, you are probably running from the directory you built from. Please cd out of that directory, and try again. If you are less lucky, maybe only (1) and (3) worked correctly and but not (2). If so, you probably saw something like this: Setting entire locale to (null) Setting messages locale to (null) Query locale is C GUESS 1 -- intl_suffix is it_IT Trying Message Path /usr/local/lincity/messages/it_IT/ Trying Help Path /usr/local/lincity/help/it_IT/ GUESS 2 -- intl_suffix is it Trying Message Path /usr/local/lincity/messages/it/ Set Message Path /usr/local/lincity/messages/it/ Trying Help Path /usr/local/lincity/help/it/ Settling for help Path /usr/local/lincity/help/ Bound textdomain directory is /lincity/share/locale Textdomain is lincity DefaultVisual id=35 bp-rgb=8 map-entries=256 If this happens, it means that your system is missing some files which are require to "set the locale" of your system to "it_IT". Probably you are running Linux -- I don't think other Unix's have this peculiar requirement. To check if this is the problem (on Linux), look for the directory /usr/lib/locale/it_IT. If this directory doesn't exist, you have this problem. To fix it, do the following: 1) Make a backup of the directory /usr/share/i18n/charmaps 2) Make a backup of the directory /usr/share/i18n/locale 3) cd /usr/share/i18n/charmaps 4) gunzip UTF-8.gz 5) gunzip ISO-8859-1.gz 6) cd /usr/share/i18n/locale 7) localedef -f ../charmaps/UTF-8 -i it_IT it_IT.UTF-8 8) localedef -f ../charmaps/ISO-8859-1 -i it_IT it_IT Now check for the directory /usr/lib/locale/it_IT. It will be there. OK, now you are ready to make translations for a new language. There are three parts to making a translation: making help files making message files making a .po file. The messages and help files are just a matter of editing the ASCII files, and installing them. If your language is "it", you should create two directories such as /usr/local/share/lincity/messages/it and /usr/local/share/lincity/help/it. Copy the English language help and message files to these directories, and translate them. The .po file is a matter of translating these and getting them to compile correctly. First, edit the file po/LINGUAS, and add your language (e.g. "it") to the list. Next, create the .po file. For the language "it", the command looks like this like this: cd po msginit -l it You should now see the file "it.po". Edit this file. Specifically, you should edit what comes after "msgstr". Don't erase any of the other stuff such as "msgid" or "#: cliglobs.c:54" or that stuff. If you are using emacs, there is a "po-mode" to facilitate (or obstruct) this task. When you are done editing this file, you need to compile this file. Simply type "make" in the po directory to compile. This will create the file "it.gmo". Finally, you will need to install this file. To install, you will copy this file to the following location: cp it.gmo /usr/local/share/locale/it/LC_MESSAGES/lincity.mo Now, you are ready to go. Set the LANG environment variable and lincity should run using your translations. Email to gregsharp@geocities.com for comments about this process. INTERNATIONALIZATION UNDER WINDOWS ================================== The situation under windows is similar. Download lincity binary package, version 1.12pre53 or newer, and also download the Italian translation pack. Install the Italian translation pack directly into the lincity directory. Then run the batch file: c:\lincity> lincity-it Now, you should see: (1) The opening screen (help page) is in Italian (2) The month January will be written "Gen" instead of "Jan" (3) Click on something that hasn't been invented yet, like a power station or windmill. The message for "Not enough tech" will be in Italian. If the above procedure doesn't work "out of the box", email to gregsharp@geocities.com. OK, now you are ready to make translations for a new language. There are three parts to making a translation: making help files making message files making a .po file. The messages and help files are just a matter of editing the ASCII files, and installing them. If your language is "it", you should create two directories such as /usr/local/share/lincity/messages/it and /usr/local/share/lincity/help/it. Copy the English language help and message files to these directories, and translate them. The .po file is a matter of translating these and getting them to compile correctly. First, make copy the file lincity.pot to your language (e.g. "it.po" for Italian). If you do not have a lincity.pot file, email gregsharp@geocities.com to get the latest one (or get it directly from the CVS server on sourceforge). You should now see the file "it.po". Edit this file. Specifically, you should edit what comes after "msgstr". Don't erase any of the other stuff such as "msgid" or "#: cliglobs.c:54" or that stuff. If you are using emacs, there is a "po-mode" to facilitate (or obstruct) this task. When you are done editing this file, you need to compile this file. Use the executable "msgfmt.exe" which is distributed with lincity for this purpose: c:\lincity> msgfmt it.po -o it.gmo This should create the file it.gmo. You need to copy it to a prespecified location, like this: c:\lincity> copy it.gmo locale\it\LC_MESSAGES\lincity.mo Create the appropriate subdirectories as necessary. Now, you are ready to go. Set the LANG environment variable and lincity should run using your translations. INSTALLING PICEDIT ================== Picedit is deprecated. It may or may not compile. It will be removed after the transition to png graphics is complete. picedit is a simple drawing program that was used to draw all the icons found within the game. You are free to play with this, and even send me new icons that you have designed - although I cannot guarantee that any icons sent to me will be included in later versions. If you intend to design some that you feel should be included, please e-mail me first, this may save a lot of wasted effort. The following commands ./configure make picedit (or make xpicedit) make install will compile and install picedit (or xpicedit). Most likely, you will prefer to install picedit and lincity at the same time to avoid copying all of the help and message files multiple times, like this: ./configure make lincity make picedit make install By the way, xpicedit does not work on hi-color or full-color displays. COMPILATION UNDER WIN32 ======================= I use both MS VC++ 4.0 and MS VC++ 6.0 on Win95 and Win98. I no longer include the MSVC workspace files or makefiles, since these do not seem to be particularly useful. If you would like them, I'd be glad to send them to you. You may need to generate your own Makefile. The file Makefile.am contains the information about which files you need to compile. As of version 1.12, you no longer need to link with your vendor supplied versions VERSION.LIB or WSOCK32.LIB. Lincity 1.11 was patched to compile with the Borland compiler too. If this is not still working in 1.12, please send me a patch and I'll be happy to add it to the archive. RUNNING LINCITY (CLIENT/SERVER) =============================== Client/server version is disabled for this version. In fact, the code was completely removed as of version 1.12pre50, so the last version to contain the (non-functioning) network code was 1.12pre49. If you are interested in working on a client/server version, please send your email to the current maintainer or to the lincity mailing list. We are still interested in doing this! BUGS ==== Many. See the file TODO. If you wish to report a bug, you can send to directly to the current maintainer or to the lincity mailing list. HISTORY ======= Ian Peters started writing lincity in June 1995 as an exercise in mouse control in SVGALIB. It quickly became a usable, then even fun, game to play. Over the next 18+ months it evolved into a challenging and stable game which, in a number of people's opinion, is worth uploading to the net. In late 1997, lincity developers made grand plans for lincity version 2, an intergalactic space simulation with all the trimmings. But from 1998-1999, lincity underwent a period of hibernation, with only minor patches being applied. Development was restarted in late 1999 by Greg Sharp to provide some moderate improvements, including networking support, GUI improvements and additional gameplay developments. Networking support was subsequently dropped in 2001. In mid-2001, Greg was joined by Corey Keasling, who helped to bring the game to sourceforge.net. In late 2001, Corey became co-maintainer. Version 1.12 was released in December 2003. COPYRIGHT ========= Lincity is copyrighted software. Copyright (c) I J Peters 1995-1997. Copyright (c) Greg Sharp 1997-2003. Copyright (c) Corey Keasling 2000-2003. You may freely copy, distribute and modify lincity under the terms of the GNU GENERAL PUBLIC LICENSE Please read the file COPYING for the GPL. THANK YOU ========= This game could not have been possible without the patches, scripts, bug reports, suggestions, and other contributions from hundreds of developers and users around the world. Please read the file 'Acknowledgements' for details. And a special thanks to *you* for playing and enjoying lincity! lincity-1.13.1/cliglobs.h0000644000175000017500000001755707744312243012165 00000000000000/* ---------------------------------------------------------------------- * * cliglobs.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __cliglobs_h__ #define __cliglobs_h__ #include "common.h" #include "lin-city.h" #include "geometry.h" extern Screen_Geometry scr; extern short mappointoldtype[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; extern int lc_mouse_type; extern char progbox[(PROGBOXW + 16) * (PROGBOXH + 16)]; /* Preferences */ extern int time_multiplex_stats; extern int suppress_popups; extern int overwrite_transport_flag; extern int confine_flag; extern int skip_splash_screen; extern int no_init_help; extern int suppress_firsttime_module_help; extern int main_screen_flag; extern int mappoint_stats_flag, mappoint_stats_time; extern int mini_screen_flags, mini_screen_time; extern int mini_screen_port_x, mini_screen_port_y; extern float gamma_correct_red, gamma_correct_green, gamma_correct_blue; extern int mouse_initialized; /* wcoreyk */ extern int cs_mouse_x, cs_mouse_y, cs_mouse_button; /* current mouse status */ extern int cs_mouse_shifted; /* shift key pressed with mouse. */ extern int cs_mouse_xmax, cs_mouse_ymax, omx, omy, mox, moy; extern int mouse_hide_count; #if defined (WIN32) /* extern int cs_current_mouse_x, cs_current_mouse_y, cs_current_mouse_button; */ extern int cs_square_mouse_visible; #endif extern int kmousex, kmousey, kmouse_val, reset_mouse_flag, mt_flag; extern int modern_windmill_flag; extern char under_square_mouse_pointer_top[20 * 2 * 4]; extern char under_square_mouse_pointer_left[18 * 2 * 4]; extern char under_square_mouse_pointer_right[18 * 2 * 4]; extern char under_square_mouse_pointer_bottom[20 * 2 * 4]; extern int mouse_type; extern int mt_start_posx, mt_start_posy, mt_current_posx, mt_current_posy; extern int main_screen_originx, main_screen_originy; extern long real_time; extern int screen_refresh_flag; extern int total_money, income_tax_rate, coal_tax_rate; extern int dole_rate, transport_cost_rate; extern int goods_tax_rate; extern int export_tax_rate, import_cost_rate; extern int tech_level, highest_tech_level, unnat_deaths; extern char *months[]; extern int monthgraph_size; extern int *monthgraph_pop; extern int *monthgraph_starve; extern int *monthgraph_nojobs; extern int *monthgraph_ppool; extern char *up_pbar1_graphic, *up_pbar2_graphic; extern char *down_pbar1_graphic, *down_pbar2_graphic, *pop_pbar_graphic; extern char *tech_pbar_graphic, *food_pbar_graphic, *jobs_pbar_graphic; extern char *money_pbar_graphic, *coal_pbar_graphic, *goods_pbar_graphic; extern char *ore_pbar_graphic, *steel_pbar_graphic; extern char *pause_button1_off, *pause_button2_off; extern char *pause_button1_on, *pause_button2_on; extern char *fast_button1_off, *fast_button2_off; extern char *fast_button1_on, *fast_button2_on; extern char *med_button1_off, *med_button2_off; extern char *med_button1_on, *med_button2_on; extern char *slow_button1_off, *slow_button2_off; extern char *slow_button1_on, *slow_button2_on; extern char *results_button1, *results_button2; extern char *toveron_button1, *toveron_button2; extern char *toveroff_button1, *toveroff_button2; #ifdef LC_X11 extern char *confine_button, *unconfine_button; #endif extern int pause_flag, slow_flag, med_flag, fast_flag; extern int prefs_flag; extern int prefs_drawn_flag; extern char *ms_pollution_button_graphic, *ms_normal_button_graphic; extern char *ms_fire_cover_button_graphic, *ms_health_cover_button_graphic; extern char *ms_cricket_cover_button_graphic; extern char *ms_ub40_button_graphic, *ms_coal_button_graphic; extern char *ms_starve_button_graphic, *ms_ocost_button_graphic; extern char *ms_power_button_graphic; extern char *checked_box_graphic, *unchecked_box_graphic; extern char market_cb_gbuf[MARKET_CB_W * MARKET_CB_H]; extern int market_cb_flag, mcbx, mcby, market_cb_drawn_flag; extern int port_cb_flag, port_cb_drawn_flag; #if defined (commentout) extern int diffgraph_power[MAPPOINT_STATS_W], diffgraph_coal[MAPPOINT_STATS_W]; extern int diffgraph_goods[MAPPOINT_STATS_W], diffgraph_ore[MAPPOINT_STATS_W]; extern int diffgraph_population[MAPPOINT_STATS_W], diff_old_population; #endif /* GCS -- this one is difficult to deal with. LinCity will give your money back if you bulldoze the most recently constructed building (i.e. if you make a mistake. How does this fit into a multiplayer game? Not at all, I suppose... */ extern int last_built_x, last_built_y; extern int help_flag, numof_help_buttons, help_history_count, help_return_val; extern int block_help_exit; extern int help_button_x[MAX_NUMOF_HELP_BUTTONS]; extern int help_button_y[MAX_NUMOF_HELP_BUTTONS]; extern int help_button_w[MAX_NUMOF_HELP_BUTTONS]; extern int help_button_h[MAX_NUMOF_HELP_BUTTONS]; extern char help_button_s[MAX_NUMOF_HELP_BUTTONS][MAX_LENOF_HELP_FILENAME]; extern char help_button_history[MAX_HELP_HISTORY][MAX_LENOF_HELP_FILENAME]; extern char *help_button_graphic, help_graphic[MAX_ICON_LEN]; extern char *quit_button_graphic, *load_button_graphic, *save_button_graphic; extern char *menu_button_graphic; extern int quit_flag, network_flag, load_flag, save_flag, cheat_flag; extern int monument_bul_flag, river_bul_flag, shanty_bul_flag; extern int must_release_button, let_one_through; extern int db_yesbox_x1, db_yesbox_x2, db_yesbox_y1, db_yesbox_y2; extern int db_nobox_x1, db_nobox_x2, db_nobox_y1, db_nobox_y2; extern int db_flag, db_yesbox_clicked, db_nobox_clicked; extern char okmessage[22][74]; extern int db_okbox_x1, db_okbox_x2, db_okbox_y1, db_okbox_y2, db_okflag, db_okbox_clicked; extern int suppress_ok_buttons; extern int pbar_pops[12], pbar_pop_oldtot, pop_diff, pbar_pop_olddiff; extern int pbar_techs[12], pbar_tech_oldtot, tech_diff, pbar_tech_olddiff; extern int pbar_foods[12], pbar_food_oldtot, food_diff, pbar_food_olddiff; extern int pbar_jobs[12], pbar_jobs_oldtot, jobs_diff, pbar_jobs_olddiff; extern int pbar_coal[12], pbar_coal_oldtot, coal_diff, pbar_coal_olddiff; extern int pbar_goods[12], pbar_goods_oldtot, goods_diff, pbar_goods_olddiff; extern int pbar_ore[12], pbar_ore_oldtot, ore_diff, pbar_ore_olddiff; extern int pbar_steel[12], pbar_steel_oldtot, steel_diff, pbar_steel_olddiff; extern int pbar_money[12], pbar_money_oldtot, money_diff, pbar_money_olddiff; extern int askdir_lines; extern char *askdir_path[4]; extern int lc_save_dir_len; extern struct _disp display; extern int borderx, bordery; extern int command_line_debug; #ifdef LC_X11 extern int winX, winY, mouse_button; extern unsigned int winW, winH; extern char *bg_color; /*extern char* pixmap;*/ extern char dummy2[1024]; extern int verbose; /* display settings if TRUE */ extern int stay_in_front; /* Try to stay in clear area of the screen. */ extern int text_bg; extern int text_fg; extern int x_key_value; extern int x_key_shifted; /* Is the key shifted? */ extern int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag; extern long unsigned int colour_table[256]; extern unsigned char *open_font; extern int open_font_height, suppress_next_expose; extern Cursor pirate_cursor; #ifdef USE_PIXMAPS extern Pixmap icon_pixmap[NUM_OF_TYPES]; extern char icon_pixmap_flag[NUM_OF_TYPES]; #endif #endif #ifdef WIN32 extern int mouse_button; extern char *bg_color; extern int verbose; /* display settings if TRUE */ extern int stay_in_front; /* Try to stay in clear area of the screen. */ extern int text_bg; extern int text_fg; extern int x_key_value; /* GCS: Add initialization value */ extern BOOL x_key_shifted; /* Is the key shifted? */ extern int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag; extern long unsigned int colour_table[256]; extern unsigned char *open_font; extern int open_font_height, suppress_next_expose; #if defined (USE_PIXMAPS) extern HBITMAP icon_pixmap[NUM_OF_TYPES]; extern char icon_pixmap_flag[NUM_OF_TYPES]; #endif #endif /* WIN32 */ #endif /* __cliglobs_h__ */ lincity-1.13.1/common.h0000644000175000017500000000117707711127503011643 00000000000000/* ---------------------------------------------------------------------- * * common.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __common_h__ #define __common_h__ #ifdef LC_X11 #include #include #include #include "lin-city.h" #include "lcx11.h" #elif defined WIN32 #include #include "lcwin32.h" #elif defined SVGALIB #include #include #include #include "lcsvga.h" #endif #endif /* __common_h__ */ lincity-1.13.1/confw32.h0000644000175000017500000000523207757042065011641 00000000000000/* ---------------------------------------------------------------------- * * confw32.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ /* This is a config.h file that has been hacked for VC++ 4.0. You'll * probably need to change if you are using a different compiler. * ---------------------------------------------------------------------- */ /* Define to empty if the keyword does not work. */ /* #undef const */ /* Define if you have locale.h */ #define HAVE_LOCALE_H /* Define if you want to enable foreign language support */ #define ENABLE_NLS /* Define as __inline if that's what the C compiler calls it. */ #define inline __inline /* This is not yet fixed for UNIX... */ #define snprintf _snprintf /* Define if you need to in order for stat and other things to work. */ /* #undef _POSIX_SOURCE */ /* Define if you have the ANSI C header files. */ /* #undef STDC_HEADERS */ /* Define if you can safely include both and . */ /* #undef TIME_WITH_SYS_TIME */ /* Define if the X Window System is missing or not being used. */ /* #undef X_DISPLAY_MISSING */ /* Define if save files should be compressed with gzip. */ /* #undef HAVE_GZIP */ /* The number of bytes in a char. */ #define SIZEOF_CHAR 1 /* The number of bytes in a int. */ #define SIZEOF_INT 4 /* The number of bytes in a long. */ #define SIZEOF_LONG 4 /* The number of bytes in a short. */ #define SIZEOF_SHORT 2 /* Define if you have the gettimeofday function. */ /* #undef HAVE_GETTIMEOFDAY */ /* Define if you have the mkdir function. */ /* #undef HAVE_MKDIR */ /* Define if you have the popen function. */ /* #undef HAVE_POPEN */ /* Define if you have the select function. */ /* #undef HAVE_SELECT */ /* Define if you have the header file. */ /* #undef HAVE_DIRENT_H */ /* Define if you have the header file. */ /* #undef HAVE_NDIR_H */ /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file. */ /* #undef HAVE_STRINGS_H */ /* Define if you have the header file. */ /* #undef HAVE_SYS_DIR_H */ /* Define if you have the header file. */ /* #undef HAVE_SYS_NDIR_H */ /* Define if you have the header file. */ /* #undef HAVE_SYS_TIME_H */ /* Define if you have the header file. */ /* #undef HAVE_UNISTD_H */ /* Define if you have the header file. */ /* #undef HAVE_VGA_H */ /* Name of package */ #define PACKAGE "lincity" /* Version number of package */ #define VERSION "1.12.0" lincity-1.13.1/engglobs.h0000644000175000017500000000525307464124722012157 00000000000000/* ---------------------------------------------------------------------- * * engglobs.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __engglobs_h__ #define __engglobs_h__ #include "lin-city.h" #include "common.h" #include "geometry.h" /* GCS -- One of these days I will get this right. */ struct map_struct { short type[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; short group[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; int pollution[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; Map_Point_Info info[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; }; typedef struct map_struct Map; extern Map map; #define MP_TYPE(x,y) map.type[x][y] #define MP_GROUP(x,y) map.group[x][y] #define MP_POL(x,y) map.pollution[x][y] #define MP_INFO(x,y) map.info[x][y] #define MP_SIZE(x,y) main_groups[MP_GROUP(x,y)].size #define MP_COLOR(x,y) main_groups[MP_GROUP(x,y)].colour #define MP_GROUP_IS_RESIDENCE(x,y) (GROUP_IS_RESIDENCE(MP_GROUP(x,y))) extern int mappoint_array_x[WORLD_SIDE_LEN], mappoint_array_y[WORLD_SIDE_LEN]; extern int numof_shanties, numof_communes; extern int last_built_x, last_built_y; extern int sust_dig_ore_coal_tip_flag, sust_port_flag, sustain_flag; extern int sust_dig_ore_coal_count, sust_port_count, sust_old_money; extern int sust_old_money_count, sust_old_population, sust_old_population_count; extern int sust_old_tech, sust_old_tech_count, sust_fire_count; extern int total_time; /* game time */ extern int population, starving_population; extern int housed_population; extern int unemployed_population, people_pool; extern int substationx[MAX_NUMOF_SUBSTATIONS], substationy[MAX_NUMOF_SUBSTATIONS]; extern int numof_substations; extern int marketx[MAX_NUMOF_MARKETS], markety[MAX_NUMOF_MARKETS], numof_markets; extern int numof_health_centres, max_pop_ever, total_evacuated, total_births; extern int total_money, income_tax_rate, coal_tax_rate; extern int dole_rate, transport_cost_rate; extern int goods_tax_rate; extern int export_tax_rate, import_cost_rate; extern int tech_level, highest_tech_level, unnat_deaths; extern int total_pollution_deaths, total_starve_deaths, total_unemployed_days; extern int total_unemployed_years; extern float pollution_deaths_history, starve_deaths_history; extern float unemployed_history; extern int university_intake_rate; extern int power_made, power_used, coal_made, coal_used; extern int goods_made, goods_used, ore_made, ore_used; extern int rockets_launched, rockets_launched_success; extern int coal_survey_done; extern int selected_type_cost; extern int ex_tax_dis[NUMOF_DISCOUNT_TRIGGERS]; #endif /* __engglobs_h__ */ lincity-1.13.1/engine.h0000644000175000017500000000112107612332363011607 00000000000000/* ---------------------------------------------------------------------- * * engine.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __engine_h__ #define __engine_h__ int place_item (int x, int y, short type); int bulldoze_item (int x, int y); void do_coal_survey (void); void do_bulldoze_area (short fill, int xx, int yy); void launch_rocket (int x, int y); void connect_rivers (void); int adjust_money(int value); #endif /* __engine_h__ */ lincity-1.13.1/fileutil.h0000644000175000017500000000266607741430561012200 00000000000000/* ---------------------------------------------------------------------- * * fileutil.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __fileutil_h__ #define __fileutil_h__ extern char *lc_save_dir; extern char *lc_temp_file; extern int lc_save_dir_len; //extern int make_dir_ok_flag; /* Try to find the maximum file name from OS */ #if defined (_POSIX_PATH_MAX) /* Posix */ #define LC_PATH_MAX _POSIX_PATH_MAX #elif defined (_MAX_PATH) /* Win32 */ #define LC_PATH_MAX _MAX_PATH #elif defined (PATH_MAX) /* X Windows */ #define LC_PATH_MAX PATH_MAX #else #define LC_PATH_MAX 4096 #endif extern char colour_pal_file[LC_PATH_MAX]; extern char opening_pic[LC_PATH_MAX]; extern char graphic_path[LC_PATH_MAX]; extern char fontfile[LC_PATH_MAX]; extern char opening_path[LC_PATH_MAX]; extern char help_path[LC_PATH_MAX]; extern char message_path[LC_PATH_MAX]; extern char lc_textdomain_directory[LC_PATH_MAX]; extern char lincityrc_file[LC_PATH_MAX]; extern char given_scene[LC_PATH_MAX]; void gunzip_file (char *f1, char *f2); int file_exists (char *filename); int directory_exists (char *dir); char* load_graphic(char *s); void undosify_string(char *s); void load_lincityrc (void); void save_lincityrc (void); void debug_printf (char* fmt, ...); #endif /* __fileutil_h__ */ lincity-1.13.1/generic.h0000644000175000017500000000214207340321723011756 00000000000000 #define IDM_NEW 100 #define IDM_OPEN 101 #define IDM_SAVE 102 #define IDM_SAVEAS 103 #define IDM_PRINT 104 #define IDM_PRINTSETUP 105 #define IDM_EXIT 106 #define IDM_UNDO 200 #define IDM_CUT 201 #define IDM_COPY 202 //--------------------------------------------------------------------------- // GENERIC.H //--------------------------------------------------------------------------- #define IDM_PASTE 203 #define IDM_LINK 204 #define IDM_LINKS 205 #define IDM_HELPCONTENTS 300 #define IDM_HELPSEARCH 301 #define IDM_HELPHELP 302 #define IDM_ABOUT 303 #define IDM_HELPTOPICS 304 #define IDC_STATIC -1 #define DLG_VERFIRST 400 #define IDC_COMPANY DLG_VERFIRST #define IDC_FILEDESC DLG_VERFIRST+1 #define IDC_PRODVER DLG_VERFIRST+2 #define IDC_COPYRIGHT DLG_VERFIRST+3 #define IDC_OSVERSION DLG_VERFIRST+4 #define IDC_TRADEMARK DLG_VERFIRST+5 #define DLG_VERLAST DLG_VERFIRST+5 #define IDC_LABEL DLG_VERLAST+1 lincity-1.13.1/geometry.h0000644000175000017500000002301110066050000012155 00000000000000/* ---------------------------------------------------------------------- * * geometry.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __geometry_h__ #define __geometry_h__ #include "lin-city.h" struct rect_struct { int x; int y; int w; int h; }; typedef struct rect_struct Rect; struct screen_geometry_struct { int border_x; int border_y; int client_w; int client_h; /* Entire window */ Rect client_win; /* Main window */ Rect main_win; /* Speed buttons */ Rect pause_button; Rect slow_button; Rect med_button; Rect fast_button; /* Menu buttons */ Rect menu_button; /* Load/Save buttons */ Rect load_button; Rect save_button; Rect quit_button; Rect help_button; /* Misc buttons */ Rect results_button; Rect tover_button; Rect confine_button; /* Icon palette (a.k.a. "module buttons") */ Rect module_buttons; /* Progress bars */ Rect pbar_area; Rect pbar_pop; Rect pbar_tech; Rect pbar_food; Rect pbar_jobs; Rect pbar_money; Rect pbar_coal; Rect pbar_goods; Rect pbar_ore; Rect pbar_steel; /* Info screens */ Rect sust; /* Strings */ Rect select_message; Rect date; Rect time_for_year; Rect status_message_1; Rect status_message_2; Rect money; /* Mini map */ Rect mini_map; Rect mini_map_aux; Rect mini_map_area; /* contains both mini_map and mini_map_aux */ #if defined (commentout) /* GCS: keep these around for now */ Rect ms_normal_button; Rect ms_pollution_button; Rect ms_fire_cover_button; Rect ms_ub40_button; Rect ms_coal_button; Rect ms_health_cover_button; Rect ms_cricket_cover_button; Rect ms_power_button; Rect ms_starve_button; Rect ms_ocost_button; #endif /* Statistics */ Rect monthgraph; Rect mappoint_stats; /* Market CB */ Rect market_cb; }; typedef struct screen_geometry_struct Screen_Geometry; void initialize_geometry (Screen_Geometry* scr); void resize_geometry (int new_width, int new_height); int mouse_in_rect (Rect* b, int x, int y); int pixel_to_mappoint(int px, int py, int *mpx, int *mpy); int pixel_to_winpoint(int px, int py, int *wpx, int *wpy); void adjust_main_origin (int new_origin_x, int new_origin_y, int refresh); void draw_pause (int active); void draw_slow (int active); void draw_med (int active); void draw_fast (int active); void draw_menu (void); void draw_load (void); void draw_save (void); void draw_quit (void); void draw_help (void); void draw_results (void); void draw_select_button_graphic (int button, char *graphic); void select_fast (void); void select_medium (void); void select_slow (void); void select_pause (void); void draw_ms_button (char* graphic); void draw_ms_text (char* txt); void draw_small_bezel (int x, int y, int w, int h, int colour); void draw_bezel (Rect r, short width, int color); /* Text width */ #define CHAR_HEIGHT 8 #define CHAR_WIDTH 8 /* Main window */ #define MAIN_WIN_W 432 #define MAIN_WIN_X 56+8+1 #define MAIN_WIN_Y 8 #define MAIN_WIN_H 400 /* Speed buttons */ #define SPEED_BUTTONS_X 0 + MENU_BUTTON_W #define SPEED_BUTTONS_Y 416 #define SPEED_BUTTONS_H 16 #define SPEED_BUTTONS_W 32 #define PAUSE_BUTTON_X SPEED_BUTTONS_X #define PAUSE_BUTTON_Y SPEED_BUTTONS_Y #define PAUSE_BUTTON_H 16 #define PAUSE_BUTTON_W 32 #define SLOW_BUTTON_X SPEED_BUTTONS_X #define SLOW_BUTTON_Y SPEED_BUTTONS_Y + SPEED_BUTTONS_H #define SLOW_BUTTON_H 16 #define SLOW_BUTTON_W 32 #define MED_BUTTON_X SPEED_BUTTONS_X #define MED_BUTTON_Y SPEED_BUTTONS_Y + 2 * SPEED_BUTTONS_H #define MED_BUTTON_H 16 #define MED_BUTTON_W 32 #define FAST_BUTTON_X SPEED_BUTTONS_X #define FAST_BUTTON_Y SPEED_BUTTONS_Y + 3 * SPEED_BUTTONS_H #define FAST_BUTTON_H 16 #define FAST_BUTTON_W 32 #define QUIT_BUTTON_X 608 #define QUIT_BUTTON_Y 416 #define QUIT_BUTTON_W 32 #define QUIT_BUTTON_H 32 #define LOAD_BUTTON_X 576 #define LOAD_BUTTON_Y 416 #define LOAD_BUTTON_W 32 #define LOAD_BUTTON_H 32 #define SAVE_BUTTON_X 576 #define SAVE_BUTTON_Y 448 #define SAVE_BUTTON_W 32 #define SAVE_BUTTON_H 32 /* Misc buttons */ #define MISC_BUTTONS_X 0 #define MISC_BUTTONS_Y 400 #define TOVER_BUTTON_X MISC_BUTTONS_X + 32 #define TOVER_BUTTON_Y MISC_BUTTONS_Y #define TOVER_BUTTON_W 32 #define TOVER_BUTTON_H 16 #define CONFINE_BUTTON_X MISC_BUTTONS_X + 64 #define CONFINE_BUTTON_Y MISC_BUTTONS_Y #define CONFINE_BUTTON_W 16 #define CONFINE_BUTTON_H 16 #define MENU_BUTTON_X 0 #define MENU_BUTTON_Y 0 #define MENU_BUTTON_W 56 #define MENU_BUTTON_H 24 /* Stats button */ #if defined(commentout) #define HELP_BUTTON_X 640 - 56 #define HELP_BUTTON_Y 480 - 24 #define HELP_BUTTON_W 56 #define HELP_BUTTON_H 24 #define RESULTS_BUTTON_X 640 - 2*56 #define RESULTS_BUTTON_Y 480 - 24 #define RESULTS_BUTTON_W 56 #define RESULTS_BUTTON_H 24 #else #define HELP_BUTTON_X 0 #define HELP_BUTTON_Y 24 #define HELP_BUTTON_W 56 #define HELP_BUTTON_H 24 #define RESULTS_BUTTON_X 0 #define RESULTS_BUTTON_Y 48 #define RESULTS_BUTTON_W 56 #define RESULTS_BUTTON_H 24 #endif #define SELECT_BUTTON_WIN_X 0 #define SELECT_BUTTON_WIN_W 56 #define SELECT_BUTTON_WIN_Y 72 #define SELECT_BUTTON_WIN_H 392 #define SELECT_BUTTON_WIDTH 16 #define SELECT_BUTTON_DISTANCE 8 #define SELECT_BUTTON_INTERVAL (SELECT_BUTTON_WIDTH + SELECT_BUTTON_DISTANCE) /* Progress bars */ //#define PBAR_W 16 //#define PBAR_H 56 #define PBAR_W 56 #define PBAR_H 16 #define PBAR_AREA_X (56+MAIN_WIN_W+16+2) #define PBAR_AREA_Y 0 #define PBAR_AREA_H ((PBAR_H * 9) + 8 + 8) #define PBAR_AREA_W (640 - PBAR_AREA_X + 1) #define PBAR_TEXT_W (PBAR_AREA_W - 8 - PBAR_W) #ifdef commentout #define PBAR_POP_X (PBAR_AREA_X + 4) #define PBAR_POP_Y (PBAR_AREA_Y + 4) #define PBAR_TECH_X PBAR_POP_X #define PBAR_TECH_Y PBAR_POP_Y+(PBAR_H+1) #define PBAR_FOOD_X PBAR_POP_X #define PBAR_FOOD_Y PBAR_POP_Y+(PBAR_H+1)*2 #define PBAR_JOBS_X PBAR_POP_X #define PBAR_JOBS_Y PBAR_POP_Y+(PBAR_H+1)*3 #define PBAR_COAL_X PBAR_POP_X #define PBAR_COAL_Y PBAR_POP_Y+(PBAR_H+1)*4 #define PBAR_GOODS_X PBAR_POP_X #define PBAR_GOODS_Y PBAR_POP_Y+(PBAR_H+1)*5 #define PBAR_ORE_X PBAR_POP_X #define PBAR_ORE_Y PBAR_POP_Y+(PBAR_H+1)*6 #define PBAR_STEEL_X PBAR_POP_X #define PBAR_STEEL_Y PBAR_POP_Y+(PBAR_H+1)*7 #define PBAR_MONEY_X PBAR_POP_X #define PBAR_MONEY_Y PBAR_POP_Y+(PBAR_H+1)*8 #endif /* commentout */ #define STATUS_AREA_X MAIN_WIN_X + SPEED_BUTTONS_W #define DATE_W 112 #define MONEY_W 32 * CHAR_WIDTH #define TIME_FOR_YEAR_X STATUS_AREA_X #define TIME_FOR_YEAR_Y 470 #define SELECT_BUTTON_MESSAGE_X STATUS_AREA_X #define SELECT_BUTTON_MESSAGE_Y 460 #define STATUS_MESSAGE_1_X STATUS_AREA_X #define STATUS_MESSAGE_1_Y 440 #define STATUS_MESSAGE_2_X STATUS_AREA_X #define STATUS_MESSAGE_2_Y 450 #define SUST_SCREEN_X 96 #define SUST_SCREEN_Y 416 #define SUST_SCREEN_W (60+8) #define SUST_SCREEN_H 20 #if defined (MAPPOINT_STATS_X) #undef MONTHGRAPH_X #undef MONTHGRAPH_Y #undef MAPPOINT_STATS_X #undef MAPPOINT_STATS_Y #undef MAPPOINT_STATS_W #endif #define MAPPOINT_STATS_LINES 14 #define MAPPOINT_STATS_X (PBAR_AREA_X + 4) #define MAPPOINT_STATS_Y (PBAR_AREA_Y + PBAR_AREA_H + 4) #define MAPPOINT_STATS_W (PBAR_AREA_W - 8) #define MAPPOINT_STATS_H (MAPPOINT_STATS_LINES*8) #define MINI_MAP_AUX_X PBAR_AREA_X + 4 #define MINI_MAP_AUX_Y MAPPOINT_STATS_Y + MAPPOINT_STATS_H + 8 #define MINI_MAP_AUX_W PBAR_AREA_W - 8 #define MINI_MAP_AUX_H 16 #define MONTHGRAPH_X PBAR_AREA_X + 4 #define MONTHGRAPH_Y MINI_MAP_AREA_Y + MINI_MAP_AREA_H + 8 /* MONTHGRAPH_W must match MAPPOINT_STATS_W as used in shrglobs.c */ #define MONTHGRAPH_W PBAR_AREA_W - 8 #define MONTHGRAPH_H 64 #define MINI_SCREEN_W WORLD_SIDE_LEN #define MINI_SCREEN_H WORLD_SIDE_LEN #define MINI_SCREEN_X MINI_MAP_AUX_X + ((MINI_MAP_AUX_W - MINI_SCREEN_W) / 2) #define MINI_SCREEN_Y MINI_MAP_AUX_Y + MINI_MAP_AUX_H + 2 #define MINI_MAP_AREA_X PBAR_AREA_X + 4 #define MINI_MAP_AREA_Y MINI_MAP_AUX_Y #define MINI_MAP_AREA_W PBAR_AREA_W - 8 #define MINI_MAP_AREA_H MINI_SCREEN_H + MINI_MAP_AUX_H + 2 #define MS_BUTTON_H 16 #define MS_BUTTON_W 16 #define MS_NORMAL_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_NORMAL_BUTTON_Y (MINI_SCREEN_Y) #define MS_POLLUTION_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_POLLUTION_BUTTON_Y (MINI_SCREEN_Y + 1*16) #define MS_FIRE_COVER_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_FIRE_COVER_BUTTON_Y (MINI_SCREEN_Y + 2*16) #define MS_UB40_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_UB40_BUTTON_Y (MINI_SCREEN_Y + 3*16) #define MS_HEALTH_COVER_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_HEALTH_COVER_BUTTON_Y (MINI_SCREEN_Y + 4*16) #define MS_COAL_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W) #define MS_COAL_BUTTON_Y (MINI_SCREEN_Y + 5*16) #define MS_CRICKET_COVER_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W + 1*16) #define MS_CRICKET_COVER_BUTTON_Y (MINI_SCREEN_Y + 1*16) #define MS_POWER_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W + 1*16) #define MS_POWER_BUTTON_Y (MINI_SCREEN_Y + 2*16) #define MS_STARVE_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W + 1*16) #define MS_STARVE_BUTTON_Y (MINI_SCREEN_Y + 3*16) #define MS_OCOST_BUTTON_X (MINI_SCREEN_X + MINI_SCREEN_W + 1*16) #define MS_OCOST_BUTTON_Y (MINI_SCREEN_Y + 4*16) #define MARKET_CB_X (PBAR_AREA_X) #define MARKET_CB_Y (PBAR_AREA_Y) //#define MARKET_CB_H (23*8) //#define MARKET_CB_W (18*8) #endif /* __geometry_h__ */ lincity-1.13.1/dialbox.h0000644000175000017500000000232007554467722012003 00000000000000/* ---------------------------------------------------------------------- * * dialbox.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) Corey Keasling 2001. * ---------------------------------------------------------------------- */ #ifndef __dialbox_h__ #define __dialbox_h__ /* External argument typing constants */ #define DB_PARA 0 /* Paragraph/line arguments; non-button */ struct dialog_box_struct { short type; /* 0 if line/paragraph, button return value (!0) if button */ short retval; /* 0 for no return, character (keyboard hotkey) for others */ char * text; }; typedef struct dialog_box_struct Dialog_Box; /* Public functions */ int dialog_box(int colour, int argc, ...); void dialog_refresh(); void dialog_close(int return_value); #define MAX_DBOX_ENTRIES 64 /* Huge, but necessary for current use */ #define LINE_MIN_SPACING 10 /* Extra space on both sides of Line items */ #define BUTTON_BORDER 2 #define BUTTON_HEIGHT CHAR_HEIGHT + BUTTON_BORDER #define BUTTON_MIN_SPACING 8 #define BORDER_SIZE 7 #define DB_V_SPACE 2 /* Extra space above and below text */ void dialog_close(int return_value) ; #endif lincity-1.13.1/lcconfig.h0000644000175000017500000000135510066257665012147 00000000000000/* ---------------------------------------------------------------------- * * lcconfig.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcconfig_h__ #define __lcconfig_h__ #if defined (HAVE_CONFIG_H) #include "config.h" #elif defined (WIN32) #include "confw32.h" #endif #if (SIZEOF_SHORT==4) typedef short Int32; #elif (SIZEOF_INT==4) typedef int Int32; #elif (SIZEOF_LONG==4) typedef long Int32; #else #error Int32 is not defined. #endif #if (SIZEOF_SHORT==2) typedef short Int16; #elif (SIZEOF_INT==2) typedef int Int16; #else #error Int16 is not defined. #endif #endif /* __lcconfig_h__ */ lincity-1.13.1/lchelp.h0000644000175000017500000000165007340321725011616 00000000000000/* ---------------------------------------------------------------------- * * help.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lchelp_h__ #define __lchelp_h__ #include "cliglobs.h" #define MAX_HELP_LINE 256 /* Max size of a line of a help file (+1) */ void do_help_mouse (int, int, int); void do_prefs_mouse (int, int, int); void refresh_help_page (void); extern void activate_help (char *); extern void draw_help_page (char *); extern void parse_tcolourline (char *); extern void parse_helpline (char *); extern void parse_textline (char *); extern void parse_iconline (char *); extern void draw_help_icon (int, int, char *); extern void parse_buttonline (char *); extern void do_help_buttons (int, int); extern void parse_tbuttonline (char *); #endif /* __lchelp_h__ */ lincity-1.13.1/lcintl.h0000644000175000017500000000144007657630325011643 00000000000000/* ---------------------------------------------------------------------- * * lcintl.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcintl_h__ #define __lcintl_h__ #ifdef HAVE_LOCALE_H #include #endif #ifdef ENABLE_NLS #include #define _(String) gettext(String) #if defined (commentout) /* GCS May 11, 2003 */ #define N_(String) gettext_noop(String) #endif #define N_(String) String #else #define _(String) String #define N_(String) String #define textdomain(Domain) #define bindtextdomain(Package, Directory) #endif /* Windows needs this */ #ifndef LC_MESSAGES #define LC_MESSAGES 1729 #endif #endif /* __lcintl_h__ */ lincity-1.13.1/lcstring.h0000644000175000017500000000100707340321725012170 00000000000000/* ---------------------------------------------------------------------- * * lcstring.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcstring_h__ #define __lcstring_h__ #if defined (HAVE_STRING_H) #include #endif #if defined (HAVE_STRINGS_H) #include #endif #if defined (HAVE_UNISTD_H) #include #endif #endif /* __lcstring_h__ */ lincity-1.13.1/lclib.h0000644000175000017500000000146710066274425011445 00000000000000/* ---------------------------------------------------------------------- * * lclib.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) Corey Keasling, 2001. * ---------------------------------------------------------------------- */ #ifndef _LCLIB_H #define _LCLIB_H char * current_month(int current_time); int current_year (int current_time); void format_number5 (char* str, int num); void format_pos_number4 (char* str, int num); void format_power(char * str, size_t size, long power); void * lcalloc (size_t size); int commify(char * str, size_t size, int argnum); void pad_with_blanks (char* str, int size); void num_to_ansi(char * s, size_t size, long num); int min_int (int i1, int i2); int max_int (int i1, int i2); #endif lincity-1.13.1/lctypes.h0000644000175000017500000010312510002571332012020 00000000000000/* ---------------------------------------------------------------------- * * lctypes.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lctypes_h__ #define __lctypes_h__ #define CST_GREEN 0 #define CST_GREEN_G "green.csi" #define LCT_GREEN_G "green" /* H=horiz V=vertical LD=left down etc. L= Live D=dead */ #define CST_POWERL_H_L 1 #define CST_POWERL_H_L_G "powerlhl.csi" #define LCT_POWERL_H_L_G "powerlhl" #define CST_POWERL_V_L 2 #define CST_POWERL_V_L_G "powerlvl.csi" #define LCT_POWERL_V_L_G "powerlvl" #define CST_POWERL_LD_L 3 #define CST_POWERL_LD_L_G "powerlldl.csi" #define LCT_POWERL_LD_L_G "powerlldl" #define CST_POWERL_RD_L 4 #define CST_POWERL_RD_L_G "powerlrdl.csi" #define LCT_POWERL_RD_L_G "powerlrdl" #define CST_POWERL_LU_L 5 #define CST_POWERL_LU_L_G "powerllul.csi" #define LCT_POWERL_LU_L_G "powerllul" #define CST_POWERL_RU_L 6 #define CST_POWERL_RU_L_G "powerlrul.csi" #define LCT_POWERL_RU_L_G "powerlrul" #define CST_POWERL_LDU_L 7 #define CST_POWERL_LDU_L_G "powerlldul.csi" #define LCT_POWERL_LDU_L_G "powerlldul" #define CST_POWERL_LDR_L 8 #define CST_POWERL_LDR_L_G "powerlldrl.csi" #define LCT_POWERL_LDR_L_G "powerlldrl" #define CST_POWERL_LUR_L 9 #define CST_POWERL_LUR_L_G "powerllurl.csi" #define LCT_POWERL_LUR_L_G "powerllurl" #define CST_POWERL_UDR_L 10 #define CST_POWERL_UDR_L_G "powerludrl.csi" #define LCT_POWERL_UDR_L_G "powerludrl" #define CST_POWERL_LUDR_L 11 #define CST_POWERL_LUDR_L_G "powerlludrl.csi" #define LCT_POWERL_LUDR_L_G "powerlludrl" #define CST_POWERL_H_D 12 #define CST_POWERL_H_D_G "powerlhd.csi" #define LCT_POWERL_H_D_G "powerlhd" #define CST_POWERL_V_D 13 #define CST_POWERL_V_D_G "powerlvd.csi" #define LCT_POWERL_V_D_G "powerlvd" #define CST_POWERL_LD_D 14 #define CST_POWERL_LD_D_G "powerlldd.csi" #define LCT_POWERL_LD_D_G "powerlldd" #define CST_POWERL_RD_D 15 #define CST_POWERL_RD_D_G "powerlrdd.csi" #define LCT_POWERL_RD_D_G "powerlrdd" #define CST_POWERL_LU_D 16 #define CST_POWERL_LU_D_G "powerllud.csi" #define LCT_POWERL_LU_D_G "powerllud" #define CST_POWERL_RU_D 17 #define CST_POWERL_RU_D_G "powerlrud.csi" #define LCT_POWERL_RU_D_G "powerlrud" #define CST_POWERL_LDU_D 18 #define CST_POWERL_LDU_D_G "powerlldud.csi" #define LCT_POWERL_LDU_D_G "powerlldud" #define CST_POWERL_LDR_D 19 #define CST_POWERL_LDR_D_G "powerlldrd.csi" #define LCT_POWERL_LDR_D_G "powerlldrd" #define CST_POWERL_LUR_D 20 #define CST_POWERL_LUR_D_G "powerllurd.csi" #define LCT_POWERL_LUR_D_G "powerllurd" #define CST_POWERL_UDR_D 21 #define CST_POWERL_UDR_D_G "powerludrd.csi" #define LCT_POWERL_UDR_D_G "powerludrd" #define CST_POWERL_LUDR_D 22 #define CST_POWERL_LUDR_D_G "powerlludrd.csi" #define LCT_POWERL_LUDR_D_G "powerlludrd" #define CST_SHANTY 23 #define CST_SHANTY_G "shanty.csi" #define LCT_SHANTY_G "shanty" /* move this to number 1 or 255 or something. OK here for now. */ #define CST_USED 39 #define CST_POWERS_SOLAR 40 #define CST_POWERS_SOLAR_G "powerssolar.csi" #define LCT_POWERS_SOLAR_G "powerssolar" #define CST_POWERS_COAL_EMPTY 41 #define CST_POWERS_COAL_EMPTY_G "powerscoal-empty.csi" #define LCT_POWERS_COAL_EMPTY_G "powerscoal-empty" #define CST_POWERS_COAL_LOW 42 #define CST_POWERS_COAL_LOW_G "powerscoal-low.csi" #define LCT_POWERS_COAL_LOW_G "powerscoal-low" #define CST_POWERS_COAL_MED 43 #define CST_POWERS_COAL_MED_G "powerscoal-med.csi" #define LCT_POWERS_COAL_MED_G "powerscoal-med" #define CST_POWERS_COAL_FULL 44 #define CST_POWERS_COAL_FULL_G "powerscoal-full.csi" #define LCT_POWERS_COAL_FULL_G "powerscoal-full" #define CST_BURNT 49 #define CST_BURNT_G "burnt_land.csi" #define LCT_BURNT_G "burnt_land" #define CST_SUBSTATION_R 50 #define CST_SUBSTATION_R_G "substation-R.csi" #define LCT_SUBSTATION_R_G "substation-R" #define CST_SUBSTATION_G 51 #define CST_SUBSTATION_G_G "substation-G.csi" #define LCT_SUBSTATION_G_G "substation-G" #define CST_SUBSTATION_RG 52 #define CST_SUBSTATION_RG_G "substation-RG.csi" #define LCT_SUBSTATION_RG_G "substation-RG" #define CST_UNIVERSITY 53 #define CST_UNIVERSITY_G "university.csi" #define LCT_UNIVERSITY_G "university" #define CST_RESIDENCE_LL 61 #define CST_RESIDENCE_LL_G "reslowlow.csi" #define LCT_RESIDENCE_LL_G "reslowlow" #define CST_RESIDENCE_ML 62 #define CST_RESIDENCE_ML_G "resmedlow.csi" #define LCT_RESIDENCE_ML_G "resmedlow" #define CST_RESIDENCE_HL 63 #define CST_RESIDENCE_HL_G "reshilow.csi" #define LCT_RESIDENCE_HL_G "reshilow" #define CST_RESIDENCE_LH 64 #define CST_RESIDENCE_LH_G "reslowhi.csi" #define LCT_RESIDENCE_LH_G "reslowhi" #define CST_RESIDENCE_MH 65 #define CST_RESIDENCE_MH_G "resmedhi.csi" #define LCT_RESIDENCE_MH_G "resmedhi" #define CST_RESIDENCE_HH 66 #define CST_RESIDENCE_HH_G "reshihi.csi" #define LCT_RESIDENCE_HH_G "reshihi" #define CST_MARKET_EMPTY 71 #define CST_MARKET_EMPTY_G "market-empty.csi" #define LCT_MARKET_EMPTY_G "market-empty" #define CST_MARKET_LOW 72 #define CST_MARKET_LOW_G "market-low.csi" #define LCT_MARKET_LOW_G "market-low" #define CST_MARKET_MED 73 #define CST_MARKET_MED_G "market-med.csi" #define LCT_MARKET_MED_G "market-med" #define CST_MARKET_FULL 74 #define CST_MARKET_FULL_G "market-full.csi" #define LCT_MARKET_FULL_G "market-full" #define CST_RECYCLE 79 #define CST_RECYCLE_G "recycle-centre.csi" #define LCT_RECYCLE_G "recycle-centre" #define CST_TRACK_LR 80 #define CST_TRACK_LR_G "tracklr.csi" #define LCT_TRACK_LR_G "tracklr" #define CST_TRACK_LU 81 #define CST_TRACK_LU_G "tracklu.csi" #define LCT_TRACK_LU_G "tracklu" #define CST_TRACK_LD 82 #define CST_TRACK_LD_G "trackld.csi" #define LCT_TRACK_LD_G "trackld" #define CST_TRACK_UD 83 #define CST_TRACK_UD_G "trackud.csi" #define LCT_TRACK_UD_G "trackud" #define CST_TRACK_UR 84 #define CST_TRACK_UR_G "trackur.csi" #define LCT_TRACK_UR_G "trackur" #define CST_TRACK_DR 85 #define CST_TRACK_DR_G "trackdr.csi" #define LCT_TRACK_DR_G "trackdr" #define CST_TRACK_LUR 86 #define CST_TRACK_LUR_G "tracklur.csi" #define LCT_TRACK_LUR_G "tracklur" #define CST_TRACK_LDR 87 #define CST_TRACK_LDR_G "trackldr.csi" #define LCT_TRACK_LDR_G "trackldr" #define CST_TRACK_LUD 88 #define CST_TRACK_LUD_G "tracklud.csi" #define LCT_TRACK_LUD_G "tracklud" #define CST_TRACK_UDR 89 #define CST_TRACK_UDR_G "trackudr.csi" #define LCT_TRACK_UDR_G "trackudr" #define CST_TRACK_LUDR 90 #define CST_TRACK_LUDR_G "trackludr.csi" #define LCT_TRACK_LUDR_G "trackludr" #define CST_PARKLAND_PLANE 91 #define CST_PARKLAND_PLANE_G "parkland-plane.csi" #define LCT_PARKLAND_PLANE_G "parkland-plane" #define CST_PARKLAND_LAKE 92 #define CST_PARKLAND_LAKE_G "parkland-lake.csi" #define LCT_PARKLAND_LAKE_G "parkland-lake" #define CST_MONUMENT_0 93 #define CST_MONUMENT_0_G "monument0.csi" #define LCT_MONUMENT_0_G "monument0" #define CST_MONUMENT_1 94 #define CST_MONUMENT_1_G "monument1.csi" #define LCT_MONUMENT_1_G "monument1" #define CST_MONUMENT_2 95 #define CST_MONUMENT_2_G "monument2.csi" #define LCT_MONUMENT_2_G "monument2" #define CST_MONUMENT_3 96 #define CST_MONUMENT_3_G "monument3.csi" #define LCT_MONUMENT_3_G "monument3" #define CST_MONUMENT_4 97 #define CST_MONUMENT_4_G "monument4.csi" #define LCT_MONUMENT_4_G "monument4" #define CST_MONUMENT_5 98 #define CST_MONUMENT_5_G "monument5.csi" #define LCT_MONUMENT_5_G "monument5" #define CST_COALMINE_EMPTY 100 #define CST_COALMINE_EMPTY_G "coalmine-empty.csi" #define LCT_COALMINE_EMPTY_G "coalmine-empty" #define CST_COALMINE_LOW 101 #define CST_COALMINE_LOW_G "coalmine-low.csi" #define LCT_COALMINE_LOW_G "coalmine-low" #define CST_COALMINE_MED 102 #define CST_COALMINE_MED_G "coalmine-med.csi" #define LCT_COALMINE_MED_G "coalmine-med" #define CST_COALMINE_FULL 103 #define CST_COALMINE_FULL_G "coalmine-full.csi" #define LCT_COALMINE_FULL_G "coalmine-full" #define CST_RAIL_LR 110 #define CST_RAIL_LR_G "raillr.csi" #define LCT_RAIL_LR_G "raillr" #define CST_RAIL_LU 111 #define CST_RAIL_LU_G "raillu.csi" #define LCT_RAIL_LU_G "raillu" #define CST_RAIL_LD 112 #define CST_RAIL_LD_G "railld.csi" #define LCT_RAIL_LD_G "railld" #define CST_RAIL_UD 113 #define CST_RAIL_UD_G "railud.csi" #define LCT_RAIL_UD_G "railud" #define CST_RAIL_UR 114 #define CST_RAIL_UR_G "railur.csi" #define LCT_RAIL_UR_G "railur" #define CST_RAIL_DR 115 #define CST_RAIL_DR_G "raildr.csi" #define LCT_RAIL_DR_G "raildr" #define CST_RAIL_LUR 116 #define CST_RAIL_LUR_G "raillur.csi" #define LCT_RAIL_LUR_G "raillur" #define CST_RAIL_LDR 117 #define CST_RAIL_LDR_G "railldr.csi" #define LCT_RAIL_LDR_G "railldr" #define CST_RAIL_LUD 118 #define CST_RAIL_LUD_G "raillud.csi" #define LCT_RAIL_LUD_G "raillud" #define CST_RAIL_UDR 119 #define CST_RAIL_UDR_G "railudr.csi" #define LCT_RAIL_UDR_G "railudr" #define CST_RAIL_LUDR 120 #define CST_RAIL_LUDR_G "railludr.csi" #define LCT_RAIL_LUDR_G "railludr" #define CST_FIRE_1 121 #define CST_FIRE_1_G "fire1.csi" #define LCT_FIRE_1_G "fire1" #define CST_FIRE_2 122 #define CST_FIRE_2_G "fire2.csi" #define LCT_FIRE_2_G "fire2" #define CST_FIRE_3 123 #define CST_FIRE_3_G "fire3.csi" #define LCT_FIRE_3_G "fire3" #define CST_FIRE_4 124 #define CST_FIRE_4_G "fire4.csi" #define LCT_FIRE_4_G "fire4" #define CST_FIRE_5 125 #define CST_FIRE_5_G "fire5.csi" #define LCT_FIRE_5_G "fire5" #define CST_FIRE_DONE1 126 #define CST_FIRE_DONE1_G "firedone1.csi" #define LCT_FIRE_DONE1_G "firedone1" #define CST_FIRE_DONE2 127 #define CST_FIRE_DONE2_G "firedone2.csi" #define LCT_FIRE_DONE2_G "firedone2" #define CST_FIRE_DONE3 128 #define CST_FIRE_DONE3_G "firedone3.csi" #define LCT_FIRE_DONE3_G "firedone3" #define CST_FIRE_DONE4 129 #define CST_FIRE_DONE4_G "firedone4.csi" #define LCT_FIRE_DONE4_G "firedone4" #define CST_ROAD_LR 130 #define CST_ROAD_LR_G "roadlr.csi" #define LCT_ROAD_LR_G "roadlr" #define CST_ROAD_LU 131 #define CST_ROAD_LU_G "roadlu.csi" #define LCT_ROAD_LU_G "roadlu" #define CST_ROAD_LD 132 #define CST_ROAD_LD_G "roadld.csi" #define LCT_ROAD_LD_G "roadld" #define CST_ROAD_UD 133 #define CST_ROAD_UD_G "roadud.csi" #define LCT_ROAD_UD_G "roadud" #define CST_ROAD_UR 134 #define CST_ROAD_UR_G "roadur.csi" #define LCT_ROAD_UR_G "roadur" #define CST_ROAD_DR 135 #define CST_ROAD_DR_G "roaddr.csi" #define LCT_ROAD_DR_G "roaddr" #define CST_ROAD_LUR 136 #define CST_ROAD_LUR_G "roadlur.csi" #define LCT_ROAD_LUR_G "roadlur" #define CST_ROAD_LDR 137 #define CST_ROAD_LDR_G "roadldr.csi" #define LCT_ROAD_LDR_G "roadldr" #define CST_ROAD_LUD 138 #define CST_ROAD_LUD_G "roadlud.csi" #define LCT_ROAD_LUD_G "roadlud" #define CST_ROAD_UDR 139 #define CST_ROAD_UDR_G "roadudr.csi" #define LCT_ROAD_UDR_G "roadudr" #define CST_ROAD_LUDR 140 #define CST_ROAD_LUDR_G "roadludr.csi" #define LCT_ROAD_LUDR_G "roadludr" #define CST_OREMINE_5 146 #define CST_OREMINE_5_G "oremine5.csi" #define LCT_OREMINE_5_G "oremine5" #define CST_OREMINE_6 147 #define CST_OREMINE_6_G "oremine6.csi" #define LCT_OREMINE_6_G "oremine6" #define CST_OREMINE_7 148 #define CST_OREMINE_7_G "oremine7.csi" #define LCT_OREMINE_7_G "oremine7" #define CST_OREMINE_8 149 #define CST_OREMINE_8_G "oremine8.csi" #define LCT_OREMINE_8_G "oremine8" #define CST_OREMINE_1 150 #define CST_OREMINE_1_G "oremine1.csi" #define LCT_OREMINE_1_G "oremine1" #define CST_OREMINE_2 151 #define CST_OREMINE_2_G "oremine2.csi" #define LCT_OREMINE_2_G "oremine2" #define CST_OREMINE_3 152 #define CST_OREMINE_3_G "oremine3.csi" #define LCT_OREMINE_3_G "oremine3" #define CST_OREMINE_4 153 #define CST_OREMINE_4_G "oremine4.csi" #define LCT_OREMINE_4_G "oremine4" #define CST_HEALTH 155 #define CST_HEALTH_G "health.csi" #define LCT_HEALTH_G "health" #define CST_SCHOOL 156 #define CST_SCHOOL_G "school0.csi" #define LCT_SCHOOL_G "school0" #define CST_EX_PORT 161 #define CST_EX_PORT_G "ex_port.csi" #define LCT_EX_PORT_G "ex_port" #define CST_MILL_0 162 #define CST_MILL_0_G "mill0.csi" #define LCT_MILL_0_G "mill0" #define CST_MILL_1 163 #define CST_MILL_1_G "mill1.csi" #define LCT_MILL_1_G "mill1" #define CST_MILL_2 164 #define CST_MILL_2_G "mill2.csi" #define LCT_MILL_2_G "mill2" #define CST_MILL_3 165 #define CST_MILL_3_G "mill3.csi" #define LCT_MILL_3_G "mill3" #define CST_MILL_4 166 #define CST_MILL_4_G "mill4.csi" #define LCT_MILL_4_G "mill4" #define CST_MILL_5 167 #define CST_MILL_5_G "mill5.csi" #define LCT_MILL_5_G "mill5" #define CST_MILL_6 168 #define CST_MILL_6_G "mill6.csi" #define LCT_MILL_6_G "mill6" #define CST_ROCKET_1 180 #define CST_ROCKET_1_G "rocket1.csi" #define LCT_ROCKET_1_G "rocket1" #define CST_ROCKET_2 181 #define CST_ROCKET_2_G "rocket2.csi" #define LCT_ROCKET_2_G "rocket2" #define CST_ROCKET_3 182 #define CST_ROCKET_3_G "rocket3.csi" #define LCT_ROCKET_3_G "rocket3" #define CST_ROCKET_4 183 #define CST_ROCKET_4_G "rocket4.csi" #define LCT_ROCKET_4_G "rocket4" #define CST_ROCKET_5 184 #define CST_ROCKET_5_G "rocket5.csi" #define LCT_ROCKET_5_G "rocket5" #define CST_ROCKET_6 185 #define CST_ROCKET_6_G "rocket6.csi" #define LCT_ROCKET_6_G "rocket6" #define CST_ROCKET_7 186 #define CST_ROCKET_7_G "rocket7.csi" #define LCT_ROCKET_7_G "rocket7" #define CST_ROCKET_FLOWN 187 #define CST_ROCKET_FLOWN_G "rocketflown.csi" #define LCT_ROCKET_FLOWN_G "rocketflown" #define CST_WINDMILL_1_G 190 #define CST_WINDMILL_1_G_G "windmill1g.csi" #define LCT_WINDMILL_1_G_G "windmill1g" #define CST_WINDMILL_2_G 191 #define CST_WINDMILL_2_G_G "windmill2g.csi" #define LCT_WINDMILL_2_G_G "windmill2g" #define CST_WINDMILL_3_G 192 #define CST_WINDMILL_3_G_G "windmill3g.csi" #define LCT_WINDMILL_3_G_G "windmill3g" #define CST_WINDMILL_1_RG 193 #define CST_WINDMILL_1_RG_G "windmill1rg.csi" #define LCT_WINDMILL_1_RG_G "windmill1rg" #define CST_WINDMILL_2_RG 194 #define CST_WINDMILL_2_RG_G "windmill2rg.csi" #define LCT_WINDMILL_2_RG_G "windmill2rg" #define CST_WINDMILL_3_RG 195 #define CST_WINDMILL_3_RG_G "windmill3rg.csi" #define LCT_WINDMILL_3_RG_G "windmill3rg" #define CST_WINDMILL_1_R 196 #define CST_WINDMILL_1_R_G "windmill1r.csi" #define LCT_WINDMILL_1_R_G "windmill1r" #define CST_WINDMILL_2_R 197 #define CST_WINDMILL_2_R_G "windmill2r.csi" #define LCT_WINDMILL_2_R_G "windmill2r" #define CST_WINDMILL_3_R 198 #define CST_WINDMILL_3_R_G "windmill3r.csi" #define LCT_WINDMILL_3_R_G "windmill3r" #define CST_WINDMILL_1_W 199 #define CST_WINDMILL_1_W_G "windmill1w.csi" #define LCT_WINDMILL_1_W_G "windmill1w" #define CST_WINDMILL_2_W 200 #define CST_WINDMILL_2_W_G "windmill2w.csi" #define LCT_WINDMILL_2_W_G "windmill2w" #define CST_WINDMILL_3_W 201 #define CST_WINDMILL_3_W_G "windmill3w.csi" #define LCT_WINDMILL_3_W_G "windmill3w" #define CST_BLACKSMITH_0 202 #define CST_BLACKSMITH_0_G "blacksmith0.csi" #define LCT_BLACKSMITH_0_G "blacksmith0" #define CST_BLACKSMITH_1 203 #define CST_BLACKSMITH_1_G "blacksmith1.csi" #define LCT_BLACKSMITH_1_G "blacksmith1" #define CST_BLACKSMITH_2 204 #define CST_BLACKSMITH_2_G "blacksmith2.csi" #define LCT_BLACKSMITH_2_G "blacksmith2" #define CST_BLACKSMITH_3 205 #define CST_BLACKSMITH_3_G "blacksmith3.csi" #define LCT_BLACKSMITH_3_G "blacksmith3" #define CST_BLACKSMITH_4 206 #define CST_BLACKSMITH_4_G "blacksmith4.csi" #define LCT_BLACKSMITH_4_G "blacksmith4" #define CST_BLACKSMITH_5 207 #define CST_BLACKSMITH_5_G "blacksmith5.csi" #define LCT_BLACKSMITH_5_G "blacksmith5" #define CST_BLACKSMITH_6 208 #define CST_BLACKSMITH_6_G "blacksmith6.csi" #define LCT_BLACKSMITH_6_G "blacksmith6" #define CST_POTTERY_0 210 #define CST_POTTERY_0_G "pottery0.csi" #define LCT_POTTERY_0_G "pottery0" #define CST_POTTERY_1 211 #define CST_POTTERY_1_G "pottery1.csi" #define LCT_POTTERY_1_G "pottery1" #define CST_POTTERY_2 212 #define CST_POTTERY_2_G "pottery2.csi" #define LCT_POTTERY_2_G "pottery2" #define CST_POTTERY_3 213 #define CST_POTTERY_3_G "pottery3.csi" #define LCT_POTTERY_3_G "pottery3" #define CST_POTTERY_4 214 #define CST_POTTERY_4_G "pottery4.csi" #define LCT_POTTERY_4_G "pottery4" #define CST_POTTERY_5 215 #define CST_POTTERY_5_G "pottery5.csi" #define LCT_POTTERY_5_G "pottery5" #define CST_POTTERY_6 216 #define CST_POTTERY_6_G "pottery6.csi" #define LCT_POTTERY_6_G "pottery6" #define CST_POTTERY_7 217 #define CST_POTTERY_7_G "pottery7.csi" #define LCT_POTTERY_7_G "pottery7" #define CST_POTTERY_8 218 #define CST_POTTERY_8_G "pottery8.csi" #define LCT_POTTERY_8_G "pottery8" #define CST_POTTERY_9 219 #define CST_POTTERY_9_G "pottery9.csi" #define LCT_POTTERY_9_G "pottery9" #define CST_POTTERY_10 220 #define CST_POTTERY_10_G "pottery10.csi" #define LCT_POTTERY_10_G "pottery10" #define CST_WATER 221 #define CST_WATER_G "water.csi" #define LCT_WATER_G "water" #define CST_WATER_D 222 #define CST_WATER_D_G "waterd.csi" #define LCT_WATER_D_G "waterd" #define CST_WATER_R 223 #define CST_WATER_R_G "waterr.csi" #define LCT_WATER_R_G "waterr" #define CST_WATER_U 224 #define CST_WATER_U_G "wateru.csi" #define LCT_WATER_U_G "wateru" #define CST_WATER_L 225 #define CST_WATER_L_G "waterl.csi" #define LCT_WATER_L_G "waterl" #define CST_WATER_LR 226 #define CST_WATER_LR_G "waterlr.csi" #define LCT_WATER_LR_G "waterlr" #define CST_WATER_UD 227 #define CST_WATER_UD_G "waterud.csi" #define LCT_WATER_UD_G "waterud" #define CST_WATER_LD 228 #define CST_WATER_LD_G "waterld.csi" #define LCT_WATER_LD_G "waterld" #define CST_WATER_RD 229 #define CST_WATER_RD_G "waterrd.csi" #define LCT_WATER_RD_G "waterrd" #define CST_WATER_LU 230 #define CST_WATER_LU_G "waterlu.csi" #define LCT_WATER_LU_G "waterlu" #define CST_WATER_UR 231 #define CST_WATER_UR_G "waterur.csi" #define LCT_WATER_UR_G "waterur" #define CST_WATER_LUD 232 #define CST_WATER_LUD_G "waterlud.csi" #define LCT_WATER_LUD_G "waterlud" #define CST_WATER_LRD 233 #define CST_WATER_LRD_G "waterlrd.csi" #define LCT_WATER_LRD_G "waterlrd" #define CST_WATER_LUR 234 #define CST_WATER_LUR_G "waterlur.csi" #define LCT_WATER_LUR_G "waterlur" #define CST_WATER_URD 235 #define CST_WATER_URD_G "waterurd.csi" #define LCT_WATER_URD_G "waterurd" #define CST_WATER_LURD 236 #define CST_WATER_LURD_G "waterlurd.csi" #define LCT_WATER_LURD_G "waterlurd" #define CST_CRICKET_1 240 #define CST_CRICKET_1_G "cricket1.csi" #define LCT_CRICKET_1_G "cricket1" #define CST_CRICKET_2 241 #define CST_CRICKET_2_G "cricket2.csi" #define LCT_CRICKET_2_G "cricket2" #define CST_CRICKET_3 242 #define CST_CRICKET_3_G "cricket3.csi" #define LCT_CRICKET_3_G "cricket3" #define CST_CRICKET_4 243 #define CST_CRICKET_4_G "cricket4.csi" #define LCT_CRICKET_4_G "cricket4" #define CST_CRICKET_5 244 #define CST_CRICKET_5_G "cricket5.csi" #define LCT_CRICKET_5_G "cricket5" #define CST_CRICKET_6 245 #define CST_CRICKET_6_G "cricket6.csi" #define LCT_CRICKET_6_G "cricket6" #define CST_CRICKET_7 246 #define CST_CRICKET_7_G "cricket7.csi" #define LCT_CRICKET_7_G "cricket7" #define CST_FIRESTATION_1 250 #define CST_FIRESTATION_1_G "firestation1.csi" #define LCT_FIRESTATION_1_G "firestation1" #define CST_FIRESTATION_2 251 #define CST_FIRESTATION_2_G "firestation2.csi" #define LCT_FIRESTATION_2_G "firestation2" #define CST_FIRESTATION_3 252 #define CST_FIRESTATION_3_G "firestation3.csi" #define LCT_FIRESTATION_3_G "firestation3" #define CST_FIRESTATION_4 253 #define CST_FIRESTATION_4_G "firestation4.csi" #define LCT_FIRESTATION_4_G "firestation4" #define CST_FIRESTATION_5 254 #define CST_FIRESTATION_5_G "firestation5.csi" #define LCT_FIRESTATION_5_G "firestation5" #define CST_FIRESTATION_6 255 #define CST_FIRESTATION_6_G "firestation6.csi" #define LCT_FIRESTATION_6_G "firestation6" #define CST_FIRESTATION_7 256 #define CST_FIRESTATION_7_G "firestation7.csi" #define LCT_FIRESTATION_7_G "firestation7" #define CST_FIRESTATION_8 257 #define CST_FIRESTATION_8_G "firestation8.csi" #define LCT_FIRESTATION_8_G "firestation8" #define CST_FIRESTATION_9 258 #define CST_FIRESTATION_9_G "firestation9.csi" #define LCT_FIRESTATION_9_G "firestation9" #define CST_FIRESTATION_10 259 #define CST_FIRESTATION_10_G "firestation10.csi" #define LCT_FIRESTATION_10_G "firestation10" #define CST_TIP_0 260 #define CST_TIP_0_G "tip0.csi" #define LCT_TIP_0_G "tip0" #define CST_TIP_1 261 #define CST_TIP_1_G "tip1.csi" #define LCT_TIP_1_G "tip1" #define CST_TIP_2 262 #define CST_TIP_2_G "tip2.csi" #define LCT_TIP_2_G "tip2" #define CST_TIP_3 263 #define CST_TIP_3_G "tip3.csi" #define LCT_TIP_3_G "tip3" #define CST_TIP_4 264 #define CST_TIP_4_G "tip4.csi" #define LCT_TIP_4_G "tip4" #define CST_TIP_5 265 #define CST_TIP_5_G "tip5.csi" #define LCT_TIP_5_G "tip5" #define CST_TIP_6 266 #define CST_TIP_6_G "tip6.csi" #define LCT_TIP_6_G "tip6" #define CST_TIP_7 267 #define CST_TIP_7_G "tip7.csi" #define LCT_TIP_7_G "tip7" #define CST_TIP_8 268 #define CST_TIP_8_G "tip8.csi" #define LCT_TIP_8_G "tip8" #define CST_COMMUNE_1 270 #define CST_COMMUNE_1_G "commune1.csi" #define LCT_COMMUNE_1_G "commune1" #define CST_COMMUNE_2 271 #define CST_COMMUNE_2_G "commune2.csi" #define LCT_COMMUNE_2_G "commune2" #define CST_COMMUNE_3 272 #define CST_COMMUNE_3_G "commune3.csi" #define LCT_COMMUNE_3_G "commune3" #define CST_COMMUNE_4 273 #define CST_COMMUNE_4_G "commune4.csi" #define LCT_COMMUNE_4_G "commune4" #define CST_COMMUNE_5 274 #define CST_COMMUNE_5_G "commune5.csi" #define LCT_COMMUNE_5_G "commune5" #define CST_COMMUNE_6 275 #define CST_COMMUNE_6_G "commune6.csi" #define LCT_COMMUNE_6_G "commune6" #define CST_COMMUNE_7 276 #define CST_COMMUNE_7_G "commune7.csi" #define LCT_COMMUNE_7_G "commune7" #define CST_COMMUNE_8 277 #define CST_COMMUNE_8_G "commune8.csi" #define LCT_COMMUNE_8_G "commune8" #define CST_COMMUNE_9 278 #define CST_COMMUNE_9_G "commune9.csi" #define LCT_COMMUNE_9_G "commune9" #define CST_COMMUNE_10 279 #define CST_COMMUNE_10_G "commune10.csi" #define LCT_COMMUNE_10_G "commune10" #define CST_COMMUNE_11 280 #define CST_COMMUNE_11_G "commune11.csi" #define LCT_COMMUNE_11_G "commune11" #define CST_COMMUNE_12 281 #define CST_COMMUNE_12_G "commune12.csi" #define LCT_COMMUNE_12_G "commune12" #define CST_COMMUNE_13 282 #define CST_COMMUNE_13_G "commune13.csi" #define LCT_COMMUNE_13_G "commune13" #define CST_COMMUNE_14 283 #define CST_COMMUNE_14_G "commune14.csi" #define LCT_COMMUNE_14_G "commune14" #define CST_INDUSTRY_H_C 290 #define CST_INDUSTRY_H_C_G "industryhc.csi" #define LCT_INDUSTRY_H_C_G "industryhc" #define CST_INDUSTRY_H_L1 291 #define CST_INDUSTRY_H_L1_G "industryhl1.csi" #define LCT_INDUSTRY_H_L1_G "industryhl1" #define CST_INDUSTRY_H_L2 292 #define CST_INDUSTRY_H_L2_G "industryhl2.csi" #define LCT_INDUSTRY_H_L2_G "industryhl2" #define CST_INDUSTRY_H_L3 293 #define CST_INDUSTRY_H_L3_G "industryhl3.csi" #define LCT_INDUSTRY_H_L3_G "industryhl3" #define CST_INDUSTRY_H_L4 294 #define CST_INDUSTRY_H_L4_G "industryhl4.csi" #define LCT_INDUSTRY_H_L4_G "industryhl4" #define CST_INDUSTRY_H_L5 295 #define CST_INDUSTRY_H_L5_G "industryhl5.csi" #define LCT_INDUSTRY_H_L5_G "industryhl5" #define CST_INDUSTRY_H_L6 296 #define CST_INDUSTRY_H_L6_G "industryhl6.csi" #define LCT_INDUSTRY_H_L6_G "industryhl6" #define CST_INDUSTRY_H_L7 297 #define CST_INDUSTRY_H_L7_G "industryhl7.csi" #define LCT_INDUSTRY_H_L7_G "industryhl7" #define CST_INDUSTRY_H_L8 298 #define CST_INDUSTRY_H_L8_G "industryhl8.csi" #define LCT_INDUSTRY_H_L8_G "industryhl8" #define CST_INDUSTRY_H_M1 299 #define CST_INDUSTRY_H_M1_G "industryhm1.csi" #define LCT_INDUSTRY_H_M1_G "industryhm1" #define CST_INDUSTRY_H_M2 300 #define CST_INDUSTRY_H_M2_G "industryhm2.csi" #define LCT_INDUSTRY_H_M2_G "industryhm2" #define CST_INDUSTRY_H_M3 301 #define CST_INDUSTRY_H_M3_G "industryhm3.csi" #define LCT_INDUSTRY_H_M3_G "industryhm3" #define CST_INDUSTRY_H_M4 302 #define CST_INDUSTRY_H_M4_G "industryhm4.csi" #define LCT_INDUSTRY_H_M4_G "industryhm4" #define CST_INDUSTRY_H_M5 303 #define CST_INDUSTRY_H_M5_G "industryhm5.csi" #define LCT_INDUSTRY_H_M5_G "industryhm5" #define CST_INDUSTRY_H_M6 304 #define CST_INDUSTRY_H_M6_G "industryhm6.csi" #define LCT_INDUSTRY_H_M6_G "industryhm6" #define CST_INDUSTRY_H_M7 305 #define CST_INDUSTRY_H_M7_G "industryhm7.csi" #define LCT_INDUSTRY_H_M7_G "industryhm7" #define CST_INDUSTRY_H_M8 306 #define CST_INDUSTRY_H_M8_G "industryhm8.csi" #define LCT_INDUSTRY_H_M8_G "industryhm8" #define CST_INDUSTRY_H_H1 307 #define CST_INDUSTRY_H_H1_G "industryhh1.csi" #define LCT_INDUSTRY_H_H1_G "industryhh1" #define CST_INDUSTRY_H_H2 308 #define CST_INDUSTRY_H_H2_G "industryhh2.csi" #define LCT_INDUSTRY_H_H2_G "industryhh2" #define CST_INDUSTRY_H_H3 309 #define CST_INDUSTRY_H_H3_G "industryhh3.csi" #define LCT_INDUSTRY_H_H3_G "industryhh3" #define CST_INDUSTRY_H_H4 310 #define CST_INDUSTRY_H_H4_G "industryhh4.csi" #define LCT_INDUSTRY_H_H4_G "industryhh4" #define CST_INDUSTRY_H_H5 311 #define CST_INDUSTRY_H_H5_G "industryhh5.csi" #define LCT_INDUSTRY_H_H5_G "industryhh5" #define CST_INDUSTRY_H_H6 312 #define CST_INDUSTRY_H_H6_G "industryhh6.csi" #define LCT_INDUSTRY_H_H6_G "industryhh6" #define CST_INDUSTRY_H_H7 313 #define CST_INDUSTRY_H_H7_G "industryhh7.csi" #define LCT_INDUSTRY_H_H7_G "industryhh7" #define CST_INDUSTRY_H_H8 314 #define CST_INDUSTRY_H_H8_G "industryhh8.csi" #define LCT_INDUSTRY_H_H8_G "industryhh8" #define CST_INDUSTRY_L_C 315 #define CST_INDUSTRY_L_C_G "industrylq1.csi" #define LCT_INDUSTRY_L_C_G "industrylq1" #define CST_INDUSTRY_L_Q1 316 #define CST_INDUSTRY_L_Q1_G "industrylq1.csi" #define LCT_INDUSTRY_L_Q1_G "industrylq1" #define CST_INDUSTRY_L_Q2 317 #define CST_INDUSTRY_L_Q2_G "industrylq2.csi" #define LCT_INDUSTRY_L_Q2_G "industrylq2" #define CST_INDUSTRY_L_Q3 318 #define CST_INDUSTRY_L_Q3_G "industrylq3.csi" #define LCT_INDUSTRY_L_Q3_G "industrylq3" #define CST_INDUSTRY_L_Q4 319 #define CST_INDUSTRY_L_Q4_G "industrylq4.csi" #define LCT_INDUSTRY_L_Q4_G "industrylq4" #define CST_INDUSTRY_L_L1 320 #define CST_INDUSTRY_L_L1_G "industryll1.csi" #define LCT_INDUSTRY_L_L1_G "industryll1" #define CST_INDUSTRY_L_L2 321 #define CST_INDUSTRY_L_L2_G "industryll2.csi" #define LCT_INDUSTRY_L_L2_G "industryll2" #define CST_INDUSTRY_L_L3 322 #define CST_INDUSTRY_L_L3_G "industryll3.csi" #define LCT_INDUSTRY_L_L3_G "industryll3" #define CST_INDUSTRY_L_L4 323 #define CST_INDUSTRY_L_L4_G "industryll4.csi" #define LCT_INDUSTRY_L_L4_G "industryll4" #define CST_INDUSTRY_L_M1 324 #define CST_INDUSTRY_L_M1_G "industrylm1.csi" #define LCT_INDUSTRY_L_M1_G "industrylm1" #define CST_INDUSTRY_L_M2 325 #define CST_INDUSTRY_L_M2_G "industrylm2.csi" #define LCT_INDUSTRY_L_M2_G "industrylm2" #define CST_INDUSTRY_L_M3 326 #define CST_INDUSTRY_L_M3_G "industrylm3.csi" #define LCT_INDUSTRY_L_M3_G "industrylm3" #define CST_INDUSTRY_L_M4 327 #define CST_INDUSTRY_L_M4_G "industrylm4.csi" #define LCT_INDUSTRY_L_M4_G "industrylm4" #define CST_INDUSTRY_L_H1 328 #define CST_INDUSTRY_L_H1_G "industrylh1.csi" #define LCT_INDUSTRY_L_H1_G "industrylh1" #define CST_INDUSTRY_L_H2 329 #define CST_INDUSTRY_L_H2_G "industrylh2.csi" #define LCT_INDUSTRY_L_H2_G "industrylh2" #define CST_INDUSTRY_L_H3 330 #define CST_INDUSTRY_L_H3_G "industrylh3.csi" #define LCT_INDUSTRY_L_H3_G "industrylh3" #define CST_INDUSTRY_L_H4 331 #define CST_INDUSTRY_L_H4_G "industrylh4.csi" #define LCT_INDUSTRY_L_H4_G "industrylh4" #define CST_FARM_O0 332 #define CST_FARM_O0_G "farm0.csi" #define LCT_FARM_O0_G "farm0" #define CST_FARM_O1 333 #define CST_FARM_O1_G "farm1.csi" #define LCT_FARM_O1_G "farm1" #define CST_FARM_O2 334 #define CST_FARM_O2_G "farm2.csi" #define LCT_FARM_O2_G "farm2" #define CST_FARM_O3 335 #define CST_FARM_O3_G "farm3.csi" #define LCT_FARM_O3_G "farm3" #define CST_FARM_O4 336 #define CST_FARM_O4_G "farm4.csi" #define LCT_FARM_O4_G "farm4" #define CST_FARM_O5 337 #define CST_FARM_O5_G "farm5.csi" #define LCT_FARM_O5_G "farm5" #define CST_FARM_O6 338 #define CST_FARM_O6_G "farm6.csi" #define LCT_FARM_O6_G "farm6" #define CST_FARM_O7 339 #define CST_FARM_O7_G "farm7.csi" #define LCT_FARM_O7_G "farm7" #define CST_FARM_O8 340 #define CST_FARM_O8_G "farm8.csi" #define LCT_FARM_O8_G "farm8" #define CST_FARM_O9 341 #define CST_FARM_O9_G "farm9.csi" #define LCT_FARM_O9_G "farm9" #define CST_FARM_O10 342 #define CST_FARM_O10_G "farm10.csi" #define LCT_FARM_O10_G "farm10" #define CST_FARM_O11 343 #define CST_FARM_O11_G "farm11.csi" #define LCT_FARM_O11_G "farm11" #define CST_FARM_O12 344 #define CST_FARM_O12_G "farm12.csi" #define LCT_FARM_O12_G "farm12" #define CST_FARM_O13 345 #define CST_FARM_O13_G "farm13.csi" #define LCT_FARM_O13_G "farm13" #define CST_FARM_O14 346 #define CST_FARM_O14_G "farm14.csi" #define LCT_FARM_O14_G "farm14" #define CST_FARM_O15 347 #define CST_FARM_O15_G "farm15.csi" #define LCT_FARM_O15_G "farm15" #define CST_FARM_O16 348 #define CST_FARM_O16_G "farm16.csi" #define LCT_FARM_O16_G "farm16" /* // ********************************* // 400 is the maximum at the moment. // ********************************* */ #endif /* __lctypes_h__ */ lincity-1.13.1/lcwin32.h0000644000175000017500000001267007757310566011651 00000000000000/* ---------------------------------------------------------------------- * * lcwin32.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcwin32_h__ #define __lcwin32_h__ // Turn off compiler warning converting const double to float #pragma warning(disable : 4244) /* ---------------------------------------------------------------------- * * Defines * ---------------------------------------------------------------------- */ #define APPNAME "Lincity" // Operating System Versions #if defined (WIN32) #define IS_WIN32 TRUE #else /* */ #define IS_WIN32 FALSE #endif /* */ #define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0x80000000) #define IS_WIN32S IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4)) #define IS_WIN95 (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32 #define WINWIDTH 640 #define WINHEIGHT 480 // Palette and DIB constants #define PALETTESIZE 256 #define PALVERSION 0x300 // --------------------------------------------------------------------------- // Macros // --------------------------------------------------------------------------- /* Handle to a DIB */ DECLARE_HANDLE (HDIB); // DIB Macros #define IS_WIN30_DIB(lpbi) ((*(LPDWORD)(lpbi)) == sizeof(BITMAPINFOHEADER)) #define RECTWIDTH(lpRect) ((lpRect)->right - (lpRect)->left) #define RECTHEIGHT(lpRect) ((lpRect)->bottom - (lpRect)->top) // WIDTHBYTES performs DWORD-aligning of DIB scanlines. The "bits" // parameter is the bit count for the scanline (biWidth * biBitCount), // and this macro returns the number of DWORD-aligned bytes needed // to hold those bits. #define WIDTHBYTES(bits) (((bits) + 31) / 32 * 4) // --------------------------------------------------------------------------- // Type Definitions // --------------------------------------------------------------------------- typedef struct _disp { HINSTANCE hInst; HANDLE hAccelTable; HWND hWnd; HDC hdcMem; HBITMAP hBitmap; // Backing store HDC hSaveUnderHdc; HBITMAP hSaveUnderBitmap; int winX; int winY; int winW; int winH; BOOL fullscreen; INT screenW; // Width of screen INT screenH; // Height of screen INT winFullscreenClientW; // Width of full screen window INT winFullscreenClientH; // Height of full screen window INT clientW; // Width of pixmap (adjusted by borderx/pix_double) INT clientH; // Height of pixmap (adjusted by borderx/pix_double) long colorDepth; // Number of color planes (e.g. 24 for full color) int min_h; // Minimum size for resizing int min_w; // Minimum size for resizing BOOL useDIB; // Use DIB or DDB? BITMAPINFO *pbminfo; // DIB Header PBYTE pBits; // DIB Bits HBITMAP hDIB; // DIB BITMAP BOOL hasPalette; INT paletteSize; // Only valid if hasPalette INT defaultPaletteSize; // Only valid if hasPalette HANDLE hPal; // Handle to the application's logical palette HANDLE hPaletteMemOri; // Original palette for hdcMem NPLOGPALETTE pLogPal; // Pointer to program's logical palette COLORREF colorrefPal[256]; // For mapping index to COLORREF (for full color) HBRUSH brushPal[256]; // For mapping index to HBRUSH HFONT hFont; // Lin City font } disp; // --------------------------------------------------------------------------- // Globals // --------------------------------------------------------------------------- extern HANDLE hAccelTable; extern disp display; extern char *bg_color; extern int verbose; extern int pix_double; extern int text_bg; extern int text_fg; extern int x_key_value; extern BOOL x_key_shifted; extern int borderx, bordery; extern long unsigned int colour_table[256]; extern int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag; extern unsigned char *open_font; extern int open_font_height; extern int suppress_next_expose; extern int no_init_help; extern char colour_pal_file[], fontfile[]; extern char windowsfontfile[]; extern int cs_mouse_x, cs_mouse_y; /* extern int cs_current_mouse_x, cs_current_mouse_y; extern int cs_current_mouse_button;*/ extern int cs_mouse_button; extern int cs_mouse_shifted; extern float gamma_correct_red, gamma_correct_green, gamma_correct_blue; #ifdef USE_PIXMAPS extern HBITMAP icon_pixmap[]; #endif /* USE_PIXMAPS */ // --------------------------------------------------------------------------- // Function Prototypes // --------------------------------------------------------------------------- void ProcessPendingEvents (void); void ProcessNextEvent (void); char GetKeystroke (void); void HandleMouse (void); void RefreshScreen (void); void RefreshArea (int, int, int, int); void SaveUnder (int, int, int, int, void *); void RestoreSaveUnder (int, int, int, int, void *); void CopyPixmapToScreen (int t2, int src_x, int src_y, int width, int height, int dst_x, int dst_y); void AddPaletteEntry (int col, int red, int grn, int blu); void HandleError (char *, int); void UpdatePalette (void); HBRUSH GetPaletteBrush (int col); int AdjustX (int x); int AdjustY (int y); int UnAdjustX (int x); int UnAdjustY (int y); void my_x_putchar (int, int, unsigned char); void open_x_putchar (int, int, unsigned char); void call_event (void); void do_call_event (int); void init_windows_font (void); void init_mouse (void); void draw_border (void); void EnableWindowsMenuItems (void); void DisableWindowsMenuItems (void); #endif /* __lcwin32_h__ */ lincity-1.13.1/lcx11.h0000644000175000017500000000433210071463567011305 00000000000000/* ---------------------------------------------------------------------- * * lcx11.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcx11_h__ #define __lcx11_h__ #include "lin-city.h" #define TRUE 1 #define FALSE 0 #if defined (commentout) #define MOUSE_LEFTBUTTON Button1 #define MOUSE_MIDDLEBUTTON Button2 #define MOUSE_RIGHTBUTTON Button3 #endif #define WINWIDTH 640 /* default window width */ #define WINHEIGHT 480 /* default window height */ /* Type Definitions */ typedef struct _disp { Display *dpy; int screen; char *dname; Window win; Window confinewin; Window root; unsigned int winH; unsigned int winW; long bg; /* colors */ XColor bg_xcolor; GC pixcolour_gc[256]; Atom kill_atom, protocol_atom; Colormap cmap; int pointer_confined; } disp; extern int winX, winY, mouse_button, cs_mouse_shifted; extern disp display; extern char *bg_color; extern int verbose; extern int pix_double; extern int text_bg; extern int text_fg; extern int x_key_value; extern int x_key_shifted; extern int borderx, bordery; extern long unsigned int colour_table[256]; extern int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag; extern unsigned char *open_font; extern int open_font_height; extern int suppress_next_expose; extern int cs_mouse_x, cs_mouse_y; extern float gamma_correct_red, gamma_correct_green, gamma_correct_blue; extern Cursor pirate_cursor; void parse_xargs (int, char **, char **); void set_pointer_confinement (void); void do_setcustompalette (XColor *); void Create_Window (char *); void HandleError (char *, int); void HandleEvent (XEvent *); void refresh_screen (int, int, int, int); void my_x_putchar (int, int, unsigned char); void open_x_putchar (int, int, unsigned char); void do_call_event (int); void call_event (void); void call_wait_event (void); void open_setcustompalette (XColor *); void drag_screen(void); /* WCK */ void draw_border (void); void init_x_mouse (void); void unlock_window_size (void); int lc_get_keystroke (void); #ifdef USE_PIXMAPS extern Pixmap icon_pixmap[]; #endif #endif /* __lcx11_h__ */ lincity-1.13.1/lcsvga.h0000644000175000017500000000125007711127503011622 00000000000000/* ---------------------------------------------------------------------- * * lcsvga.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lcsvga_h__ #define __lcsvga_h__ typedef struct _disp { unsigned int winH; unsigned int winW; } disp; extern unsigned char mouse_pointer[]; extern unsigned char under_mouse_pointer[]; extern disp display; extern int pix_double; void HandleError (char *, int); int lc_get_keystroke (void); void init_mouse (void); void mouse_set_range (int width, int height); #endif /* __lcsvga_h__ */ lincity-1.13.1/ldsvgui.h0000644000175000017500000000073507407164556012042 00000000000000/* ---------------------------------------------------------------------- * * ldsvgui.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __ldsvgui_h__ #define __ldsvgui_h__ void do_prefs_mouse (int, int, int); void do_prefs_screen (void); void do_network_screen (void); void close_prefs_screen (void); #endif /* __ldsvgui_h__ */ lincity-1.13.1/ldsvguts.h0000644000175000017500000000063207407164556012234 00000000000000/* ---------------------------------------------------------------------- * * ldsvguts.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __ldsvguts_h__ #define __ldsvguts_h__ void load_saved_city (char *s); void sanity_check (void); #endif /* __ldsvguts_h__ */ lincity-1.13.1/lin-city.h0000644000175000017500000013530507762031675012116 00000000000000/* ---------------------------------------------------------------------- * * lin-city.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lin_city_h__ #define __lin_city_h__ #include /* The mouse sensitivity can be an integer such as 1, 2, 3 etc. The higher the number the less you have to move the mouse. It's a bit crude, it just multiples the mouse movement by this amount. IMHO 3 is about the maximum useful value, 2 is quite comfortable. ** This is only relevant for linux-svgalib. ** */ #define MOUSE_SENSITIVITY 1 /* When your money reaches 1 million or more, to make it easier to read, it is split into two parts; a millions part, and the rest. For example 12,355232 You can choose any character you like, but I have given some other examples. Just comment out the one above, and uncomment one below. IT MUST NOT BE NULL. #define MONEY_SEPARATOR '.' #define MONEY_SEPARATOR ' ' #define MONEY_SEPARATOR ':' */ #define MONEY_SEPARATOR ',' /* #define MP_SANITY_CHECK */ /* The number of milliseconds between scrolling text on the initial screen */ #define SPLASH_SCROLL_DELAY 30 /* was 30 */ /* ************************************************ NO USER CONFIGURABLE OPTIONS BEYOND THIS POINT ************************************************ */ /* VERSION_INT is used in the load/save code. All other code uses the symbol VERSION in config.h */ #define VERSION_INT 112 /* Don't load if < MIN_LOAD_VERSION */ #define MIN_LOAD_VERSION 97 /* Load corrections if version <= MM_MS_C_VER (max markets/substations) */ #define MM_MS_C_VER 97 /* Load corrections if version <= MG_C_VER (max monthgraph size) */ #define MG_C_VER 111 #if defined (WIN32) #define PATH_SLASH '\\' #define PATH_SLASH_STRING "\\" #else #define PATH_SLASH '/' #define PATH_SLASH_STRING "/" #endif #define USE_X11_PIXMAPS #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif /* Used by HandleError () */ #define FATAL -1 #define WARNING -2 #ifndef M_PI #define M_PI 3.14159265358979323846 #endif /* comment out the the next three lines for _slightly_ faster X drawing. */ #ifdef LC_X11 #define ALLOW_PIX_DOUBLING #endif /* Gamma correction. The numbers GAMMA_CORRECT_X are between 0.0 and 1.0 The following values are enabled with the -w option. This seems quite good for 'washed out' monitors that lack red. You can also set the values from the command line. [x]lincity -R 1.0 -G 0.0 -B 0.4 is the same as [x]lincity -w */ #define GAMMA_CORRECT_RED 1.0 #define GAMMA_CORRECT_GREEN 0.0 #define GAMMA_CORRECT_BLUE 0.4 #define PROFILE_COUNTDOWN 10000 /* hof is 70 from 28/12 */ #define DEBUG /* #define DEBUG_ENGINE 1 #define ALLOW_TCORE_DUMP #define DEBUG_ROCKETS #define DEBUGMOUSE #define DEBUG_MOUSE #define DEBUG_MAIN_SCREEN #define DEBUG_GET_POWER if DEBUG_KEYS is defined, pressing certain keys add money, tech points etc. #define DEBUG_KEYS 1 */ /* #define CS_PROFILE */ #if defined (LC_X11) || defined (WIN32) #define BORDERX 30 #define BORDERY 30 #endif #define TEXT_FG_COLOUR (white(24)) #define TEXT_BG_COLOUR 105 #define YN_DIALBOX_BG_COLOUR (red(10)) #define LOAD_BG_COLOUR (cyan(10)) #define SAVE_BG_COLOUR (magenta(10)) #define NW_BG_COLOUR (green(10)) /* GCS: We are about to run out of bits on the flags, so in the future we might need to implement compression. For example, FLAG_IS_RIVER is only used for GROUP_WATER, FLAG_MB_COAL for GROUP_MARKET, and so on. */ /* WCK: Compression would work, but that's complicated. I would rather move FLAG_M?_* into an int_? variable. And add more int_? variables. That keeps it simple and squeezes some life out of 32 bits. I don't think we need to hurry. I'd rather replace the whole scheme. */ #define FLAG_LEFT (1) #define FLAG_UP (2) #define FLAG_RIGHT (4) #define FLAG_DOWN (8) #define FLAG_POWERED (0x10) #define FLAG_FED (0x20) #define FLAG_EMPLOYED (0x40) #define FLAG_IS_TRANSPORT (0x80) #define FLAG_MB_FOOD (0x100) #define FLAG_MS_FOOD (0x200) #define FLAG_MB_JOBS (0x400) #define FLAG_MS_JOBS (0x800) #define FLAG_MB_COAL (0x1000) #define FLAG_MS_COAL (0x2000) #define FLAG_MB_ORE (0x4000) #define FLAG_MS_ORE (0x8000) #define FLAG_MB_GOODS (0x10000) #define FLAG_MS_GOODS (0x20000) #define FLAG_MB_STEEL (0x40000) #define FLAG_MS_STEEL (0x80000) #define FLAG_FIRE_COVER (0x100000) #define FLAG_HEALTH_COVER (0x200000) #define FLAG_CRICKET_COVER (0x400000) #define FLAG_IS_RIVER (0x800000) #define FLAG_HAD_POWER (0x1000000) #define FLAG_MULTI_TRANSPORT (0x2000000) /* Is it a multitransport? */ #define FLAG_MULTI_TRANS_PREV (0x4000000) #define FLAG_POWER_LINE (0x8000000) #define T_FOOD 0 #define T_JOBS 1 #define T_COAL 2 #define T_GOODS 3 #define T_ORE 4 #define T_STEEL 5 #define T_WASTE 6 #define MT_FAIL 0 #define MT_START 1 #define MT_CONTINUE 2 #define MT_SUCCESS 3 #define HOF_START 845830134 #define HOF_STOP 857843038 #define MINI_SCREEN_NORMAL_FLAG (0) #define MINI_SCREEN_POL_FLAG (1) #define MINI_SCREEN_UB40_FLAG (2) #define MINI_SCREEN_STARVE_FLAG (3) #define MINI_SCREEN_PORT_FLAG (4) #define MINI_SCREEN_POWER_FLAG (5) #define MINI_SCREEN_FIRE_COVER (6) #define MINI_SCREEN_CRICKET_COVER (7) #define MINI_SCREEN_HEALTH_COVER (8) #define MINI_SCREEN_COAL_FLAG (9) #define MAIN_SCREEN_NORMAL_FLAG (1) #define MAIN_SCREEN_EQUALS_MINI (2) #define SEED_RAND #define OLD_LC_SAVE_DIR "Lin-city" #if defined (WIN32) #define LC_SAVE_DIR "SAVED_GAMES" #define LINCITYRC_FILENAME "lincity.ini" #else /* GCS: Changed for 1.12 */ /* #define LC_SAVE_DIR ".Lin-city" */ #define LC_SAVE_DIR ".lincity" #define LINCITYRC_FILENAME ".lincityrc" #endif #define RESULTS_FILENAME "results" #define MAX_ICON_LEN 4096 #define WORLD_SIDE_LEN 100 #define NUMOF_DAYS_IN_MONTH 100 #define NUMOF_DAYS_IN_YEAR (NUMOF_DAYS_IN_MONTH*12) #define FAST_TIME_FOR_YEAR 1 #define MED_TIME_FOR_YEAR 20 #define SLOW_TIME_FOR_YEAR 60 /* interest rate *10 ie 10 is 1% */ #define INTEREST_RATE 15 #if defined (commentout) #define HELP_BUTTON_X 608 #define HELP_BUTTON_Y 448 #define HELP_BUTTON_W 32 #define HELP_BUTTON_H 32 #define QUIT_BUTTON_X 608 #define QUIT_BUTTON_Y 416 #define QUIT_BUTTON_W 32 #define QUIT_BUTTON_H 32 #define LOAD_BUTTON_X 576 #define LOAD_BUTTON_Y 416 #define LOAD_BUTTON_W 32 #define LOAD_BUTTON_H 32 #define SAVE_BUTTON_X 576 #define SAVE_BUTTON_Y 448 #define SAVE_BUTTON_W 32 #define SAVE_BUTTON_H 32 #endif #define HELPERRORPAGE "error.hlp" #define HELPBACKGROUNDCOLOUR (white(8)) #define HELPBUTTON_COLOUR (white(25)) #define MAX_NUMOF_HELP_BUTTONS 40 #define MAX_LENOF_HELP_FILENAME 40 #define MAX_HELP_HISTORY 20 #define CS_MOUSE_BUTTON_DELAY 5 #define RIGHT_MOUSE_MOVE_VAL 5 #define GOOD 1 #define BAD (-1) #define RESULTS 0 #define PROGBOXX 170 #define PROGBOXY 180 #define PROGBOXW 300 #define PROGBOXH 120 #define PROGBOX_BG_COLOUR 114 #define PROGBOX_DONE_COL 4 #define PROGBOX_NOTDONE_COL 2 #define POWER_LINE_CAPACITY 1000000 #define POWERS_SOLAR_OUTPUT 1800 #define WINDMILL_POWER 450 #define WINDMILL_JOBS 10 /* WINDMILL_RCOST is days per quid */ #define WINDMILL_RCOST 3 #define ANTIQUE_WINDMILL_ANIM_SPEED 160 #define MODERN_WINDMILL_ANIM_SPEED 120 #define OLD_MAX_NUMOF_SUBSTATIONS 100 #define MAX_NUMOF_SUBSTATIONS 512 #define SUBSTATION_RANGE 10 #define POWER_USE_PER_PERSON 3 #define POWER_RES_OVERHEAD 30 #define POWERS_COAL_OUTPUT 22000 #define MAX_COAL_AT_POWER_STATION 100000 #define MAX_ORE_AT_INDUSTRY_L 20000 #define MAX_JOBS_AT_INDUSTRY_L 500 #define MAX_GOODS_AT_INDUSTRY_L 65000 #define INDUSTRY_L_GET_JOBS 120 #define INDUSTRY_L_GET_ORE 600 #define INDUSTRY_L_GET_STEEL 60 #define INDUSTRY_L_JOBS_LOAD_ORE 1 #define INDUSTRY_L_JOBS_LOAD_STEEL 4 #define INDUSTRY_L_ORE_USED 125 #define INDUSTRY_L_STEEL_USED 12 #define INDUSTRY_L_JOBS_USED 30 #define INDUSTRY_L_MAKE_GOODS 225 #define MAX_STEEL_AT_INDUSTRY_L 2000 #define MIN_JOBS_AT_INDUSTRY_L (INDUSTRY_L_JOBS_LOAD_ORE\ +INDUSTRY_L_JOBS_LOAD_STEEL+INDUSTRY_L_JOBS_USED) #define INDUSTRY_L_ANIM_SPEED 290 #define MAX_ORE_AT_INDUSTRY_H 10000 #define MAX_COAL_AT_INDUSTRY_H 1000 #define MAX_MADE_AT_INDUSTRY_H MAX_ORE_AT_INDUSTRY_H/16 #define POWER_MAKE_STEEL 200 #define INDUSTRY_H_ANIM_SPEED 290 #define DAYS_PER_POLLUTION 14 #define POWERS_COAL_POLLUTION 20 #define INDUSTRY_L_POLLUTION 10 #define INDUSTRY_H_POLLUTION 10 #define COALMINE_POLLUTION 3 #define PORT_POLLUTION 1 #define RAIL_POLLUTION 1 #define DAYS_PER_RAIL_POLLUTION 30 #define ROAD_POLLUTION 1 #define DAYS_PER_ROAD_POLLUTION 20 #define UNNAT_DEATHS_COST 500 #define POL_DIV 64 /* GCS -- from engine.c */ #define FINANCE_X 91 #define FINANCE_W 120 #define FINANCE_Y 200 #define FINANCE_H 56 #define INCOME_TAX_RATE 8 #define COAL_TAX_RATE 20 #define GOODS_TAX_RATE 1 #define DOLE_RATE 15 #define TRANSPORT_COST_RATE 14 #define IM_PORT_COST_RATE 1 #define PORT_FOOD_RATE 1 #define PORT_JOBS_RATE 5 #define PORT_COAL_RATE 50 #define PORT_ORE_RATE 1 #define PORT_GOODS_RATE 3 #define PORT_STEEL_RATE 100 /* These next two control the stuff bought or sold as a % of what's on the transport. 1000=100% 500=50% etc. */ #define PORT_EXPORT_RATE 500 #define PORT_IMPORT_RATE 500 #define NUMOF_DISCOUNT_TRIGGERS 6 #define EX_DISCOUNT_TRIGGER_1 25000 #define EX_DISCOUNT_TRIGGER_2 50000 #define EX_DISCOUNT_TRIGGER_3 100000 #define EX_DISCOUNT_TRIGGER_4 200000 #define EX_DISCOUNT_TRIGGER_5 400000 #define EX_DISCOUNT_TRIGGER_6 800000 #define MIN_RES_POPULATION 10 #define MAX_TECH_LEVEL 1000000 #define TECH_LEVEL_LOSS_START 11000 /* tech-level/TECH_LEVEL_LOSS is lost every month when above TECH_LEVEL_LOSS_START */ #define TECH_LEVEL_LOSS 500 #define TECH_LEVEL_UNAIDED 2 #define MODERN_WINDMILL_TECH 450000 #define BUILD_MONUMENT_JOBS 350000 #define MONUMENT_GET_JOBS 100 #define MONUMENT_DAYS_PER_TECH 3 #define MONUMENT_TECH_EXPIRE 400 #define MONUMENT_ANIM_SPEED 300 #define BLACKSMITH_JOBS 35 #define BLACKSMITH_GET_COAL 6 #define MAX_GOODS_AT_BLACKSMITH 200 #define MAX_COAL_AT_BLACKSMITH 100 #define BLACKSMITH_STEEL_USED 1 #define BLACKSMITH_COAL_USED 1 #define GOODS_MADE_BY_BLACKSMITH 50 #define BLACKSMITH_BATCH (GOODS_MADE_BY_BLACKSMITH*100) #define BLACKSMITH_ANIM_THRESHOLD 10 #define BLACKSMITH_ANIM_SPEED 200 #define MILL_JOBS 35 #define MAX_GOODS_AT_MILL 200 #define MAX_FOOD_AT_MILL 500 #define MAX_COAL_AT_MILL 50 #define GOODS_MADE_BY_MILL 75 #define MILL_GET_FOOD 51 #define MILL_GET_COAL 4 #define MILL_POWER_PER_COAL 60 #define FOOD_USED_BY_MILL (GOODS_MADE_BY_MILL/2) #define COAL_USED_BY_MILL 1 #define MILL_ANIM_THRESHOLD 10 #define MILL_ANIM_SPEED 300 #define SCHOOL_JOBS 50 #define SCHOOL_GOODS 75 #define JOBS_MAKE_TECH_SCHOOL 200 #define GOODS_MAKE_TECH_SCHOOL 75 #define TECH_MADE_BY_SCHOOL 2 #define MAX_JOBS_AT_SCHOOL 400 #define MAX_GOODS_AT_SCHOOL 200 #define SCHOOL_RUNNING_COST 2 #define DAYS_BETWEEN_COVER (NUMOF_DAYS_IN_MONTH*3) #define DAYS_BETWEEN_FIRES (NUMOF_DAYS_IN_YEAR*2) #define FIRESTATION_JOBS 6 #define FIRESTATION_GET_JOBS 7 #define MAX_JOBS_AT_FIRESTATION (FIRESTATION_JOBS*NUMOF_DAYS_IN_YEAR) #define FIRESTATION_GOODS 2 #define FIRESTATION_GET_GOODS 3 #define MAX_GOODS_AT_FIRESTATION (FIRESTATION_GOODS*NUMOF_DAYS_IN_YEAR) #define FIRESTATION_RANGE 18 #define FIRESTATION_RUNNING_COST 1 #define FIRESTATION_RUNNING_COST_MUL 6 #define FIRESTATION_ANIMATION_SPEED 250 #define FIRE_ANIMATION_SPEED 350 #define FIRE_DAYS_PER_SPREAD (NUMOF_DAYS_IN_YEAR/8) #define FIRE_LENGTH (NUMOF_DAYS_IN_YEAR*5) #define AFTER_FIRE_LENGTH (NUMOF_DAYS_IN_YEAR*10) #define CRICKET_JOBS 8 #define CRICKET_GET_JOBS 9 #define MAX_JOBS_AT_CRICKET (CRICKET_JOBS*NUMOF_DAYS_IN_YEAR) #define CRICKET_GOODS 2 #define CRICKET_GET_GOODS 3 #define MAX_GOODS_AT_CRICKET (CRICKET_GOODS*NUMOF_DAYS_IN_YEAR) #define CRICKET_RANGE 10 #define CRICKET_RUNNING_COST 1 #define CRICKET_ANIMATION_SPEED 750 #define MAX_GOODS_AT_POTTERY 200 #define POTTERY_ORE_MAKE_GOODS 11 #define POTTERY_COAL_MAKE_GOODS 2 #define POTTERY_JOBS 35 #define MAX_ORE_AT_POTTERY (POTTERY_ORE_MAKE_GOODS*60) #define POTTERY_GET_ORE (POTTERY_ORE_MAKE_GOODS*20) #define MAX_COAL_AT_POTTERY (POTTERY_COAL_MAKE_GOODS*60) #define POTTERY_GET_COAL (POTTERY_COAL_MAKE_GOODS*21) #define MAX_JOBS_AT_POTTERY (POTTERY_JOBS*20) #define POTTERY_GET_JOBS (POTTERY_JOBS*2) #define POTTERY_MADE_GOODS 35 #define POTTERY_ANIM_SPEED 280 #define POTTERY_CLOSE_TIME 20 #define UNIVERSITY_JOBS 250 #define UNIVERSITY_JOBS_STORE 5000 #define UNIVERSITY_GOODS 750 #define UNIVERSITY_GOODS_STORE 7000 #define UNIVERSITY_RUNNING_COST 23 #define UNIVERSITY_TECH_MADE 4 #define ROCKET_PAD_JOBS 1000 #define ROCKET_PAD_JOBS_STORE 10000 #define ROCKET_PAD_GOODS 10000 #define ROCKET_PAD_GOODS_STORE 500000 #define ROCKET_PAD_STEEL 500 #define ROCKET_PAD_STEEL_STORE 12000 #define ROCKET_PAD_RUNNING_COST 200 #define ROCKET_PAD_LAUNCH 100 #define ROCKET_ANIMATION_SPEED 450 #define ROCKET_LAUNCH_BAD 1 #define ROCKET_LAUNCH_GOOD 2 #define ROCKET_LAUNCH_EVAC 3 #define TIP_DEGRADE_TIME 200 * NUMOF_DAYS_IN_YEAR #define MAX_WASTE_AT_RECYCLE 20000 #define BURN_WASTE_AT_RECYCLE (MAX_WASTE_AT_RECYCLE/200) #define MAX_ORE_AT_RECYCLE (MAX_ORE_ON_RAIL*2) #define GOODS_RECYCLED 500 #define RECYCLE_GOODS_JOBS (GOODS_RECYCLED/50) #define RECYCLE_RUNNING_COST 3 #define HEALTH_CENTRE_JOBS 6 #define HEALTH_CENTRE_GET_JOBS 7 #define MAX_JOBS_AT_HEALTH_CENTRE (HEALTH_CENTRE_JOBS*NUMOF_DAYS_IN_YEAR) #define HEALTH_CENTRE_GOODS 40 #define HEALTH_CENTRE_GET_GOODS 41 #define MAX_GOODS_AT_HEALTH_CENTRE (HEALTH_CENTRE_GOODS*NUMOF_DAYS_IN_YEAR) #define HEALTH_RUNNING_COST 2 #define HEALTH_RUNNING_COST_MUL 9 #define HEALTH_CENTRE_RANGE 15 #define OLD_MAX_NUMOF_MARKETS 100 #define MAX_NUMOF_MARKETS 512 #define MARKET_RANGE 10 #define MAX_FOOD_ON_TRACK 2048 #define MAX_FOOD_ON_RIVER (MAX_FOOD_ON_TRACK*2) #define MAX_FOOD_ON_ROAD (MAX_FOOD_ON_TRACK*4) #define MAX_FOOD_ON_RAIL (MAX_FOOD_ON_ROAD*4) #define MAX_FOOD_IN_MARKET (MAX_FOOD_ON_RAIL*8) #define MARKET_FOOD_SEARCH_TRIGGER (MAX_FOOD_IN_MARKET/5) #define MAX_JOBS_ON_TRACK 1024 #define MAX_JOBS_ON_RIVER (MAX_JOBS_ON_TRACK*2) #define MAX_JOBS_ON_ROAD (MAX_JOBS_ON_TRACK*5) #define MAX_JOBS_ON_RAIL (MAX_JOBS_ON_ROAD*5) #define MAX_JOBS_IN_MARKET (MAX_JOBS_ON_RAIL*3) #define MARKET_JOBS_SEARCH_TRIGGER (MAX_JOBS_IN_MARKET/5) #define MARKET_ANIM_SPEED 750 #define EMPLOYER_RANGE 10 #define WORKING_POP_PERCENT 45 #define JOB_SWING 15 #define HC_JOB_SWING 10 #define CRICKET_JOB_SWING 4 #define ORGANIC_FARM_FOOD_OUTPUT 550 #define ORGANIC_FARM_ANIM_SPEED 3000 #define FARM_JOBS_USED 13 #define ORG_FARM_RANGE 10 #define ORG_FARM_POWER_REC 50 /* gets waste only when powered */ #define ORG_FARM_WASTE_GET 6 #define MIN_FOOD_SOLD_FOR_ANIM 200 #define DAYS_PER_STARVE 20 #define MAX_WASTE_ON_TRACK 1024 #define MAX_WASTE_ON_ROAD (MAX_WASTE_ON_TRACK*5) #define MAX_WASTE_ON_RAIL (MAX_WASTE_ON_ROAD*5) #define MAX_WASTE_IN_MARKET (MAX_WASTE_ON_RAIL*3) #define MARKET_WASTE_SEARCH_TRIGGER (MAX_WASTE_IN_MARKET/5) #define MAX_WASTE_AT_TIP 10000000 #define WASTE_BURN_ON_TRANSPORT 20 #define TRANSPORT_BURN_WASTE_COUNT 75000 #define NUMOF_COAL_RESERVES 100 #define COAL_RESERVE_SIZE 10000 #define ORE_RESERVE 1000 #define MIN_ORE_RESERVE_FOR_MINE (ORE_RESERVE) #define MAX_COAL_AT_MINE 100000 #define MAX_ORE_AT_MINE 100000 /* COAL_RESERVE_SEARCH_LEN acts in both directions, so 5 is 10*10 */ #define COAL_RESERVE_SEARCH_LEN 8 #define JOBS_DIG_COAL 900 #define JOBS_DIG_ORE 200 #define JOBS_COALPS_GENERATE 100 #define MAX_JOBS_AT_COALPS 2000 #define JOBS_LOAD_COAL 18 #define JOBS_LOAD_ORE 9 #define JOBS_LOAD_STEEL 15 #define JOBS_AT_COMMUNE_GATE 4 #define COMMUNE_ANIM_SPEED 750 #define COMMUNE_POP 5 #define DIG_MORE_COAL_TRIGGER (MAX_COAL_AT_MINE) #define DIG_MORE_ORE_TRIGGER (MAX_ORE_AT_MINE) #define MAX_COAL_ON_TRACK 64 #define MAX_COAL_ON_RIVER (MAX_COAL_ON_TRACK*2) #define MAX_COAL_ON_ROAD (MAX_COAL_ON_TRACK*8) #define MAX_COAL_ON_RAIL (MAX_COAL_ON_ROAD*8) #define MAX_COAL_IN_MARKET (MAX_COAL_ON_RAIL*2) #define MARKET_COAL_SEARCH_TRIGGER (MAX_COAL_IN_MARKET/5) #define MAX_GOODS_ON_TRACK 2048 #define MAX_GOODS_ON_RIVER (MAX_GOODS_ON_TRACK*2) #define MAX_GOODS_ON_ROAD (MAX_GOODS_ON_TRACK*5) #define ROAD_GOODS_USED_MASK 0x1f #define MAX_GOODS_ON_RAIL (MAX_GOODS_ON_ROAD*5) #define RAIL_GOODS_USED_MASK 0xf #define MAX_GOODS_IN_MARKET (MAX_GOODS_ON_RAIL*4) #define MARKET_GOODS_SEARCH_TRIGGER (MAX_GOODS_IN_MARKET/5) #define MAX_ORE_ON_TRACK 4096 #define MAX_ORE_ON_RIVER (MAX_ORE_ON_TRACK*2) #define MAX_ORE_ON_ROAD (MAX_ORE_ON_TRACK*4) #define MAX_ORE_ON_RAIL (MAX_ORE_ON_ROAD*4) #define MAX_ORE_IN_MARKET (MAX_ORE_ON_RAIL*2) #define MARKET_ORE_SEARCH_TRIGGER (MAX_ORE_IN_MARKET/5) #define MAX_STEEL_ON_TRACK 128 #define MAX_STEEL_ON_RIVER (MAX_STEEL_ON_TRACK*2) #define MAX_STEEL_ON_ROAD (MAX_STEEL_ON_TRACK*4) #define MAX_STEEL_ON_RAIL (MAX_STEEL_ON_ROAD*4) #define RAIL_STEEL_USED_MASK 0x7f #define MAX_STEEL_AT_INDUSTRY_H (MAX_STEEL_ON_RAIL*10) /* JOBS_MAKE_STEEL is the steel made per job at the steel works what's it doing here? */ #define JOBS_MAKE_STEEL 70 /* ORE_MAKE_STEEL is the ore used per unit of STEEL at a steel works what's it doing here? */ #define ORE_MAKE_STEEL 17 #define MAX_STEEL_IN_MARKET (MAX_STEEL_ON_RAIL*2) #define MARKET_STEEL_SEARCH_TRIGGER (MAX_STEEL_IN_MARKET/5) #if defined (commentout) #define MAIN_WIN_W 448 #define MAIN_WIN_X (640-MAIN_WIN_W-8) #define MAIN_WIN_Y 8 #define MAIN_WIN_H 400 #endif #define SUST_ORE_COAL_COL 34 #define SUST_PORT_COL white(24) #define SUST_MONEY_COL green(26) #define SUST_POP_COL cyan(24) #define SUST_TECH_COL yellow(26) #define SUST_FIRE_COL red(26) #define SUST_ORE_COAL_YEARS_NEEDED 180 #define SUST_PORT_YEARS_NEEDED 180 #define SUST_MONEY_YEARS_NEEDED 60 #define SUST_POP_YEARS_NEEDED 60 #define SUST_TECH_YEARS_NEEDED 120 #define SUST_FIRE_YEARS_NEEDED 60 #define SUST_MIN_POPULATION 5000 #define SUST_MIN_TECH_LEVEL (MAX_TECH_LEVEL/2) #define STATS_X 232 #define STATS_Y 428 #define STATS_W 304 #define STATS_H 32 /* GCS FIX: This is still used in static data structure for size of monthgraph. Fix by encapsulating the monthgraph and dynamically allocating. */ #if defined (commentout) #ifndef MONTHGRAPH_W #define MONTHGRAPH_X 91 #define MONTHGRAPH_W 120 #define MONTHGRAPH_Y 116 #define MONTHGRAPH_H 64 #endif #define DIFFGRAPH_POWER_COLOUR (yellow(28)) #define DIFFGRAPH_COAL_COLOUR (white(18)) #define DIFFGRAPH_GOODS_COLOUR (cyan(24)) #define DIFFGRAPH_ORE_COLOUR (red(22)) #define DIFFGRAPH_POPULATION_COLOUR 7 #endif #define GRAPHS_B_COLOUR (white(6)) /* These constants are still used by save-under buffer */ #if defined (commentout) #define MARKET_CB_X (79) #define MARKET_CB_Y 0 #endif //#define MARKET_CB_W (18*8) #define MARKET_CB_W (17*8 - 2) #define MARKET_CB_H (23*8) #define SCROLL_LONG_COUNT 5 #define SCROLL_RIGHT_BUTTON_X 100 #define SCROLL_RIGHT_BUTTON_W 32 #define SCROLL_RIGHT_BUTTON_Y 100 #define SCROLL_RIGHT_BUTTON_H 32 #define SCROLL_LEFT_BUTTON_X 100 #define SCROLL_LEFT_BUTTON_W 32 #define SCROLL_LEFT_BUTTON_Y 132 #define SCROLL_LEFT_BUTTON_H 32 #define SCROLL_DOWN_BUTTON_X 100 #define SCROLL_DOWN_BUTTON_W 32 #define SCROLL_DOWN_BUTTON_Y 164 #define SCROLL_DOWN_BUTTON_H 32 #define SCROLL_UP_BUTTON_X 100 #define SCROLL_UP_BUTTON_W 32 #define SCROLL_UP_BUTTON_Y 196 #define SCROLL_UP_BUTTON_H 32 #define SHUFFLE_MAPPOINT_COUNT 4 #if defined (commentout) #define MAPPOINT_STATS_X 91 /* MAPPOINT_STATS_W must be == MONTHGRAPH_W because of the graph drawing. */ #define MAPPOINT_STATS_W MONTHGRAPH_W #define MAPPOINT_STATS_Y 8 #define MAPPOINT_STATS_H (11*8) #endif #define GROUP_BARE 0 #define GROUP_BARE_COLOUR (green(12)) #define GROUP_BARE_COST 0 #define GROUP_BARE_COST_MUL 1 #define GROUP_BARE_BUL_COST 1 #define GROUP_BARE_TECH 0 #define GROUP_BARE_FIREC 0 #define GROUP_POWER_LINE 1 #define GROUP_POWER_LINE_COLOUR (yellow(26)) #define GROUP_POWER_LINE_COST 100 #define GROUP_POWER_LINE_COST_MUL 2 #define GROUP_POWER_LINE_BUL_COST 100 #define GROUP_POWER_LINE_TECH 200 #define GROUP_POWER_LINE_FIREC 0 #if defined (commentout) /* GROUP_POWER_SOURCE is a solar ps - change the names - real soon */ #define GROUP_POWER_SOURCE 2 #define GROUP_POWER_SOURCE_COLOUR (yellow(22)) #define GROUP_POWER_SOURCE_COST 500000 #define GROUP_POWER_SOURCE_COST_MUL 5 #define GROUP_POWER_SOURCE_BUL_COST 100000 #define GROUP_POWER_SOURCE_TECH 500 #define GROUP_POWER_SOURCE_NO_CREDIT #define GROUP_POWER_SOURCE_FIREC 33 #endif #define GROUP_SOLAR_POWER 2 #define GROUP_SOLAR_POWER_COLOUR (yellow(22)) #define GROUP_SOLAR_POWER_COST 500000 #define GROUP_SOLAR_POWER_COST_MUL 5 #define GROUP_SOLAR_POWER_BUL_COST 100000 #define GROUP_SOLAR_POWER_TECH 500 #define GROUP_SOLAR_POWER_NO_CREDIT #define GROUP_SOLAR_POWER_FIREC 33 #define GROUP_SUBSTATION 3 #define GROUP_SUBSTATION_COLOUR (yellow(18)) #define GROUP_SUBSTATION_COST 500 #define GROUP_SUBSTATION_COST_MUL 2 #define GROUP_SUBSTATION_BUL_COST 100 #define GROUP_SUBSTATION_TECH 200 #define GROUP_SUBSTATION_FIREC 50 #define GROUP_RESIDENCE_LL 4 #define GROUP_RESIDENCE_LL_COLOUR (cyan(24)) #define GROUP_RESIDENCE_LL_COST 1000 #define GROUP_RESIDENCE_LL_COST_MUL 25 #define GROUP_RESIDENCE_LL_BUL_COST 1000 #define GROUP_RESIDENCE_LL_TECH 0 #define GROUP_RESIDENCE_LL_FIREC 75 #if defined (commentout) #define RESIDENCE_BASE_BR 100 #define RESIDENCE_BRM_HEALTH 5 #define RESIDENCE_BASE_DR (68*12) #define GROUP_RESIDENCE 4 #define GROUP_RESIDENCE_COLOUR (cyan(24)) #define GROUP_RESIDENCE_COST 0 #define GROUP_RESIDENCE_COST1 1000 #define RESIDENCE1_BRM (RESIDENCE_BASE_BR*12) #define RESIDENCE1_DRM ((RESIDENCE_BASE_DR*3)/4) #define GROUP_RESIDENCE_COST2 2000 #define RESIDENCE2_BRM 0 #define RESIDENCE2_DRM 0 #define GROUP_RESIDENCE_COST3 4000 #define RESIDENCE3_BRM (RESIDENCE_BASE_BR+RESIDENCE_BASE_BR/4) #define RESIDENCE3_DRM ((RESIDENCE_BASE_DR)/2) #define GROUP_RESIDENCE_COST4 800 #define RESIDENCE4_BRM (RESIDENCE_BASE_BR*18) #define RESIDENCE4_DRM ((RESIDENCE_BASE_DR*3)/4) #define GROUP_RESIDENCE_COST5 1600 #define RESIDENCE5_BRM (RESIDENCE_BASE_BR/2) #define RESIDENCE5_DRM ((RESIDENCE_BASE_DR)/4) #define GROUP_RESIDENCE_COST6 3200 #define RESIDENCE6_BRM 0 #define RESIDENCE6_DRM ((RESIDENCE_BASE_DR)/4) #define GROUP_RESIDENCE_COST_MUL 25 #define GROUP_RESIDENCE_BUL_COST 1000 #define GROUP_RESIDENCE_TECH 0 #define GROUP_RESIDENCE_FIREC 75 /* RESIDENCE_PPM is the people_pool mobitily. Higher number=less mobile. */ #define RESIDENCE_PPM 20 #endif /* RESIDENCE?_BRM is the birth rate modifier */ /* RESIDENCE?_DRM is the death rate modifier */ #define RESIDENCE_BASE_BR 100 #define RESIDENCE_BASE_DR (68*12) #define RESIDENCE_BRM_HEALTH 5 #define RESIDENCE1_BRM (RESIDENCE_BASE_BR*12) #define RESIDENCE1_DRM ((RESIDENCE_BASE_DR*3)/4) #define RESIDENCE2_BRM 0 #define RESIDENCE2_DRM 0 #define RESIDENCE3_BRM (RESIDENCE_BASE_BR+RESIDENCE_BASE_BR/4) #define RESIDENCE3_DRM ((RESIDENCE_BASE_DR)/2) #define RESIDENCE4_BRM (RESIDENCE_BASE_BR*18) #define RESIDENCE4_DRM ((RESIDENCE_BASE_DR*3)/4) #define RESIDENCE5_BRM (RESIDENCE_BASE_BR/2) #define RESIDENCE5_DRM ((RESIDENCE_BASE_DR)/4) #define RESIDENCE6_BRM 0 #define RESIDENCE6_DRM ((RESIDENCE_BASE_DR)/4) /* RESIDENCE_PPM is the people_pool mobitily. Higher number=less mobile. */ #define RESIDENCE_PPM 20 #define GROUP_ORGANIC_FARM 5 #define GROUP_ORGANIC_FARM_COLOUR (green(30)) #define GROUP_ORGANIC_FARM_COST 1000 #define GROUP_ORGANIC_FARM_COST_MUL 20 #define GROUP_ORGANIC_FARM_BUL_COST 100 #define GROUP_ORGANIC_FARM_TECH 0 #define GROUP_ORGANIC_FARM_FIREC 20 #define GROUP_MARKET 6 #define GROUP_MARKET_COLOUR (blue(28)) #define GROUP_MARKET_COST 100 #define GROUP_MARKET_COST_MUL 25 #define GROUP_MARKET_BUL_COST 100 #define GROUP_MARKET_TECH 0 #define GROUP_MARKET_FIREC 80 #define GROUP_TRACK 7 #define GROUP_TRACK_COLOUR 32 /* 32 is a brown */ #define GROUP_TRACK_COST 1 #define GROUP_TRACK_COST_MUL 25 #define GROUP_TRACK_BUL_COST 10 #define GROUP_TRACK_TECH 0 #define GROUP_TRACK_FIREC 4 #define GROUP_COALMINE 8 #define GROUP_COALMINE_COLOUR 0 #define GROUP_COALMINE_COST 10000 #define GROUP_COALMINE_COST_MUL 25 #define GROUP_COALMINE_BUL_COST 10000 #define GROUP_COALMINE_TECH 85 #define GROUP_COALMINE_FIREC 85 #define GROUP_RAIL 9 #define GROUP_RAIL_COLOUR (magenta(18)) #define GROUP_RAIL_COST 500 #define GROUP_RAIL_COST_MUL 10 #define GROUP_RAIL_BUL_COST 1000 #define GROUP_RAIL_TECH 180 #define GROUP_RAIL_FIREC 6 #define GROUP_COAL_POWER 10 #define GROUP_COAL_POWER_COLOUR 0 #define GROUP_COAL_POWER_COST 100000 #define GROUP_COAL_POWER_COST_MUL 5 #define GROUP_COAL_POWER_BUL_COST 200000 #define GROUP_COAL_POWER_TECH 200 #define GROUP_COAL_POWER_FIREC 80 #define GROUP_ROAD 11 #define GROUP_ROAD_COLOUR (white(18)) #define GROUP_ROAD_COST 100 #define GROUP_ROAD_COST_MUL 25 #define GROUP_ROAD_BUL_COST 50 #define GROUP_ROAD_TECH 50 #define GROUP_ROAD_FIREC 4 #define GROUP_INDUSTRY_L 12 #define GROUP_INDUSTRY_L_COLOUR (cyan(18)) #define GROUP_INDUSTRY_L_COST 20000 #define GROUP_INDUSTRY_L_COST_MUL 25 #define GROUP_INDUSTRY_L_BUL_COST 20000 #define GROUP_INDUSTRY_L_TECH 160 #define GROUP_INDUSTRY_L_FIREC 70 #define GROUP_UNIVERSITY 13 #define GROUP_UNIVERSITY_COLOUR (blue(22)) #define GROUP_UNIVERSITY_COST 20000 #define GROUP_UNIVERSITY_COST_MUL 25 #define GROUP_UNIVERSITY_BUL_COST 20000 #define GROUP_UNIVERSITY_TECH 150 #define GROUP_UNIVERSITY_NO_CREDIT #define GROUP_UNIVERSITY_FIREC 40 #define GROUP_COMMUNE 14 #define GROUP_COMMUNE_COLOUR (green(30)) #define GROUP_COMMUNE_COST 1 #define GROUP_COMMUNE_COST_MUL 2 #define GROUP_COMMUNE_BUL_COST 1000 #define GROUP_COMMUNE_TECH 0 #define GROUP_COMMUNE_FIREC 30 #define GROUP_OREMINE 15 #define GROUP_OREMINE_COLOUR (red(18)) #define GROUP_OREMINE_COST 500 #define GROUP_OREMINE_COST_MUL 10 #define GROUP_OREMINE_BUL_COST 500000 #define GROUP_OREMINE_TECH 0 #define GROUP_OREMINE_FIREC 0 #define GROUP_TIP 16 #define GROUP_TIP_COLOUR (white(16)) #define GROUP_TIP_COST 10000 #define GROUP_TIP_COST_MUL 25 #define GROUP_TIP_BUL_COST 1000000 #define GROUP_TIP_TECH 0 #define GROUP_TIP_FIREC 50 #define GROUP_PORT 17 #define GROUP_PORT_COLOUR (blue(28)) #define GROUP_PORT_COST 100000 #define GROUP_PORT_COST_MUL 2 #define GROUP_PORT_BUL_COST 1000 #define GROUP_PORT_TECH 35 #define GROUP_PORT_FIREC 50 #define GROUP_INDUSTRY_H 18 #define GROUP_INDUSTRY_H_COLOUR (7) /* colour 7 is an orange, sort of */ #define GROUP_INDUSTRY_H_COST 50000 #define GROUP_INDUSTRY_H_COST_MUL 20 #define GROUP_INDUSTRY_H_BUL_COST 70000 #define GROUP_INDUSTRY_H_TECH 170 #define GROUP_INDUSTRY_H_FIREC 80 #define GROUP_PARKLAND 19 #define GROUP_PARKLAND_COLOUR (green(31)) #define GROUP_PARKLAND_COST 1000 #define GROUP_PARKLAND_COST_MUL 25 #define GROUP_PARKLAND_BUL_COST 1000 #define GROUP_PARKLAND_TECH 2 #define GROUP_PARKLAND_NO_CREDIT #define GROUP_PARKLAND_FIREC 1 #define GROUP_RECYCLE 20 #define GROUP_RECYCLE_COLOUR (green(28)) #define GROUP_RECYCLE_COST 100000 #define GROUP_RECYCLE_COST_MUL 5 #define GROUP_RECYCLE_BUL_COST 1000 #define GROUP_RECYCLE_TECH 232 #define GROUP_RECYCLE_NO_CREDIT #define GROUP_RECYCLE_FIREC 10 #define GROUP_WATER 21 #define GROUP_WATER_COLOUR (blue(31)) #define GROUP_WATER_COST 1000000 #define GROUP_WATER_COST_MUL 2 #define GROUP_WATER_BUL_COST 1000000 #define GROUP_WATER_TECH 0 #define GROUP_RIVER (GROUP_WATER) /* oops -- GCS: Why oops? */ #define GROUP_WATER_FIREC 0 #define GROUP_HEALTH 22 #define GROUP_HEALTH_COLOUR (green(24)) #define GROUP_HEALTH_COST 100000 #define GROUP_HEALTH_COST_MUL 2 #define GROUP_HEALTH_BUL_COST 1000 #define GROUP_HEALTH_TECH 110 #define GROUP_HEALTH_FIREC 2 #define GROUP_ROCKET 23 #define GROUP_ROCKET_COLOUR (magenta(20)) #define GROUP_ROCKET_COST 700000 #define GROUP_ROCKET_COST_MUL 2 #define GROUP_ROCKET_BUL_COST 1 #define GROUP_ROCKET_TECH 750 #define GROUP_ROCKET_NO_CREDIT #define GROUP_ROCKET_FIREC 0 #define GROUP_WINDMILL 24 #define GROUP_WINDMILL_COLOUR (green(25)) #define GROUP_WINDMILL_COST 20000 #define GROUP_WINDMILL_COST_MUL 25 #define GROUP_WINDMILL_BUL_COST 1000 #define GROUP_WINDMILL_TECH 30 #define GROUP_WINDMILL_FIREC 10 #define GROUP_MONUMENT 25 #define GROUP_MONUMENT_COLOUR (white(15)) #define GROUP_MONUMENT_COST 10000 #define GROUP_MONUMENT_COST_MUL 25 #define GROUP_MONUMENT_BUL_COST 1000000 #define GROUP_MONUMENT_TECH 0 #define GROUP_MONUMENT_FIREC 0 #define GROUP_SCHOOL 26 #define GROUP_SCHOOL_COLOUR (white(15)) #define GROUP_SCHOOL_COST 10000 #define GROUP_SCHOOL_COST_MUL 25 #define GROUP_SCHOOL_BUL_COST 10000 #define GROUP_SCHOOL_TECH 1 #define GROUP_SCHOOL_FIREC 40 #define GROUP_BLACKSMITH 27 #define GROUP_BLACKSMITH_COLOUR (white(15)) #define GROUP_BLACKSMITH_COST 5000 #define GROUP_BLACKSMITH_COST_MUL 25 #define GROUP_BLACKSMITH_BUL_COST 1000 #define GROUP_BLACKSMITH_TECH 3 #define GROUP_BLACKSMITH_FIREC 60 #define GROUP_MILL 28 #define GROUP_MILL_COLOUR (white(15)) #define GROUP_MILL_COST 10000 #define GROUP_MILL_COST_MUL 25 #define GROUP_MILL_BUL_COST 1000 #define GROUP_MILL_TECH 25 #define GROUP_MILL_FIREC 60 #define GROUP_POTTERY 29 #define GROUP_POTTERY_COLOUR (red(12)) #define GROUP_POTTERY_COST 1000 #define GROUP_POTTERY_COST_MUL 25 #define GROUP_POTTERY_BUL_COST 1000 #define GROUP_POTTERY_TECH 0 #define GROUP_POTTERY_FIREC 50 #define GROUP_FIRESTATION 30 #define GROUP_FIRESTATION_COLOUR (red(20)) #define GROUP_FIRESTATION_COST 20000 #define GROUP_FIRESTATION_COST_MUL 10 #define GROUP_FIRESTATION_BUL_COST 1000 #define GROUP_FIRESTATION_TECH 22 #define GROUP_FIRESTATION_FIREC 0 #define GROUP_CRICKET 31 #define GROUP_CRICKET_COLOUR (white(20)) #define GROUP_CRICKET_COST 2000 #define GROUP_CRICKET_COST_MUL 3 #define GROUP_CRICKET_BUL_COST 1000 #define GROUP_CRICKET_TECH 12 #define GROUP_CRICKET_FIREC 20 #define GROUP_BURNT 32 #define GROUP_BURNT_COLOUR (red(30)) #define GROUP_BURNT_COST 0 /* Unused */ #define GROUP_BURNT_COST_MUL 1 /* Unused */ #define GROUP_BURNT_BUL_COST 1000 #define GROUP_BURNT_TECH 0 /* Unused */ #define GROUP_BURNT_FIREC 0 #define GROUP_SHANTY 33 #define GROUP_SHANTY_COLOUR (red(22)) #define GROUP_SHANTY_COST 0 /* Unused */ #define GROUP_SHANTY_COST_MUL 1 /* Unused */ #define GROUP_SHANTY_BUL_COST 100000 #define GROUP_SHANTY_TECH 0 /* Unused */ #define GROUP_SHANTY_FIREC 25 #define SHANTY_MIN_PP 150 #define SHANTY_POP 50 #define DAYS_BETWEEN_SHANTY (NUMOF_DAYS_IN_MONTH*5) #define SHANTY_GET_FOOD 50 #define SHANTY_GET_JOBS 5 #define SHANTY_GET_GOODS 50 #define SHANTY_GET_COAL 1 #define SHANTY_GET_ORE 10 #define SHANTY_GET_STEEL 1 #define GROUP_FIRE 34 #define GROUP_FIRE_COLOUR (red(30)) #define GROUP_FIRE_COST 0 /* Unused */ #define GROUP_FIRE_COST_MUL 1 /* Unused */ #define GROUP_FIRE_BUL_COST 1000 #define GROUP_FIRE_TECH 0 /* Unused */ #define GROUP_FIRE_FIREC 0 #define GROUP_USED 35 #define GROUP_USED_COLOUR (green(12)) /* Unused */ #define GROUP_USED_COST 0 /* Unused */ #define GROUP_USED_COST_MUL 1 /* Unused */ #define GROUP_USED_BUL_COST 0 /* Unused */ #define GROUP_USED_TECH 0 /* Unused */ #define GROUP_USED_FIREC 0 /* Unused */ #define GROUP_RESIDENCE_ML 36 #define GROUP_RESIDENCE_ML_COLOUR (cyan(24)) #define GROUP_RESIDENCE_ML_COST 2000 #define GROUP_RESIDENCE_ML_COST_MUL 25 #define GROUP_RESIDENCE_ML_BUL_COST 1000 #define GROUP_RESIDENCE_ML_TECH 0 #define GROUP_RESIDENCE_ML_FIREC 75 #define GROUP_RESIDENCE_HL 37 #define GROUP_RESIDENCE_HL_COLOUR (cyan(24)) #define GROUP_RESIDENCE_HL_COST 4000 #define GROUP_RESIDENCE_HL_COST_MUL 25 #define GROUP_RESIDENCE_HL_BUL_COST 1000 #define GROUP_RESIDENCE_HL_TECH 0 #define GROUP_RESIDENCE_HL_FIREC 75 #define GROUP_RESIDENCE_LH 38 #define GROUP_RESIDENCE_LH_COLOUR (cyan(24)) #define GROUP_RESIDENCE_LH_COST 800 #define GROUP_RESIDENCE_LH_COST_MUL 25 #define GROUP_RESIDENCE_LH_BUL_COST 1000 #define GROUP_RESIDENCE_LH_TECH 0 /* ?? */ #define GROUP_RESIDENCE_LH_FIREC 75 #define GROUP_RESIDENCE_MH 39 #define GROUP_RESIDENCE_MH_COLOUR (cyan(24)) #define GROUP_RESIDENCE_MH_COST 1600 #define GROUP_RESIDENCE_MH_COST_MUL 25 #define GROUP_RESIDENCE_MH_BUL_COST 1000 #define GROUP_RESIDENCE_MH_TECH 0 #define GROUP_RESIDENCE_MH_FIREC 75 #define GROUP_RESIDENCE_HH 40 #define GROUP_RESIDENCE_HH_COLOUR (cyan(24)) #define GROUP_RESIDENCE_HH_COST 3200 #define GROUP_RESIDENCE_HH_COST_MUL 25 #define GROUP_RESIDENCE_HH_BUL_COST 1000 #define GROUP_RESIDENCE_HH_TECH 0 #define GROUP_RESIDENCE_HH_FIREC 75 #define GROUP_IS_TRANSPORT(group) \ ((group == GROUP_TRACK) || \ (group == GROUP_ROAD) || \ (group == GROUP_RAIL) || \ (group == GROUP_POWER_LINE)) #define GROUP_IS_RESIDENCE(group) \ ((group == GROUP_RESIDENCE_LL) || \ (group == GROUP_RESIDENCE_ML) || \ (group == GROUP_RESIDENCE_HL) || \ (group == GROUP_RESIDENCE_LH) || \ (group == GROUP_RESIDENCE_MH) || \ (group == GROUP_RESIDENCE_HH)) #define GROUP_RESIDENCE_LL 4 #define GROUP_RESIDENCE_LL_COLOUR (cyan(24)) #define GROUP_RESIDENCE_LL_COST 1000 #define GROUP_RESIDENCE_LL_COST_MUL 25 #define GROUP_RESIDENCE_LL_BUL_COST 1000 #define GROUP_RESIDENCE_LL_TECH 0 #define GROUP_RESIDENCE_LL_FIREC 75 #define MOUSE_TYPE_NORMAL 1 #define MOUSE_TYPE_SQUARE 2 #define MOUSE_BUTTON_REPEAT 4 #define red(x) (32 + x) #define green(x) (64 + x) #define yellow(x) (96 + x) #define blue(x) (128 + x) #define magenta(x) (160 + x) #define cyan(x) (192 + x) #define white(x) (224 + x) struct map_point_info_struct { int population; int flags; unsigned short coal_reserve; unsigned short ore_reserve; int int_1; int int_2; int int_3; int int_4; int int_5; int int_6; int int_7; }; typedef struct map_point_info_struct Map_Point_Info; /* Set these flags to true when they need to be updated on the screen */ struct update_scoreboard_struct { int mps; int mini; int date; int money; int monthly; int yearly_1; int yearly_2; long int message_area; }; typedef struct update_scoreboard_struct Update_Scoreboard; /* main functions ************** */ extern int lincity_main (int, char **); extern void client_main_loop (void); extern void do_error (char *); extern void do_save_city (void); extern void remove_scene (char *); extern void save_city (char *); extern void do_load_city (void); extern void load_opening_city (char *); extern void load_city (char *); extern void reset_animation_times (void); extern void coal_reserve_setup (void); extern void ore_reserve_setup (void); extern void setup_river (void); extern void setup_river2 (int, int, int); extern void check_savedir (void); extern void make_savedir (void); extern void draw_save_dir (int); extern void input_save_filename (char *); extern void load_start_image (void); extern void start_image_text (void); extern void si_scroll_text (void); extern char si_next_char (FILE *); extern void get_real_time (void); extern void debug_writeval (int); extern int cheat (void); extern void print_cheat (void); extern void unprint_cheat (void); extern void order_select_buttons (void); extern void lincityrc (void); extern void check_for_old_save_dir (void); extern int count_groups (int); extern int compile_results (void); extern void print_results (void); extern void mail_results (void); extern void window_results (void); extern void init_path_strings (void); extern void lc_usleep (unsigned long); extern void dump_tcore (void); #ifndef LC_X11 extern void parse_args (int, char **); #endif extern void sustainability_test (void); extern int sust_fire_cover (void); extern void check_endian (void); extern void eswap32 (int *); extern void eswap16 (unsigned short *); extern void malloc_failure (void); /* fileutil ******** */ void malloc_failure (void); FILE* fopen_read_gzipped (char* fn); void fclose_read_gzipped (FILE* fp); void verify_package (void); /* ldsvgui ******* */ void load_opening_city (char *s); void check_savedir (void); /* opening ******* */ void load_start_image (void); /* type init functions ******************* */ extern void init_types (void); extern void init_type_graphics (void); void init_costs (void); int get_selected_type_cost (short selected_type); extern char *load_graphic (char *); /* screen functions **************** */ #ifdef CS_PROFILE extern void FPgl_write (int, int, char *); extern void FPgl_getbox (int, int, int, int, void *); extern void FPgl_putbox (int, int, int, int, void *); extern void FPgl_fillbox (int, int, int, int, int); extern void FPgl_hline (int, int, int, int); extern void FPgl_line (int, int, int, int, int); extern void FPgl_setpixel (int, int, int); #endif extern void check_power_line_graphics (void); extern void check_water_graphics (void); extern void check_track_graphics (void); extern void check_rail_graphics (void); extern void check_road_graphics (void); extern int select_power_line_type (int, int, int, int); extern int select_water_type (int, int, int, int); extern int select_track_type (int, int, int, int); extern int select_rail_type (int, int, int, int); extern int select_road_type (int, int, int, int); extern void update_select_buttons (void); extern void draw_main_window_box (int); extern void draw_select_button_graphic (int, char *); extern void setcustompalette (void); extern void clip_main_window (void); extern void unclip_main_window (void); extern void initfont (void); extern void load_scroll_buttons (void); extern void draw_scroll_buttons (void); extern void update_mini_screen (void); extern void draw_mini_screen (void); extern void draw_big_mini_screen (void); extern void draw_mini_screen_pollution (void); extern void draw_mini_screen_fire_cover (void); extern void draw_mini_screen_cricket_cover (void); extern void draw_mini_screen_health_cover (void); extern void draw_mini_screen_ub40 (void); extern void draw_mini_screen_starve (void); extern void draw_mini_screen_coal (void); extern void draw_mini_screen_power (void); extern void draw_mini_screen_ocost (void); extern void draw_mini_screen_port (void); extern void draw_mini_screen_cursor (void); extern void print_stats (void); extern void print_total_money (void); int ask_launch_rocket_now (int x, int y); void print_date (void); extern void draw_market_cb (void); extern void clicked_market_cb (int, int); extern void close_market_cb (void); extern void draw_port_cb (void); extern void clicked_port_cb (int, int); extern void close_port_cb (void); extern int yn_dial_box (char *, char *, char *, char *); extern void ok_dial_box (char *, int, char *); extern int inv_sbut (int); extern void call_select_change_up (int); extern void beg_space_pad (char *, int); extern void draw_up_pbar (int, int, int, int); extern void draw_down_pbar (int, int, int, int); extern void do_pbar_population (int); extern void do_pbar_tech (int); extern void do_pbar_food (int); extern void do_pbar_jobs (int); extern void do_pbar_coal (int); extern void do_pbar_goods (int); extern void do_pbar_ore (int); extern void do_pbar_steel (int); extern void do_pbar_money (int); extern void prog_box (char *, int); /* mouse functions -- are now in mouse.h, where they should be! *************** */ /* engine functions **************** */ void initialize_tax_rates (void); void set_mappoint (int x, int y, short selected_type); void set_mappoint_used (int, int, int, int); int no_credit_build (int selected_type); void set_mappoint_ints (int fromx, int fromy, int x, int y); void new_city (int* originx, int* originy, int random_village); extern void engine_do_time_step (void); extern void do_residence (int, int); extern void debug_print (int); extern void do_power_source (int, int); extern void do_power_source_coal (int, int); extern void do_industry_l (int, int); extern void do_industry_h (int, int); extern void do_power_substation (int, int); extern int get_power (int, int, int, int); extern int add_a_substation (int, int); extern void remove_a_substation (int, int); extern void do_organic_farm (int, int); void init_mappoint_array (void); extern void shuffle_mappoint_array (void); extern void shuffle_substations (void); extern void do_coalmine (int, int); extern void do_oremine (int, int); extern void do_commune (int, int); extern void do_port (int, int); extern int buy_food (int, int); extern int buy_jobs (int, int); extern int buy_coal (int, int); extern int buy_ore (int, int); extern int buy_goods (int, int); extern int buy_steel (int, int); extern int sell_food (int, int); extern int sell_jobs (int, int); extern int sell_coal (int, int); extern int sell_ore (int, int); extern int sell_goods (int, int); extern int sell_steel (int, int); extern void do_pollution (void); extern void do_parkland (int, int); extern void do_university (int, int); extern void do_recycle (int, int); extern void do_health_centre (int, int); extern void do_rocket_pad (int, int); extern void launch_rocket (int x, int y); extern void remove_people (int); extern void do_windmill (int, int); extern void do_monument (int, int); extern void do_school (int, int); extern void do_blacksmith (int, int); extern void do_mill (int, int); extern void do_pottery (int, int); extern void do_firestation (int, int); extern void do_cricket (int, int); extern void clear_fire_health_and_cricket_cover (void); extern void do_fire_health_and_cricket_cover (void); extern void do_fire_cover (int, int); extern void do_health_cover (int, int); extern void do_cricket_cover (int, int); extern void do_random_fire (int, int, int); extern void do_fire (int, int); extern int spiral_find_group (int, int, int); extern int spiral_find_2x2 (int, int); extern void add_a_shanty (void); extern void remove_a_shanty (void); extern void update_shanty (void); extern void do_shanty (int, int); extern void do_tip (int, int); extern void update_tech_dep (int, int); /* transport functions ******************* */ void connect_transport (int originx, int originy, int w, int h); extern void do_power_line (int, int); extern void do_track (int, int); extern void do_rail (int, int); extern void do_road (int, int); extern void general_transport (Map_Point_Info *, int *, int, int *); /* market functions **************** */ extern int get_food (int, int, int); extern int put_food (int, int, int); extern int get_jobs (int, int, int); extern int put_jobs (int, int, int); extern int get_goods (int, int, int); extern int put_goods (int, int, int); extern int get_ore (int, int, int); extern int put_ore (int, int, int); extern int get_coal (int, int, int); extern int put_coal (int, int, int); extern int add_a_market (int, int); extern void remove_a_market (int, int); extern void do_market (int, int); extern void shuffle_markets (void); extern int deal_with_transport (int, int, int, int); extern int get_steel (int, int, int); extern int put_steel (int, int, int); extern int get_waste (int, int, int); extern int put_waste (int, int, int); extern int get_stuff (int, int, int, int); extern int get_stuff2 (Map_Point_Info *, int, int); extern int get_stuff3 (Map_Point_Info *, int, int); extern int get_stuff4 (Map_Point_Info *, int, int); extern int put_stuff (int, int, int, int); extern int put_stuff2 (Map_Point_Info *, short *, int, int); extern int put_stuff3 (Map_Point_Info *, short *, int, int); extern int put_stuff4 (Map_Point_Info *, short *, int, int); #ifdef LC_X11 /* ----- X11 functions ----- */ extern void Fgl_write (int, int, char *); extern void open_write (int, int, char *); extern void Fgl_getbox (int, int, int, int, void *); extern void Fgl_putbox (int, int, int, int, void *); extern void Fgl_fillbox (int, int, int, int, int); extern void Fgl_hline (int, int, int, int); extern void Fgl_line (int, int, int, int, int); extern void Fgl_setpixel (int, int, int); extern void Fgl_setfontcolors (int, int); extern void Fgl_setfont (int, int, void*); extern void Fgl_enableclipping (void); extern void Fgl_setclippingwindow (int, int, int, int); extern void Fgl_disableclipping (void); #ifdef USE_X11_PIXMAPS #define USE_PIXMAPS extern void init_pixmaps (void); extern void init_icon_pixmap (short); extern void update_pixmap (int, int, int, int, int, int, int, char *); #endif #elif defined (WIN32) /* ----- Win32 functions ----- */ extern void gl_setpalettecolor (long, long, long, long); extern void Fgl_write (int, int, char *); extern void open_write (int, int, char *); extern void Fgl_getbox (int, int, int, int, void *); extern void Fgl_putbox (int, int, int, int, void *); extern void Fgl_fillbox (int, int, int, int, int); extern void Fgl_hline (int, int, int, int); extern void Fgl_line (int, int, int, int, int); extern void Fgl_setpixel (int, int, int); extern void Fgl_setfontcolors (int, int); extern void Fgl_setfont (int, int, void*); extern void Fgl_enableclipping (void); extern void Fgl_setclippingwindow (int, int, int, int); extern void Fgl_disableclipping (void); #define USE_PIXMAPS /* Always */ extern void init_pixmaps (void); extern void init_icon_pixmap (short); extern void update_pixmap (int, int, int, int, int, int, int, char *); #else /* ----- SVGALIB functions ----- */ /* profiling */ #ifdef CS_PROFILE #define Fgl_write(a,b,c) FPgl_write(a,b,c) #define Fgl_getbox(a,b,c,d,e) FPgl_getbox(a,b,c,d,e) #define Fgl_putbox(a,b,c,d,e) FPgl_putbox(a,b,c,d,e) #define Fgl_fillbox(a,b,c,d,e) FPgl_fillbox(a,b,c,d,e) #define Fgl_hline(a,b,c,d) FPgl_hline(a,b,c,d) #define Fgl_line(a,b,c,d,e) FPgl_line(a,b,c,d,e) #define Fgl_setpixel(a,b,c) FPgl_setpixel(a,b,c) #define Fgl_setfontcolors(a,b) gl_setfontcolors(a,b) #define Fgl_setfont(a,b,c) gl_setfont(a,b,c) #define Fgl_enableclipping() gl_enableclipping() #define Fgl_setclippingwindow(a,b,c,d) gl_setclippingwindow(a,b,c,d) #define Fgl_disableclipping() gl_disableclipping() #else #define Fgl_write(a,b,c) gl_write(a,b,c) #define Fgl_getbox(a,b,c,d,e) gl_getbox(a,b,c,d,e) #define Fgl_putbox(a,b,c,d,e) gl_putbox(a,b,c,d,e) #define Fgl_fillbox(a,b,c,d,e) gl_fillbox(a,b,c,d,e) #define Fgl_hline(a,b,c,d) gl_hline(a,b,c,d) #define Fgl_line(a,b,c,d,e) gl_line(a,b,c,d,e) #define Fgl_setpixel(a,b,c) gl_setpixel(a,b,c) #define Fgl_setfontcolors(a,b) gl_setfontcolors(a,b) #define Fgl_setfont(a,b,c) gl_setfont(a,b,c) #define Fgl_enableclipping() gl_enableclipping() #define Fgl_setclippingwindow(a,b,c,d) gl_setclippingwindow(a,b,c,d) #define Fgl_disableclipping() gl_disableclipping() #endif #endif /* ******* end of lin-city.h *********** ***************************************** */ #include "lintypes.h" #endif /* __lin_city_h__ */ lincity-1.13.1/lintypes.h0000644000175000017500000000275007340321732012216 00000000000000/* ---------------------------------------------------------------------- * * lintypes.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __lintypes_h__ #define __lintypes_h__ #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #define NUM_OF_TYPES 400 #define NUM_OF_GROUPS 42 #define GROUP_NAME_LEN 20 struct GROUP { char name[GROUP_NAME_LEN+1]; /* name of group */ unsigned short no_credit; /* TRUE if need credit to build */ unsigned short group; /* This is redundant: it must match the index into the table */ unsigned short size; int colour; /* summary map colour */ int cost_mul; /* group cost multiplier */ int bul_cost; /* group bulldoze cost */ int fire_chance; /* probability of fire */ int cost; /* group cost */ int tech; /* group cost */ }; struct TYPE { int group; /* What group does this type belong to? */ char* graphic; /* Bitmap of the graphic */ }; int get_group_of_type (short selected_type); void set_map_groups (void); int get_type_cost (short type); int get_group_cost (short group); void get_type_name (short type, char * s); extern struct GROUP main_groups[NUM_OF_GROUPS]; extern struct TYPE main_types[NUM_OF_TYPES]; #endif /* __lintypes_h__ */ lincity-1.13.1/market.h0000644000175000017500000000051010066260602011617 00000000000000/* ---------------------------------------------------------------------- * * market.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "engglobs.h" void mps_market(int x, int y); lincity-1.13.1/module_buttons.h0000644000175000017500000000330107656115327013416 00000000000000#ifndef __module_buttons_h__ #define __module_buttons_h__ void init_modules(void); /* KBR 10/14/2002 Missing prototype */ void init_module_buttons (void); // screen.c: void draw_select_buttons (void); void draw_module_buttons (void); // geometry.c: void draw_select_button_graphic (int button, char *graphic) void draw_module (int button, char * graphic); // screen.c: void call_select_change_up (int button) void activate_module (int module); // mouse.c: void do_mouse_select_buttons (int rawx, int rawy, int mbutton) void module_buttons_handler (int x, int y, int mbutton); // mouse.c: void do_select_button (int button, int mbutton); void select_module (int module, int mbutton); // mouse.c: void highlight_select_button (int button); void highlight_module_button (int module); // mouse.c: void unhighlight_select_button (int button); void unhighlight_module_button (int button); // mouse.c: draw_module_cost (int grp); void draw_selected_module_cost (void); // screen.c: void draw_select_buttons (void); void draw_modules (void); // screen.c: void update_select_buttons (void); void update_avail_modules (int popup); // mouse.c: int inv_sbut (int button); int inv_sbut (int module); void set_selected_module (int type); #define NUMOF_MODULES 32 // #define NUMOF_SELECT_BUTTONS_DOWN 16 extern int sbut[NUMOF_MODULES]; extern int module_type[NUMOF_MODULES]; extern int selected_module; extern int old_selected_module; extern int selected_module_group; extern int selected_module_type; extern int selected_module_cost; /*extern char *module_graphic[NUMOF_MODULES]; extern int module_tflag[NUMOF_MODULES]; extern char module_help[NUMOF_MODULES][20]; */ extern int module_help_flag[NUMOF_MODULES]; #endif lincity-1.13.1/mouse.h0000644000175000017500000000503507554472703011512 00000000000000/* ---------------------------------------------------------------------- * * mouse.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __mouse_h__ #define __mouse_h__ #include "cliglobs.h" #define NUM_BUTTONS 3 #define LC_MOUSE_LEFTBUTTON 1 #define LC_MOUSE_MIDDLEBUTTON 2 #define LC_MOUSE_RIGHTBUTTON 3 /* Mouse event flags */ #define LC_MOUSE_RELEASE 0x10 #define LC_MOUSE_PRESS 0x20 /* Public interface variables and structures */ /* Mouse registry stuff. */ struct mouse_handle_struct { Rect * r; void (* handler)(int, int, int); struct mouse_handle_struct * prev; struct mouse_handle_struct * next; }; typedef struct mouse_handle_struct Mouse_Handle; /* mappoint_[xy] are non-zero if the button was pressed inside the main window. x and y are pixel coordinates. r_* are values for when the button was released. */ struct mouse_button_struct { int mappoint_x, mappoint_y; int x, y; int r_mappoint_x, r_mappoint_y; int r_x, r_y; int pressed; }; /* Public functions */ void mouse_setup (void); void init_mouse_registry(); int mouse_handle_click(int x, int y, int button); Mouse_Handle * mouse_register(Rect * r, void (*handler)(int, int, int)); void mouse_unregister(Mouse_Handle * mhandle); void cs_mouse_handler (int enc_button, int dx, int dy); void cs_mouse_handler (int, int, int); void move_mouse (int, int); void do_mouse_main_win (int, int, int); void drag_screen (void); /* Private functions */ int cmp(int, int); /* WCK: These were in lin-city.h */ void no_credit_build_msg (int selected_type); void hide_mouse (void); void redraw_mouse (void); void draw_square_mouse (int, int, int); void hide_square_mouse (void); void redraw_square_mouse (void); void draw_normal_mouse (int, int); void hide_normal_mouse (void); void redraw_normal_mouse (void); void do_mouse_select_buttons (int, int, int); void do_select_button (int, int); void highlight_select_button (int); void unhighlight_select_button (int); void do_mouse_other_buttons (int, int, int); void bulldoze_area (int, int); void fire_area (int, int); void do_market_cb_mouse (int, int); void do_port_cb_mouse (int, int); int is_real_river (int, int); void select_pause (void); void select_fast (void); void select_medium (void); void select_slow (void); void choose_residence (void); void do_multi_transport (int, int, int); int mt_draw (int, int, int); /* wcoreyk */ void draw_module_cost (int grp); #endif lincity-1.13.1/mps.h0000644000175000017500000000446110071464322011145 00000000000000/* ---------------------------------------------------------------------- * * mps.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __mps_h__ #define __mps_h__ #include "geometry.h" #include "cliglobs.h" void mps_full_refresh (void); void mappoint_stats (int, int, int); /* New, simplified mps routines */ #define MPS_MAP 0 /* Left click on map; x/y module statistics */ #define MPS_ENV 1 /* Right click on map; x/y environmental status */ #define MPS_GLOBAL 2 /* Global style; choose one of below */ #define MPS_GLOBAL_FINANCE 0 /* Overall financial information */ #define MPS_GLOBAL_OTHER_COSTS 1 /* More detailed financials */ #define MPS_GLOBAL_HOUSING 2 /* Citywide population information */ #define MPS_GLOBAL_STYLES 3 /* Number of global styles */ #define MPS_INFO_CHARS (MAPPOINT_STATS_W / 8) + 1 void mps_init(); int mps_set(int style, int x, int y); /* Attaches an area or global display */ void mps_redraw(void); /* Re-draw the mps area, bezel and all */ void mps_refresh(void); /* refresh the information display's contents */ void mps_update(void); /* Update text contents for later display (refresh) */ void mps_global_advance(void); /* Changes global var to next display */ /* mps_info storage functions; place values of corresponding type into mps_info[], performing certain pretification. The single argument forms center their argument. The dual arguments left-justify the first and right-justify the second. the ..p forms put a % after the second argument */ void mps_store_title(int i, char * t); void mps_store_fp(int i, double f); void mps_store_f(int i, double f); void mps_store_d(int i, int d); void mps_store_ss(int i, char * s1, char * s2); void mps_store_sd(int i, char * s, int d); void mps_store_sfp(int i, char * s, double fl); void mps_store_sss(int i, char * s1, char * s2, char * s3); /* Data for new mps routines */ extern char mps_info[MAPPOINT_STATS_LINES][MPS_INFO_CHARS]; extern int mps_global_style; /* MPS Global displays */ void mps_global_finance(void); void mps_global_other_costs(void); void mps_global_housing(void); void mps_right (int x, int y); #define _generic_mps #ifdef _generic_mps #endif #endif /* __mps_h__ */ lincity-1.13.1/pbar.h0000644000175000017500000000412407740174122011273 00000000000000/* pbar.h: handles rate-of-change indicators * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) 2001 Corey Keasling. * ---------------------------------------------------------------------- */ #ifndef _pbar_h #define _pbar_h #include "geometry.h" void init_pbars (void); void pbars_full_refresh (void); void init_pbar_text (void); void draw_pbar (Rect* b, char* graphic); void draw_pbars (void); void clear_pbar_text (Rect* pbar); void write_pbar_int (Rect* b, int val); void write_pbar_text (Rect* b, char * s); void refresh_pbars (void); void refresh_population_text (void); void update_pbar (int pbar_num, int value, int month_flag); void update_pbars_daily(void); void update_pbars_monthly(void); int compute_pbar_offset (Rect* b, int val); void draw_pbar_new (Rect* b, int val); void pbar_mouse(int rawx, int rawy, int button); /* Constants */ #define PBAR_POP_X (PBAR_AREA_X + 4) #define PBAR_POP_Y (PBAR_AREA_Y + 4) #define PBAR_TECH_X PBAR_POP_X #define PBAR_TECH_Y PBAR_POP_Y+(PBAR_H+1) #define PBAR_FOOD_X PBAR_POP_X #define PBAR_FOOD_Y PBAR_POP_Y+(PBAR_H+1)*2 #define PBAR_JOBS_X PBAR_POP_X #define PBAR_JOBS_Y PBAR_POP_Y+(PBAR_H+1)*3 #define PBAR_COAL_X PBAR_POP_X #define PBAR_COAL_Y PBAR_POP_Y+(PBAR_H+1)*4 #define PBAR_GOODS_X PBAR_POP_X #define PBAR_GOODS_Y PBAR_POP_Y+(PBAR_H+1)*5 #define PBAR_ORE_X PBAR_POP_X #define PBAR_ORE_Y PBAR_POP_Y+(PBAR_H+1)*6 #define PBAR_STEEL_X PBAR_POP_X #define PBAR_STEEL_Y PBAR_POP_Y+(PBAR_H+1)*7 #define PBAR_MONEY_X PBAR_POP_X #define PBAR_MONEY_Y PBAR_POP_Y+(PBAR_H+1)*8 /* Type:Position constants for pbars struct */ #define PPOP 0 #define PTECH 1 #define PFOOD 2 #define PJOBS 3 #define PMONEY 4 #define PCOAL 5 #define PGOODS 6 #define PORE 7 #define PSTEEL 8 #define NUM_PBARS 9 /* Number of elements per pbar */ #define PBAR_DATA_SIZE 12 struct pbar_st { int oldtot; int tot; int diff; int data_size; int data[PBAR_DATA_SIZE]; }; extern struct pbar_st pbars[NUM_PBARS]; #endif lincity-1.13.1/picedit.h0000644000175000017500000000166407340321732011773 00000000000000/* ---------------------------------------------------------------------- * * picedit.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #define VERSION "0.11" #define TRUE 1 #define FALSE 0 #define WINWIDTH 640 /* default window width */ #define WINHEIGHT 480 /* default window height */ #define BORDERX 30 #define BORDERY 30 #define BORDER 50 /* wasp won't go closer than this to the edges */ #define ALIVE_MASK (SubstructureNotifyMask | KeyPressMask | PointerMotionMask) /* Error Codes */ #define FATAL -1 #define WARNING -2 /* Type Definitions */ typedef struct _disp { Window win; Display *dpy; int screen; Window root; char *dname; long bg; /* colors */ XColor bg_xcolor; GC pixcolour_gc[256]; Atom kill_atom, protocol_atom; Colormap cmap; } disp; lincity-1.13.1/pixmap.h0000644000175000017500000000307307617363562011662 00000000000000/* ---------------------------------------------------------------------- * * pixmap.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __pixmap_h__ #define __pixmap_h__ /* ---------------------------------------------------------------------- * * Public Global Variables * ---------------------------------------------------------------------- */ extern char* pixmap; extern int pixmap_height; extern int pixmap_width; /* ---------------------------------------------------------------------- * * Public Fn Prototypes * ---------------------------------------------------------------------- */ void initialize_pixmap (void); void resize_pixmap (int new_width, int new_height); int pixmap_getpixel (int x, int y); inline int pixmap_index (int x, int y); int pixmap_getpixel (int x, int y); void pixmap_setpixel (int x, int y, int col); void pixmap_hline (int x1, int y1, int x2, int col); void pixmap_vline (int x1, int y1, int y2, int col); void pixmap_fillbox (int x, int y, int w, int h, int col); void pixmap_putbox (char* src, int src_x, int src_y, int src_w, int dst_x, int dst_y, int w, int h); void free_pixmap (void); /* ---------------------------------------------------------------------- * * Public Inline Functions * ---------------------------------------------------------------------- */ #if defined (WIN32) inline int pixmap_index (int x, int y) { return y*pixmap_width + x; } #endif #endif /* __pixmap_h__ */ lincity-1.13.1/power.h0000644000175000017500000000346710066003556011511 00000000000000#ifndef _POWER_H #define _POWER_H #undef DEBUG_POWER struct grid_struct { int power_lines; long total_power; long avail_power; /* Capacity available */ long max_power; long demand; short powered; }; typedef struct grid_struct Grid; /* public */ #define MAX_GRIDS 128 // How many grids in the array, not how many to allocate extern Grid * grid[MAX_GRIDS]; void map_power_grid(void); int get_power (int x, int y, int power, int block_industry); void do_windmill(int x, int y); void do_power_substation(int x, int y); void do_power_source(int x, int y); void do_power_source_coal(int x, int y); void do_power_line(int x, int y); void power_time_step (); /* intended private */ void recurse_power_grid (int startx, int starty, int steps); int check_grid(int x, int y, int xi, int yi); void project_power(int x, int y); /* #ifdef POWER_LINE_CAPACITY #undef POWER_LINE_CAPACITY #endif */ #define POWER_LINE_LOSS 1 /* one KW */ #define POWER_MODULUS 25 /* Controls how often we see a packet in anim */ #define WEST 1 #define NORTH 2 #define EAST 3 #define SOUTH 4 #define XY_IS_GRID(x,y) \ ((MP_GROUP(x,y) == GROUP_COAL_POWER) ||\ (MP_GROUP(x,y) == GROUP_WINDMILL) || \ (MP_GROUP(x,y) == GROUP_POWER_LINE) || \ (MP_GROUP(x,y) == GROUP_SOLAR_POWER) || \ (MP_GROUP(x,y) == GROUP_SUBSTATION)) #define XY_IS_WATER(x,y) (MP_GROUP(x,y) == GROUP_WATER) #define IS_POWER_SOURCE(x,y) \ ((MP_GROUP(x,y) == GROUP_COAL_POWER) || \ (MP_GROUP(x,y) == GROUP_SOLAR_POWER) || \ (MP_GROUP(x,y) == GROUP_WINDMILL)) #define IS_POWER_LINE(x,y) (MP_GROUP(x,y) == GROUP_POWER_LINE) #define IS_OLD_WINDMILL(x,y) \ ((MP_GROUP(x,y) == GROUP_WINDMILL) && \ (MP_TYPE(x,y) != CST_USED) && \ (MP_INFO(x,y).int_2 < MODERN_WINDMILL_TECH)) #define GRID_CURRENT(x,y) (MP_INFO(x,y).int_7 == grid_inc) /*** JOBS ***/ #define SOLAR_POWER_JOBS 50 #endif lincity-1.13.1/readpng.h0000644000175000017500000000057310002571332011760 00000000000000/* ---------------------------------------------------------------------- * * readpng.c * This file is part of lincity (see COPYRIGHT for copyright information). * ---------------------------------------------------------------------- */ #ifndef __readpng_h__ #define __readpng_h__ int load_png_graphics (char *txt_filename, char *png_filename); #endif /* __readpng_h__ */ lincity-1.13.1/resource.h0000644000175000017500000000066607737730734012222 00000000000000//{{NO_DEPENDENCIES}} // Microsoft Developer Studio generated include file. // Used by lincity.rc // // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NO_MFC 1 #define _APS_NEXT_RESOURCE_VALUE 104 #define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_CONTROL_VALUE 1000 #define _APS_NEXT_SYMED_VALUE 101 #endif #endif lincity-1.13.1/screen.h0000644000175000017500000000414510066031403011616 00000000000000/* ---------------------------------------------------------------------- * * screen.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __screen_h__ #define __screen_h__ #include "cliglobs.h" #define MONTHGRAPH_STYLE_ECONOMY 1 #define MONTHGRAPH_STYLE_SUSTAIN 2 #define MONTHGRAPH_STYLE_MIN MONTHGRAPH_STYLE_ECONOMY #define MONTHGRAPH_STYLE_MAX MONTHGRAPH_STYLE_SUSTAIN extern unsigned char main_font[2048]; extern unsigned char start_font1[2048]; extern unsigned char start_font2[4096]; extern unsigned char start_font3[4096]; int monthgraph_style; /* This is on in screen_full_refresh, used in *_refresh() */ extern char screen_refreshing; char* current_month (int current_time); void draw_cb_box (int row, int col, int checked); int ask_launch_rocket_click (int x, int y); int ask_launch_rocket_now (int x, int y); void display_rocket_result_dialog (int result); void draw_background (void); void screen_full_refresh (void); void init_fonts (void); void initialize_monthgraph (void); void rotate_mini_screen (void); void advance_mps_style (void); void update_main_screen (int full_refresh); void connect_transport_main_screen (void); void refresh_main_screen (void); void refresh_mps (void); void advance_monthgraph_style (void); void refresh_monthgraph (void); void draw_small_yellow_bezel (int x, int y, int h, int w); void init_pbars (void); void Fgl_getrect(Rect * r, void * buffer); void Fgl_putrect(Rect *r, void * buffer); void mini_screen_help (void); void status_message(char *m1, char* m2); void print_time_for_year (void); void rotate_main_screen (void); void screen_setup (void); void refresh_main_screen (void); /* Miniscreen */ void init_mini_map_mouse(void); void mini_map_handler(int x, int y, int button); void mini_aux_handler(int x, int y, int button); /* Message area */ void display_info_message (int colour, char* ss, char* xs); void reset_status_message (void); #define CB_SPACE 20 // space between checkbuttons for market/port #endif /* __screen_h__ */ lincity-1.13.1/shrglobs.h0000644000175000017500000000073010002571332012156 00000000000000/* ---------------------------------------------------------------------- * * shrglobs.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __shrglobs_h__ #define __shrglobs_h__ extern int pix_double; // extern char graphic_path[256]; #if defined (WIN32) extern char windowsfontfile[256]; #endif #endif /* __shrglobs_h__ */ lincity-1.13.1/stats.h0000644000175000017500000000532207612332363011507 00000000000000/* ---------------------------------------------------------------------- * * stats.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2002. * Portions copyright (c) Corey Keasling, 2000-2002. * ---------------------------------------------------------------------- */ #ifndef __stats_h__ #define __stats_h__ /* Statistics, Accumulators and Counters all reside here */ /* Daily accumulators */ /* Note on variables (GCS): -- Variables that begin with a "t" (e.g. tpopulation) are monthly accumulators. They are initialized to zero on the first day of the month. -- The yearly accumulators have no prefix (e.g. income_tax). -- The daily accumulators have no prefix either (e.g. population). -- Variables that begin with a "ly" (Last Year; e.g. ly_university_cost) are yearly display variables. They will be displayed in the mini-map when the user clicks on the pound sterling icon. */ /* daily */ extern int food_in_markets; extern int jobs_in_markets; extern int coal_in_markets; extern int goods_in_markets; extern int ore_in_markets; extern int steel_in_markets; extern int waste_in_markets; /* monthly */ extern int tfood_in_markets; extern int tjobs_in_markets; extern int tcoal_in_markets; extern int tgoods_in_markets; extern int tore_in_markets; extern int tsteel_in_markets; extern int twaste_in_markets; extern int tpopulation; extern int tstarving_population; extern int tunemployed_population; extern int twaste_in_markets; /* yearly */ extern int income_tax; extern int coal_tax; extern int goods_tax; extern int export_tax; extern int import_cost; extern int unemployment_cost; extern int transport_cost; extern int windmill_cost; extern int university_cost; extern int recycle_cost; extern int deaths_cost; extern int health_cost; extern int rocket_pad_cost; extern int school_cost; extern int fire_cost; extern int cricket_cost; extern int other_cost; /* yearly */ extern int ly_income_tax; extern int ly_coal_tax; extern int ly_goods_tax; extern int ly_export_tax; extern int ly_import_cost; extern int ly_other_cost; extern int ly_unemployment_cost; extern int ly_transport_cost; extern int ly_fire_cost; extern int ly_university_cost; extern int ly_recycle_cost; extern int ly_school_cost; extern int ly_deaths_cost; extern int ly_health_cost; extern int ly_rocket_pad_cost; extern int ly_interest; extern int ly_windmill_cost; extern int ly_cricket_cost; /* Averaging variables */ extern int data_last_month; /* Function prototypes */ void init_inventory(void); void inventory(int x, int y); void init_daily(void); void init_monthly(void); void init_yearly(void); void add_daily_to_monthly(void); #endif lincity-1.13.1/simulate.h0000644000175000017500000000102407450442144012166 00000000000000/* ---------------------------------------------------------------------- * * simulate.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __simulate_h__ #define __simulate_h__ void clear_mappoint (short fill, int x, int y); void new_city (int* originx, int* originy, int random_village); void count_all_groups (int* group_count); void do_time_step (void); #endif /* __simulate_h__ */ lincity-1.13.1/timer.h0000644000175000017500000000077307465125246011504 00000000000000/* ---------------------------------------------------------------------- * * timer.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __timer_h__ #define __timer_h__ void reset_start_time (void); void init_timer_buttons(void); void select_pause (void); void select_slow (void); void select_medium (void); void select_fast (void); #endif /* __timer_h__ */ lincity-1.13.1/transport.h0000644000175000017500000000103107451440236012376 00000000000000/* ---------------------------------------------------------------------- * * transport.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __TRANSPORT_H__ #define __TRANSPORT_H__ #include "engglobs.h" #define XY_IS_TRANSPORT(x,y) \ ((MP_GROUP(x,y) == GROUP_TRACK) || \ (MP_GROUP(x,y) == GROUP_ROAD) || \ (MP_GROUP(x,y) == GROUP_RAIL) || \ (MP_GROUP(x,y) == GROUP_POWER_LINE)) #endif lincity-1.13.1/typeinit.h0000644000175000017500000000050707340321734012214 00000000000000/* ---------------------------------------------------------------------- * * typeinit.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lintypes.h" extern char graphic_path[]; lincity-1.13.1/xpicedit.h0000644000175000017500000000171507340321734012162 00000000000000/* ---------------------------------------------------------------------- * * xpicedit.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ /* Constants */ /* #define VERSION "0.10" */ #define TRUE 1 #define FALSE 0 #define WINWIDTH 640 /* default window width */ #define WINHEIGHT 480 /* default window height */ #define BORDERX 30 #define BORDERY 30 #define BORDER 50 /* wasp won't go closer than this to the edges */ #define ALIVE_MASK (SubstructureNotifyMask | KeyPressMask | PointerMotionMask) /* Error Codes */ #define FATAL -1 #define WARNING -2 /* Type Definitions */ typedef struct _disp { Window win; Display *dpy; int screen; Window root; char *dname; long bg; /* colors */ XColor bg_xcolor; GC pixcolour_gc[256]; Atom kill_atom, protocol_atom; Colormap cmap; } disp; lincity-1.13.1/modules.h0000644000175000017500000000266310066321022012011 00000000000000/* ---------------------------------------------------------------------- * * modules.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, * (c) Greg Sharp 1997-2001, (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ /* This is a meta-header file, which includes the headers for all of the modules in modules/ */ #ifndef __modules_h__ #define __modules_h__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif /* __modules_h__ */ lincity-1.13.1/Makefile.in0000644000175000017500000037313110071466675012262 00000000000000# Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # 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. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : host_triplet = @host@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ ### DEFS = @DEFS@ -DLIBDIR=\"${pkgdatadir}\" DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LCLIBS = @LCLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ PROGS = @PROGS@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ with_gzip = @with_gzip@ AUTOMAKE_OPTIONS = foreign X_DEFS = -DLC_X11=1 -Wall SVGA_DEFS = -DSVGALIB=1 SUBDIRS = m4 intl po modules noinst_HEADERS = \ cliglobs.h \ common.h confw32.h \ engglobs.h engine.h fileutil.h \ generic.h geometry.h dialbox.h \ lcconfig.h \ lchelp.h \ lcintl.h lcstring.h lclib.h\ lctypes.h lcwin32.h \ lcx11.h lcsvga.h \ ldsvgui.h ldsvguts.h \ lin-city.h lintypes.h market.h \ module_buttons.h \ mouse.h mps.h pbar.h \ picedit.h pixmap.h power.h \ readpng.h \ resource.h screen.h \ shrglobs.h stats.h \ simulate.h timer.h transport.h \ typeinit.h xpicedit.h modules.h # Directories that need to have CVS and ca subdirectories removed LC_DISTDIRS = \ help icons messages \ old.Makefiles opening tools EXTRA_DIST = $(LC_DISTDIRS) \ colour.pal \ lcwin32.c winmain.c \ lincity.ico small.ico lincity.rc \ CHANGES COPYRIGHT Acknowledgements \ config.sh \ README.profiling \ lincity.6 man_MANS = lincity.6 nobase_pkgdata_DATA = help/* icons/* messages/* opening/* colour.pal ############################################################################ ############################################################################ EXTRA_PROGRAMS = xlincity lincity xpicedit picedit EXTRA_LTLIBRARIES = liblcx.la liblcsvga.la bin_PROGRAMS = @PROGS@ lib_LTLIBRARIES = @LCLIBS@ gui_SOURCES = ldsvgui.c splash.c lchelp.c main.c mouse.c mps.c screen.c \ pixmap.c cliglobs.c geometry.c pbar.c module_buttons.c \ dialbox.c engine_SOURCES = lclib.c power.c ldsvguts.c engine.c transport.c market.c \ simulate.c shrtypes.c lintypes.c readpng.c timer.c fileutil.c \ shrglobs.c stats.c liblcx_la_SHORTNAME = lcx liblcx_la_SOURCES = $(gui_SOURCES) lcx11.c liblcx_la_LIBADD = @X_LIBS@ -lXext -lX11 -lpng -lz -lm liblcx_la_CPPFLAGS = $(X_DEFS) liblcsvga_la_SHORTNAME = lcsvga liblcsvga_la_SOURCES = $(gui_SOURCES) lcsvga.c liblcsvga_la_LIBADD = @SVGA_LIBS@ -lvgagl -lvga -lpng -lz -lm liblcsvga_la_CPPFLAGS = $(SVGA_DEFS) lincity_SOURCES = $(engine_SOURCES) lincity_DEPENDENCIES = LCSVGA_LIBS modules/libmodules.la lincity_LDADD = liblcsvga.la modules/libmodules.la xlincity_SOURCES = $(engine_SOURCES) xlincity_DEPENDENCIES = LCX_LIBS modules/libmodules.la xlincity_LDADD = liblcx.la modules/libmodules.la xpicedit_SOURCES = EXTRA_xpicedit_SOURCES = picedit.c xpicedit_LDADD = x_picedit.o -lXext -lX11 -lm picedit_SOURCES = EXTRA_picedit_SOURCES = picedit.c picedit_LDADD = vga_picedit.o -lvgagl -lvga -lm ACLOCAL_AMFLAGS = -I m4 subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = intl/Makefile LTLIBRARIES = $(lib_LTLIBRARIES) liblcsvga_la_LDFLAGS = liblcsvga_la_DEPENDENCIES = am__objects_1 = lcsvga-ldsvgui.lo lcsvga-splash.lo lcsvga-lchelp.lo \ lcsvga-main.lo lcsvga-mouse.lo lcsvga-mps.lo lcsvga-screen.lo \ lcsvga-pixmap.lo lcsvga-cliglobs.lo lcsvga-geometry.lo \ lcsvga-pbar.lo lcsvga-module_buttons.lo lcsvga-dialbox.lo am_liblcsvga_la_OBJECTS = $(am__objects_1) lcsvga-lcsvga.lo liblcsvga_la_OBJECTS = $(am_liblcsvga_la_OBJECTS) liblcx_la_LDFLAGS = liblcx_la_DEPENDENCIES = am__objects_2 = lcx-ldsvgui.lo lcx-splash.lo lcx-lchelp.lo lcx-main.lo \ lcx-mouse.lo lcx-mps.lo lcx-screen.lo lcx-pixmap.lo \ lcx-cliglobs.lo lcx-geometry.lo lcx-pbar.lo \ lcx-module_buttons.lo lcx-dialbox.lo am_liblcx_la_OBJECTS = $(am__objects_2) lcx-lcx11.lo liblcx_la_OBJECTS = $(am_liblcx_la_OBJECTS) EXTRA_PROGRAMS = xlincity$(EXEEXT) lincity$(EXEEXT) xpicedit$(EXEEXT) \ picedit$(EXEEXT) bin_PROGRAMS = @PROGS@ PROGRAMS = $(bin_PROGRAMS) am__objects_3 = lclib.$(OBJEXT) power.$(OBJEXT) ldsvguts.$(OBJEXT) \ engine.$(OBJEXT) transport.$(OBJEXT) market.$(OBJEXT) \ simulate.$(OBJEXT) shrtypes.$(OBJEXT) lintypes.$(OBJEXT) \ readpng.$(OBJEXT) timer.$(OBJEXT) fileutil.$(OBJEXT) \ shrglobs.$(OBJEXT) stats.$(OBJEXT) am_lincity_OBJECTS = $(am__objects_3) lincity_OBJECTS = $(am_lincity_OBJECTS) lincity_LDFLAGS = am_picedit_OBJECTS = picedit_OBJECTS = $(am_picedit_OBJECTS) picedit_DEPENDENCIES = vga_picedit.o picedit_LDFLAGS = am_xlincity_OBJECTS = $(am__objects_3) xlincity_OBJECTS = $(am_xlincity_OBJECTS) xlincity_LDFLAGS = am_xpicedit_OBJECTS = xpicedit_OBJECTS = $(am_xpicedit_OBJECTS) xpicedit_DEPENDENCIES = x_picedit.o xpicedit_LDFLAGS = DEFAULT_INCLUDES = -I. -I$(srcdir) -I. depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/engine.Po ./$(DEPDIR)/fileutil.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/lclib.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-cliglobs.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-dialbox.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-geometry.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-lchelp.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-lcsvga.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-ldsvgui.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-main.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-module_buttons.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-mouse.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-mps.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-pbar.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-pixmap.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-screen.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcsvga-splash.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-cliglobs.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-dialbox.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-geometry.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-lchelp.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-lcx11.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-ldsvgui.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-main.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-module_buttons.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-mouse.Plo ./$(DEPDIR)/lcx-mps.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-pbar.Plo ./$(DEPDIR)/lcx-pixmap.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-screen.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/lcx-splash.Plo ./$(DEPDIR)/ldsvguts.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/lintypes.Po ./$(DEPDIR)/market.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/picedit.Po ./$(DEPDIR)/power.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/readpng.Po ./$(DEPDIR)/shrglobs.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/shrtypes.Po ./$(DEPDIR)/simulate.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/stats.Po ./$(DEPDIR)/timer.Po \ @AMDEP_TRUE@ ./$(DEPDIR)/transport.Po COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ DIST_SOURCES = $(liblcsvga_la_SOURCES) $(liblcx_la_SOURCES) \ $(lincity_SOURCES) $(picedit_SOURCES) $(EXTRA_picedit_SOURCES) \ $(xlincity_SOURCES) $(xpicedit_SOURCES) \ $(EXTRA_xpicedit_SOURCES) NROFF = nroff MANS = $(man_MANS) DATA = $(nobase_pkgdata_DATA) HEADERS = $(noinst_HEADERS) RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ ps-recursive install-info-recursive uninstall-info-recursive \ all-recursive install-data-recursive install-exec-recursive \ installdirs-recursive install-recursive uninstall-recursive \ check-recursive installcheck-recursive DIST_COMMON = README $(noinst_HEADERS) $(srcdir)/Makefile.in \ $(srcdir)/configure ABOUT-NLS COPYING Makefile.am TODO \ acinclude.m4 aclocal.m4 compile config.guess config.h.in \ config.sub configure configure.ac depcomp install-sh ltmain.sh \ missing mkinstalldirs DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(liblcsvga_la_SOURCES) $(liblcx_la_SOURCES) $(lincity_SOURCES) $(picedit_SOURCES) $(EXTRA_picedit_SOURCES) $(xlincity_SOURCES) $(xpicedit_SOURCES) $(EXTRA_xpicedit_SOURCES) all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe) $(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(srcdir)/configure: $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): configure.ac acinclude.m4 m4/codeset.m4 m4/gettext.m4 m4/glibc21.m4 m4/iconv.m4 m4/intdiv0.m4 m4/inttypes-pri.m4 m4/inttypes.m4 m4/inttypes_h.m4 m4/isc-posix.m4 m4/lcmessage.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/progtest.m4 m4/stdint_h.m4 m4/uintmax_t.m4 m4/ulonglong.m4 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOHEADER) touch $(srcdir)/config.h.in distclean-hdr: -rm -f config.h stamp-h1 intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ libLTLIBRARIES_INSTALL = $(INSTALL) install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(libdir) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f="`echo $$p | sed -e 's|^.*/||'`"; \ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p="`echo $$p | sed -e 's|^.*/||'`"; \ echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" = "$$p" && dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done liblcsvga.la: $(liblcsvga_la_OBJECTS) $(liblcsvga_la_DEPENDENCIES) $(LINK) $(liblcsvga_la_LDFLAGS) $(liblcsvga_la_OBJECTS) $(liblcsvga_la_LIBADD) $(LIBS) liblcx.la: $(liblcx_la_OBJECTS) $(liblcx_la_DEPENDENCIES) $(LINK) $(liblcx_la_LDFLAGS) $(liblcx_la_OBJECTS) $(liblcx_la_LIBADD) $(LIBS) binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(bindir) @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ rm -f $(DESTDIR)$(bindir)/$$f; \ done clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done lincity$(EXEEXT): $(lincity_OBJECTS) $(lincity_DEPENDENCIES) @rm -f lincity$(EXEEXT) $(LINK) $(lincity_LDFLAGS) $(lincity_OBJECTS) $(lincity_LDADD) $(LIBS) picedit$(EXEEXT): $(picedit_OBJECTS) $(picedit_DEPENDENCIES) @rm -f picedit$(EXEEXT) $(LINK) $(picedit_LDFLAGS) $(picedit_OBJECTS) $(picedit_LDADD) $(LIBS) xlincity$(EXEEXT): $(xlincity_OBJECTS) $(xlincity_DEPENDENCIES) @rm -f xlincity$(EXEEXT) $(LINK) $(xlincity_LDFLAGS) $(xlincity_OBJECTS) $(xlincity_LDADD) $(LIBS) xpicedit$(EXEEXT): $(xpicedit_OBJECTS) $(xpicedit_DEPENDENCIES) @rm -f xpicedit$(EXEEXT) $(LINK) $(xpicedit_LDFLAGS) $(xpicedit_OBJECTS) $(xpicedit_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) core *.core distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/engine.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileutil.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lclib.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-cliglobs.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-dialbox.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-geometry.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-lchelp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-lcsvga.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-ldsvgui.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-main.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-module_buttons.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-mouse.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-mps.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-pbar.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-pixmap.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-screen.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcsvga-splash.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-cliglobs.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-dialbox.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-geometry.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-lchelp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-lcx11.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-ldsvgui.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-main.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-module_buttons.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-mouse.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-mps.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-pbar.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-pixmap.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-screen.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcx-splash.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldsvguts.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lintypes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/market.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/picedit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/power.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readpng.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shrglobs.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shrtypes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simulate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stats.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/transport.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< .c.obj: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` .c.lo: @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< lcsvga-ldsvgui.o: ldsvgui.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-ldsvgui.o -MD -MP -MF "$(DEPDIR)/lcsvga-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-ldsvgui.o `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo" "$(DEPDIR)/lcsvga-ldsvgui.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcsvga-ldsvgui.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-ldsvgui.Po' tmpdepfile='$(DEPDIR)/lcsvga-ldsvgui.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-ldsvgui.o `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c lcsvga-ldsvgui.obj: ldsvgui.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-ldsvgui.obj -MD -MP -MF "$(DEPDIR)/lcsvga-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-ldsvgui.obj `if test -f 'ldsvgui.c'; then $(CYGPATH_W) 'ldsvgui.c'; else $(CYGPATH_W) '$(srcdir)/ldsvgui.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo" "$(DEPDIR)/lcsvga-ldsvgui.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcsvga-ldsvgui.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-ldsvgui.Po' tmpdepfile='$(DEPDIR)/lcsvga-ldsvgui.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-ldsvgui.obj `if test -f 'ldsvgui.c'; then $(CYGPATH_W) 'ldsvgui.c'; else $(CYGPATH_W) '$(srcdir)/ldsvgui.c'; fi` lcsvga-ldsvgui.lo: ldsvgui.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-ldsvgui.lo -MD -MP -MF "$(DEPDIR)/lcsvga-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-ldsvgui.lo `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo" "$(DEPDIR)/lcsvga-ldsvgui.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcsvga-ldsvgui.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-ldsvgui.Plo' tmpdepfile='$(DEPDIR)/lcsvga-ldsvgui.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-ldsvgui.lo `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c lcsvga-splash.o: splash.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-splash.o -MD -MP -MF "$(DEPDIR)/lcsvga-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-splash.o `test -f 'splash.c' || echo '$(srcdir)/'`splash.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-splash.Tpo" "$(DEPDIR)/lcsvga-splash.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcsvga-splash.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-splash.Po' tmpdepfile='$(DEPDIR)/lcsvga-splash.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-splash.o `test -f 'splash.c' || echo '$(srcdir)/'`splash.c lcsvga-splash.obj: splash.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-splash.obj -MD -MP -MF "$(DEPDIR)/lcsvga-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-splash.obj `if test -f 'splash.c'; then $(CYGPATH_W) 'splash.c'; else $(CYGPATH_W) '$(srcdir)/splash.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-splash.Tpo" "$(DEPDIR)/lcsvga-splash.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcsvga-splash.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-splash.Po' tmpdepfile='$(DEPDIR)/lcsvga-splash.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-splash.obj `if test -f 'splash.c'; then $(CYGPATH_W) 'splash.c'; else $(CYGPATH_W) '$(srcdir)/splash.c'; fi` lcsvga-splash.lo: splash.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-splash.lo -MD -MP -MF "$(DEPDIR)/lcsvga-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-splash.lo `test -f 'splash.c' || echo '$(srcdir)/'`splash.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-splash.Tpo" "$(DEPDIR)/lcsvga-splash.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcsvga-splash.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-splash.Plo' tmpdepfile='$(DEPDIR)/lcsvga-splash.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-splash.lo `test -f 'splash.c' || echo '$(srcdir)/'`splash.c lcsvga-lchelp.o: lchelp.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lchelp.o -MD -MP -MF "$(DEPDIR)/lcsvga-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lchelp.o `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lchelp.Tpo" "$(DEPDIR)/lcsvga-lchelp.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcsvga-lchelp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lchelp.Po' tmpdepfile='$(DEPDIR)/lcsvga-lchelp.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lchelp.o `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c lcsvga-lchelp.obj: lchelp.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lchelp.obj -MD -MP -MF "$(DEPDIR)/lcsvga-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lchelp.obj `if test -f 'lchelp.c'; then $(CYGPATH_W) 'lchelp.c'; else $(CYGPATH_W) '$(srcdir)/lchelp.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lchelp.Tpo" "$(DEPDIR)/lcsvga-lchelp.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcsvga-lchelp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lchelp.Po' tmpdepfile='$(DEPDIR)/lcsvga-lchelp.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lchelp.obj `if test -f 'lchelp.c'; then $(CYGPATH_W) 'lchelp.c'; else $(CYGPATH_W) '$(srcdir)/lchelp.c'; fi` lcsvga-lchelp.lo: lchelp.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lchelp.lo -MD -MP -MF "$(DEPDIR)/lcsvga-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lchelp.lo `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lchelp.Tpo" "$(DEPDIR)/lcsvga-lchelp.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcsvga-lchelp.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lchelp.Plo' tmpdepfile='$(DEPDIR)/lcsvga-lchelp.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lchelp.lo `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c lcsvga-main.o: main.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-main.o -MD -MP -MF "$(DEPDIR)/lcsvga-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-main.Tpo" "$(DEPDIR)/lcsvga-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcsvga-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-main.Po' tmpdepfile='$(DEPDIR)/lcsvga-main.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c lcsvga-main.obj: main.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-main.obj -MD -MP -MF "$(DEPDIR)/lcsvga-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-main.Tpo" "$(DEPDIR)/lcsvga-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcsvga-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-main.Po' tmpdepfile='$(DEPDIR)/lcsvga-main.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` lcsvga-main.lo: main.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-main.lo -MD -MP -MF "$(DEPDIR)/lcsvga-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-main.Tpo" "$(DEPDIR)/lcsvga-main.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcsvga-main.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-main.Plo' tmpdepfile='$(DEPDIR)/lcsvga-main.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c lcsvga-mouse.o: mouse.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mouse.o -MD -MP -MF "$(DEPDIR)/lcsvga-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mouse.Tpo" "$(DEPDIR)/lcsvga-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcsvga-mouse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mouse.Po' tmpdepfile='$(DEPDIR)/lcsvga-mouse.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c lcsvga-mouse.obj: mouse.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mouse.obj -MD -MP -MF "$(DEPDIR)/lcsvga-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mouse.Tpo" "$(DEPDIR)/lcsvga-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcsvga-mouse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mouse.Po' tmpdepfile='$(DEPDIR)/lcsvga-mouse.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi` lcsvga-mouse.lo: mouse.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mouse.lo -MD -MP -MF "$(DEPDIR)/lcsvga-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mouse.lo `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mouse.Tpo" "$(DEPDIR)/lcsvga-mouse.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcsvga-mouse.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mouse.Plo' tmpdepfile='$(DEPDIR)/lcsvga-mouse.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mouse.lo `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c lcsvga-mps.o: mps.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mps.o -MD -MP -MF "$(DEPDIR)/lcsvga-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mps.o `test -f 'mps.c' || echo '$(srcdir)/'`mps.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mps.Tpo" "$(DEPDIR)/lcsvga-mps.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcsvga-mps.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mps.Po' tmpdepfile='$(DEPDIR)/lcsvga-mps.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mps.o `test -f 'mps.c' || echo '$(srcdir)/'`mps.c lcsvga-mps.obj: mps.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mps.obj -MD -MP -MF "$(DEPDIR)/lcsvga-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mps.obj `if test -f 'mps.c'; then $(CYGPATH_W) 'mps.c'; else $(CYGPATH_W) '$(srcdir)/mps.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mps.Tpo" "$(DEPDIR)/lcsvga-mps.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcsvga-mps.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mps.Po' tmpdepfile='$(DEPDIR)/lcsvga-mps.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mps.obj `if test -f 'mps.c'; then $(CYGPATH_W) 'mps.c'; else $(CYGPATH_W) '$(srcdir)/mps.c'; fi` lcsvga-mps.lo: mps.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-mps.lo -MD -MP -MF "$(DEPDIR)/lcsvga-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-mps.lo `test -f 'mps.c' || echo '$(srcdir)/'`mps.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-mps.Tpo" "$(DEPDIR)/lcsvga-mps.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcsvga-mps.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-mps.Plo' tmpdepfile='$(DEPDIR)/lcsvga-mps.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-mps.lo `test -f 'mps.c' || echo '$(srcdir)/'`mps.c lcsvga-screen.o: screen.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-screen.o -MD -MP -MF "$(DEPDIR)/lcsvga-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-screen.o `test -f 'screen.c' || echo '$(srcdir)/'`screen.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-screen.Tpo" "$(DEPDIR)/lcsvga-screen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcsvga-screen.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-screen.Po' tmpdepfile='$(DEPDIR)/lcsvga-screen.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-screen.o `test -f 'screen.c' || echo '$(srcdir)/'`screen.c lcsvga-screen.obj: screen.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-screen.obj -MD -MP -MF "$(DEPDIR)/lcsvga-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-screen.obj `if test -f 'screen.c'; then $(CYGPATH_W) 'screen.c'; else $(CYGPATH_W) '$(srcdir)/screen.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-screen.Tpo" "$(DEPDIR)/lcsvga-screen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcsvga-screen.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-screen.Po' tmpdepfile='$(DEPDIR)/lcsvga-screen.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-screen.obj `if test -f 'screen.c'; then $(CYGPATH_W) 'screen.c'; else $(CYGPATH_W) '$(srcdir)/screen.c'; fi` lcsvga-screen.lo: screen.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-screen.lo -MD -MP -MF "$(DEPDIR)/lcsvga-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-screen.lo `test -f 'screen.c' || echo '$(srcdir)/'`screen.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-screen.Tpo" "$(DEPDIR)/lcsvga-screen.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcsvga-screen.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-screen.Plo' tmpdepfile='$(DEPDIR)/lcsvga-screen.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-screen.lo `test -f 'screen.c' || echo '$(srcdir)/'`screen.c lcsvga-pixmap.o: pixmap.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pixmap.o -MD -MP -MF "$(DEPDIR)/lcsvga-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pixmap.o `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pixmap.Tpo" "$(DEPDIR)/lcsvga-pixmap.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcsvga-pixmap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pixmap.Po' tmpdepfile='$(DEPDIR)/lcsvga-pixmap.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pixmap.o `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c lcsvga-pixmap.obj: pixmap.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pixmap.obj -MD -MP -MF "$(DEPDIR)/lcsvga-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pixmap.obj `if test -f 'pixmap.c'; then $(CYGPATH_W) 'pixmap.c'; else $(CYGPATH_W) '$(srcdir)/pixmap.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pixmap.Tpo" "$(DEPDIR)/lcsvga-pixmap.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcsvga-pixmap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pixmap.Po' tmpdepfile='$(DEPDIR)/lcsvga-pixmap.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pixmap.obj `if test -f 'pixmap.c'; then $(CYGPATH_W) 'pixmap.c'; else $(CYGPATH_W) '$(srcdir)/pixmap.c'; fi` lcsvga-pixmap.lo: pixmap.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pixmap.lo -MD -MP -MF "$(DEPDIR)/lcsvga-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pixmap.lo `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pixmap.Tpo" "$(DEPDIR)/lcsvga-pixmap.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcsvga-pixmap.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pixmap.Plo' tmpdepfile='$(DEPDIR)/lcsvga-pixmap.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pixmap.lo `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c lcsvga-cliglobs.o: cliglobs.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-cliglobs.o -MD -MP -MF "$(DEPDIR)/lcsvga-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-cliglobs.o `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-cliglobs.Tpo" "$(DEPDIR)/lcsvga-cliglobs.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcsvga-cliglobs.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-cliglobs.Po' tmpdepfile='$(DEPDIR)/lcsvga-cliglobs.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-cliglobs.o `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c lcsvga-cliglobs.obj: cliglobs.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-cliglobs.obj -MD -MP -MF "$(DEPDIR)/lcsvga-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-cliglobs.obj `if test -f 'cliglobs.c'; then $(CYGPATH_W) 'cliglobs.c'; else $(CYGPATH_W) '$(srcdir)/cliglobs.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-cliglobs.Tpo" "$(DEPDIR)/lcsvga-cliglobs.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcsvga-cliglobs.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-cliglobs.Po' tmpdepfile='$(DEPDIR)/lcsvga-cliglobs.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-cliglobs.obj `if test -f 'cliglobs.c'; then $(CYGPATH_W) 'cliglobs.c'; else $(CYGPATH_W) '$(srcdir)/cliglobs.c'; fi` lcsvga-cliglobs.lo: cliglobs.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-cliglobs.lo -MD -MP -MF "$(DEPDIR)/lcsvga-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-cliglobs.lo `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-cliglobs.Tpo" "$(DEPDIR)/lcsvga-cliglobs.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcsvga-cliglobs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-cliglobs.Plo' tmpdepfile='$(DEPDIR)/lcsvga-cliglobs.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-cliglobs.lo `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c lcsvga-geometry.o: geometry.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-geometry.o -MD -MP -MF "$(DEPDIR)/lcsvga-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-geometry.o `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-geometry.Tpo" "$(DEPDIR)/lcsvga-geometry.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcsvga-geometry.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-geometry.Po' tmpdepfile='$(DEPDIR)/lcsvga-geometry.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-geometry.o `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c lcsvga-geometry.obj: geometry.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-geometry.obj -MD -MP -MF "$(DEPDIR)/lcsvga-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-geometry.obj `if test -f 'geometry.c'; then $(CYGPATH_W) 'geometry.c'; else $(CYGPATH_W) '$(srcdir)/geometry.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-geometry.Tpo" "$(DEPDIR)/lcsvga-geometry.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcsvga-geometry.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-geometry.Po' tmpdepfile='$(DEPDIR)/lcsvga-geometry.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-geometry.obj `if test -f 'geometry.c'; then $(CYGPATH_W) 'geometry.c'; else $(CYGPATH_W) '$(srcdir)/geometry.c'; fi` lcsvga-geometry.lo: geometry.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-geometry.lo -MD -MP -MF "$(DEPDIR)/lcsvga-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-geometry.lo `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-geometry.Tpo" "$(DEPDIR)/lcsvga-geometry.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcsvga-geometry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-geometry.Plo' tmpdepfile='$(DEPDIR)/lcsvga-geometry.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-geometry.lo `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c lcsvga-pbar.o: pbar.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pbar.o -MD -MP -MF "$(DEPDIR)/lcsvga-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pbar.o `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pbar.Tpo" "$(DEPDIR)/lcsvga-pbar.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcsvga-pbar.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pbar.Po' tmpdepfile='$(DEPDIR)/lcsvga-pbar.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pbar.o `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c lcsvga-pbar.obj: pbar.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pbar.obj -MD -MP -MF "$(DEPDIR)/lcsvga-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pbar.obj `if test -f 'pbar.c'; then $(CYGPATH_W) 'pbar.c'; else $(CYGPATH_W) '$(srcdir)/pbar.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pbar.Tpo" "$(DEPDIR)/lcsvga-pbar.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcsvga-pbar.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pbar.Po' tmpdepfile='$(DEPDIR)/lcsvga-pbar.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pbar.obj `if test -f 'pbar.c'; then $(CYGPATH_W) 'pbar.c'; else $(CYGPATH_W) '$(srcdir)/pbar.c'; fi` lcsvga-pbar.lo: pbar.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-pbar.lo -MD -MP -MF "$(DEPDIR)/lcsvga-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-pbar.lo `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-pbar.Tpo" "$(DEPDIR)/lcsvga-pbar.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcsvga-pbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-pbar.Plo' tmpdepfile='$(DEPDIR)/lcsvga-pbar.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-pbar.lo `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c lcsvga-module_buttons.o: module_buttons.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-module_buttons.o -MD -MP -MF "$(DEPDIR)/lcsvga-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-module_buttons.o `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-module_buttons.Tpo" "$(DEPDIR)/lcsvga-module_buttons.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcsvga-module_buttons.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-module_buttons.Po' tmpdepfile='$(DEPDIR)/lcsvga-module_buttons.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-module_buttons.o `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c lcsvga-module_buttons.obj: module_buttons.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-module_buttons.obj -MD -MP -MF "$(DEPDIR)/lcsvga-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-module_buttons.obj `if test -f 'module_buttons.c'; then $(CYGPATH_W) 'module_buttons.c'; else $(CYGPATH_W) '$(srcdir)/module_buttons.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-module_buttons.Tpo" "$(DEPDIR)/lcsvga-module_buttons.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcsvga-module_buttons.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-module_buttons.Po' tmpdepfile='$(DEPDIR)/lcsvga-module_buttons.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-module_buttons.obj `if test -f 'module_buttons.c'; then $(CYGPATH_W) 'module_buttons.c'; else $(CYGPATH_W) '$(srcdir)/module_buttons.c'; fi` lcsvga-module_buttons.lo: module_buttons.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-module_buttons.lo -MD -MP -MF "$(DEPDIR)/lcsvga-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-module_buttons.lo `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-module_buttons.Tpo" "$(DEPDIR)/lcsvga-module_buttons.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcsvga-module_buttons.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-module_buttons.Plo' tmpdepfile='$(DEPDIR)/lcsvga-module_buttons.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-module_buttons.lo `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c lcsvga-dialbox.o: dialbox.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-dialbox.o -MD -MP -MF "$(DEPDIR)/lcsvga-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-dialbox.o `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-dialbox.Tpo" "$(DEPDIR)/lcsvga-dialbox.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcsvga-dialbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-dialbox.Po' tmpdepfile='$(DEPDIR)/lcsvga-dialbox.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-dialbox.o `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c lcsvga-dialbox.obj: dialbox.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-dialbox.obj -MD -MP -MF "$(DEPDIR)/lcsvga-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-dialbox.obj `if test -f 'dialbox.c'; then $(CYGPATH_W) 'dialbox.c'; else $(CYGPATH_W) '$(srcdir)/dialbox.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-dialbox.Tpo" "$(DEPDIR)/lcsvga-dialbox.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcsvga-dialbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-dialbox.Po' tmpdepfile='$(DEPDIR)/lcsvga-dialbox.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-dialbox.obj `if test -f 'dialbox.c'; then $(CYGPATH_W) 'dialbox.c'; else $(CYGPATH_W) '$(srcdir)/dialbox.c'; fi` lcsvga-dialbox.lo: dialbox.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-dialbox.lo -MD -MP -MF "$(DEPDIR)/lcsvga-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-dialbox.lo `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-dialbox.Tpo" "$(DEPDIR)/lcsvga-dialbox.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcsvga-dialbox.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-dialbox.Plo' tmpdepfile='$(DEPDIR)/lcsvga-dialbox.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-dialbox.lo `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c lcsvga-lcsvga.o: lcsvga.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lcsvga.o -MD -MP -MF "$(DEPDIR)/lcsvga-lcsvga.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lcsvga.o `test -f 'lcsvga.c' || echo '$(srcdir)/'`lcsvga.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lcsvga.Tpo" "$(DEPDIR)/lcsvga-lcsvga.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lcsvga.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcsvga.c' object='lcsvga-lcsvga.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lcsvga.Po' tmpdepfile='$(DEPDIR)/lcsvga-lcsvga.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lcsvga.o `test -f 'lcsvga.c' || echo '$(srcdir)/'`lcsvga.c lcsvga-lcsvga.obj: lcsvga.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lcsvga.obj -MD -MP -MF "$(DEPDIR)/lcsvga-lcsvga.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lcsvga.obj `if test -f 'lcsvga.c'; then $(CYGPATH_W) 'lcsvga.c'; else $(CYGPATH_W) '$(srcdir)/lcsvga.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lcsvga.Tpo" "$(DEPDIR)/lcsvga-lcsvga.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lcsvga.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcsvga.c' object='lcsvga-lcsvga.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lcsvga.Po' tmpdepfile='$(DEPDIR)/lcsvga-lcsvga.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lcsvga.obj `if test -f 'lcsvga.c'; then $(CYGPATH_W) 'lcsvga.c'; else $(CYGPATH_W) '$(srcdir)/lcsvga.c'; fi` lcsvga-lcsvga.lo: lcsvga.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcsvga-lcsvga.lo -MD -MP -MF "$(DEPDIR)/lcsvga-lcsvga.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcsvga-lcsvga.lo `test -f 'lcsvga.c' || echo '$(srcdir)/'`lcsvga.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcsvga-lcsvga.Tpo" "$(DEPDIR)/lcsvga-lcsvga.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcsvga-lcsvga.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcsvga.c' object='lcsvga-lcsvga.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcsvga-lcsvga.Plo' tmpdepfile='$(DEPDIR)/lcsvga-lcsvga.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcsvga_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcsvga-lcsvga.lo `test -f 'lcsvga.c' || echo '$(srcdir)/'`lcsvga.c lcx-ldsvgui.o: ldsvgui.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-ldsvgui.o -MD -MP -MF "$(DEPDIR)/lcx-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-ldsvgui.o `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-ldsvgui.Tpo" "$(DEPDIR)/lcx-ldsvgui.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcx-ldsvgui.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-ldsvgui.Po' tmpdepfile='$(DEPDIR)/lcx-ldsvgui.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-ldsvgui.o `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c lcx-ldsvgui.obj: ldsvgui.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-ldsvgui.obj -MD -MP -MF "$(DEPDIR)/lcx-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-ldsvgui.obj `if test -f 'ldsvgui.c'; then $(CYGPATH_W) 'ldsvgui.c'; else $(CYGPATH_W) '$(srcdir)/ldsvgui.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-ldsvgui.Tpo" "$(DEPDIR)/lcx-ldsvgui.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcx-ldsvgui.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-ldsvgui.Po' tmpdepfile='$(DEPDIR)/lcx-ldsvgui.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-ldsvgui.obj `if test -f 'ldsvgui.c'; then $(CYGPATH_W) 'ldsvgui.c'; else $(CYGPATH_W) '$(srcdir)/ldsvgui.c'; fi` lcx-ldsvgui.lo: ldsvgui.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-ldsvgui.lo -MD -MP -MF "$(DEPDIR)/lcx-ldsvgui.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-ldsvgui.lo `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-ldsvgui.Tpo" "$(DEPDIR)/lcx-ldsvgui.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-ldsvgui.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldsvgui.c' object='lcx-ldsvgui.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-ldsvgui.Plo' tmpdepfile='$(DEPDIR)/lcx-ldsvgui.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-ldsvgui.lo `test -f 'ldsvgui.c' || echo '$(srcdir)/'`ldsvgui.c lcx-splash.o: splash.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-splash.o -MD -MP -MF "$(DEPDIR)/lcx-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-splash.o `test -f 'splash.c' || echo '$(srcdir)/'`splash.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-splash.Tpo" "$(DEPDIR)/lcx-splash.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcx-splash.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-splash.Po' tmpdepfile='$(DEPDIR)/lcx-splash.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-splash.o `test -f 'splash.c' || echo '$(srcdir)/'`splash.c lcx-splash.obj: splash.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-splash.obj -MD -MP -MF "$(DEPDIR)/lcx-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-splash.obj `if test -f 'splash.c'; then $(CYGPATH_W) 'splash.c'; else $(CYGPATH_W) '$(srcdir)/splash.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-splash.Tpo" "$(DEPDIR)/lcx-splash.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcx-splash.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-splash.Po' tmpdepfile='$(DEPDIR)/lcx-splash.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-splash.obj `if test -f 'splash.c'; then $(CYGPATH_W) 'splash.c'; else $(CYGPATH_W) '$(srcdir)/splash.c'; fi` lcx-splash.lo: splash.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-splash.lo -MD -MP -MF "$(DEPDIR)/lcx-splash.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-splash.lo `test -f 'splash.c' || echo '$(srcdir)/'`splash.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-splash.Tpo" "$(DEPDIR)/lcx-splash.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-splash.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='splash.c' object='lcx-splash.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-splash.Plo' tmpdepfile='$(DEPDIR)/lcx-splash.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-splash.lo `test -f 'splash.c' || echo '$(srcdir)/'`splash.c lcx-lchelp.o: lchelp.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lchelp.o -MD -MP -MF "$(DEPDIR)/lcx-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lchelp.o `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lchelp.Tpo" "$(DEPDIR)/lcx-lchelp.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcx-lchelp.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lchelp.Po' tmpdepfile='$(DEPDIR)/lcx-lchelp.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lchelp.o `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c lcx-lchelp.obj: lchelp.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lchelp.obj -MD -MP -MF "$(DEPDIR)/lcx-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lchelp.obj `if test -f 'lchelp.c'; then $(CYGPATH_W) 'lchelp.c'; else $(CYGPATH_W) '$(srcdir)/lchelp.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lchelp.Tpo" "$(DEPDIR)/lcx-lchelp.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcx-lchelp.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lchelp.Po' tmpdepfile='$(DEPDIR)/lcx-lchelp.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lchelp.obj `if test -f 'lchelp.c'; then $(CYGPATH_W) 'lchelp.c'; else $(CYGPATH_W) '$(srcdir)/lchelp.c'; fi` lcx-lchelp.lo: lchelp.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lchelp.lo -MD -MP -MF "$(DEPDIR)/lcx-lchelp.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lchelp.lo `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lchelp.Tpo" "$(DEPDIR)/lcx-lchelp.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lchelp.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lchelp.c' object='lcx-lchelp.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lchelp.Plo' tmpdepfile='$(DEPDIR)/lcx-lchelp.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lchelp.lo `test -f 'lchelp.c' || echo '$(srcdir)/'`lchelp.c lcx-main.o: main.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-main.o -MD -MP -MF "$(DEPDIR)/lcx-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-main.Tpo" "$(DEPDIR)/lcx-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcx-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-main.Po' tmpdepfile='$(DEPDIR)/lcx-main.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c lcx-main.obj: main.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-main.obj -MD -MP -MF "$(DEPDIR)/lcx-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-main.Tpo" "$(DEPDIR)/lcx-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcx-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-main.Po' tmpdepfile='$(DEPDIR)/lcx-main.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` lcx-main.lo: main.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-main.lo -MD -MP -MF "$(DEPDIR)/lcx-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-main.Tpo" "$(DEPDIR)/lcx-main.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='lcx-main.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-main.Plo' tmpdepfile='$(DEPDIR)/lcx-main.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c lcx-mouse.o: mouse.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mouse.o -MD -MP -MF "$(DEPDIR)/lcx-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mouse.Tpo" "$(DEPDIR)/lcx-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcx-mouse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mouse.Po' tmpdepfile='$(DEPDIR)/lcx-mouse.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c lcx-mouse.obj: mouse.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mouse.obj -MD -MP -MF "$(DEPDIR)/lcx-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mouse.Tpo" "$(DEPDIR)/lcx-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcx-mouse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mouse.Po' tmpdepfile='$(DEPDIR)/lcx-mouse.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi` lcx-mouse.lo: mouse.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mouse.lo -MD -MP -MF "$(DEPDIR)/lcx-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mouse.lo `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mouse.Tpo" "$(DEPDIR)/lcx-mouse.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mouse.c' object='lcx-mouse.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mouse.Plo' tmpdepfile='$(DEPDIR)/lcx-mouse.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mouse.lo `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c lcx-mps.o: mps.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mps.o -MD -MP -MF "$(DEPDIR)/lcx-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mps.o `test -f 'mps.c' || echo '$(srcdir)/'`mps.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mps.Tpo" "$(DEPDIR)/lcx-mps.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcx-mps.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mps.Po' tmpdepfile='$(DEPDIR)/lcx-mps.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mps.o `test -f 'mps.c' || echo '$(srcdir)/'`mps.c lcx-mps.obj: mps.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mps.obj -MD -MP -MF "$(DEPDIR)/lcx-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mps.obj `if test -f 'mps.c'; then $(CYGPATH_W) 'mps.c'; else $(CYGPATH_W) '$(srcdir)/mps.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mps.Tpo" "$(DEPDIR)/lcx-mps.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcx-mps.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mps.Po' tmpdepfile='$(DEPDIR)/lcx-mps.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mps.obj `if test -f 'mps.c'; then $(CYGPATH_W) 'mps.c'; else $(CYGPATH_W) '$(srcdir)/mps.c'; fi` lcx-mps.lo: mps.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-mps.lo -MD -MP -MF "$(DEPDIR)/lcx-mps.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-mps.lo `test -f 'mps.c' || echo '$(srcdir)/'`mps.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-mps.Tpo" "$(DEPDIR)/lcx-mps.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-mps.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mps.c' object='lcx-mps.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-mps.Plo' tmpdepfile='$(DEPDIR)/lcx-mps.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-mps.lo `test -f 'mps.c' || echo '$(srcdir)/'`mps.c lcx-screen.o: screen.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-screen.o -MD -MP -MF "$(DEPDIR)/lcx-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-screen.o `test -f 'screen.c' || echo '$(srcdir)/'`screen.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-screen.Tpo" "$(DEPDIR)/lcx-screen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcx-screen.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-screen.Po' tmpdepfile='$(DEPDIR)/lcx-screen.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-screen.o `test -f 'screen.c' || echo '$(srcdir)/'`screen.c lcx-screen.obj: screen.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-screen.obj -MD -MP -MF "$(DEPDIR)/lcx-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-screen.obj `if test -f 'screen.c'; then $(CYGPATH_W) 'screen.c'; else $(CYGPATH_W) '$(srcdir)/screen.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-screen.Tpo" "$(DEPDIR)/lcx-screen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcx-screen.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-screen.Po' tmpdepfile='$(DEPDIR)/lcx-screen.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-screen.obj `if test -f 'screen.c'; then $(CYGPATH_W) 'screen.c'; else $(CYGPATH_W) '$(srcdir)/screen.c'; fi` lcx-screen.lo: screen.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-screen.lo -MD -MP -MF "$(DEPDIR)/lcx-screen.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-screen.lo `test -f 'screen.c' || echo '$(srcdir)/'`screen.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-screen.Tpo" "$(DEPDIR)/lcx-screen.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-screen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='screen.c' object='lcx-screen.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-screen.Plo' tmpdepfile='$(DEPDIR)/lcx-screen.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-screen.lo `test -f 'screen.c' || echo '$(srcdir)/'`screen.c lcx-pixmap.o: pixmap.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pixmap.o -MD -MP -MF "$(DEPDIR)/lcx-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pixmap.o `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pixmap.Tpo" "$(DEPDIR)/lcx-pixmap.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcx-pixmap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pixmap.Po' tmpdepfile='$(DEPDIR)/lcx-pixmap.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pixmap.o `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c lcx-pixmap.obj: pixmap.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pixmap.obj -MD -MP -MF "$(DEPDIR)/lcx-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pixmap.obj `if test -f 'pixmap.c'; then $(CYGPATH_W) 'pixmap.c'; else $(CYGPATH_W) '$(srcdir)/pixmap.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pixmap.Tpo" "$(DEPDIR)/lcx-pixmap.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcx-pixmap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pixmap.Po' tmpdepfile='$(DEPDIR)/lcx-pixmap.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pixmap.obj `if test -f 'pixmap.c'; then $(CYGPATH_W) 'pixmap.c'; else $(CYGPATH_W) '$(srcdir)/pixmap.c'; fi` lcx-pixmap.lo: pixmap.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pixmap.lo -MD -MP -MF "$(DEPDIR)/lcx-pixmap.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pixmap.lo `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pixmap.Tpo" "$(DEPDIR)/lcx-pixmap.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pixmap.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pixmap.c' object='lcx-pixmap.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pixmap.Plo' tmpdepfile='$(DEPDIR)/lcx-pixmap.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pixmap.lo `test -f 'pixmap.c' || echo '$(srcdir)/'`pixmap.c lcx-cliglobs.o: cliglobs.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-cliglobs.o -MD -MP -MF "$(DEPDIR)/lcx-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-cliglobs.o `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-cliglobs.Tpo" "$(DEPDIR)/lcx-cliglobs.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcx-cliglobs.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-cliglobs.Po' tmpdepfile='$(DEPDIR)/lcx-cliglobs.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-cliglobs.o `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c lcx-cliglobs.obj: cliglobs.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-cliglobs.obj -MD -MP -MF "$(DEPDIR)/lcx-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-cliglobs.obj `if test -f 'cliglobs.c'; then $(CYGPATH_W) 'cliglobs.c'; else $(CYGPATH_W) '$(srcdir)/cliglobs.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-cliglobs.Tpo" "$(DEPDIR)/lcx-cliglobs.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcx-cliglobs.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-cliglobs.Po' tmpdepfile='$(DEPDIR)/lcx-cliglobs.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-cliglobs.obj `if test -f 'cliglobs.c'; then $(CYGPATH_W) 'cliglobs.c'; else $(CYGPATH_W) '$(srcdir)/cliglobs.c'; fi` lcx-cliglobs.lo: cliglobs.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-cliglobs.lo -MD -MP -MF "$(DEPDIR)/lcx-cliglobs.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-cliglobs.lo `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-cliglobs.Tpo" "$(DEPDIR)/lcx-cliglobs.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-cliglobs.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cliglobs.c' object='lcx-cliglobs.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-cliglobs.Plo' tmpdepfile='$(DEPDIR)/lcx-cliglobs.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-cliglobs.lo `test -f 'cliglobs.c' || echo '$(srcdir)/'`cliglobs.c lcx-geometry.o: geometry.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-geometry.o -MD -MP -MF "$(DEPDIR)/lcx-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-geometry.o `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-geometry.Tpo" "$(DEPDIR)/lcx-geometry.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcx-geometry.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-geometry.Po' tmpdepfile='$(DEPDIR)/lcx-geometry.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-geometry.o `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c lcx-geometry.obj: geometry.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-geometry.obj -MD -MP -MF "$(DEPDIR)/lcx-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-geometry.obj `if test -f 'geometry.c'; then $(CYGPATH_W) 'geometry.c'; else $(CYGPATH_W) '$(srcdir)/geometry.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-geometry.Tpo" "$(DEPDIR)/lcx-geometry.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcx-geometry.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-geometry.Po' tmpdepfile='$(DEPDIR)/lcx-geometry.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-geometry.obj `if test -f 'geometry.c'; then $(CYGPATH_W) 'geometry.c'; else $(CYGPATH_W) '$(srcdir)/geometry.c'; fi` lcx-geometry.lo: geometry.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-geometry.lo -MD -MP -MF "$(DEPDIR)/lcx-geometry.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-geometry.lo `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-geometry.Tpo" "$(DEPDIR)/lcx-geometry.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-geometry.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='geometry.c' object='lcx-geometry.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-geometry.Plo' tmpdepfile='$(DEPDIR)/lcx-geometry.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-geometry.lo `test -f 'geometry.c' || echo '$(srcdir)/'`geometry.c lcx-pbar.o: pbar.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pbar.o -MD -MP -MF "$(DEPDIR)/lcx-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pbar.o `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pbar.Tpo" "$(DEPDIR)/lcx-pbar.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcx-pbar.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pbar.Po' tmpdepfile='$(DEPDIR)/lcx-pbar.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pbar.o `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c lcx-pbar.obj: pbar.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pbar.obj -MD -MP -MF "$(DEPDIR)/lcx-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pbar.obj `if test -f 'pbar.c'; then $(CYGPATH_W) 'pbar.c'; else $(CYGPATH_W) '$(srcdir)/pbar.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pbar.Tpo" "$(DEPDIR)/lcx-pbar.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcx-pbar.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pbar.Po' tmpdepfile='$(DEPDIR)/lcx-pbar.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pbar.obj `if test -f 'pbar.c'; then $(CYGPATH_W) 'pbar.c'; else $(CYGPATH_W) '$(srcdir)/pbar.c'; fi` lcx-pbar.lo: pbar.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-pbar.lo -MD -MP -MF "$(DEPDIR)/lcx-pbar.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-pbar.lo `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-pbar.Tpo" "$(DEPDIR)/lcx-pbar.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-pbar.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pbar.c' object='lcx-pbar.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-pbar.Plo' tmpdepfile='$(DEPDIR)/lcx-pbar.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-pbar.lo `test -f 'pbar.c' || echo '$(srcdir)/'`pbar.c lcx-module_buttons.o: module_buttons.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-module_buttons.o -MD -MP -MF "$(DEPDIR)/lcx-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-module_buttons.o `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-module_buttons.Tpo" "$(DEPDIR)/lcx-module_buttons.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcx-module_buttons.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-module_buttons.Po' tmpdepfile='$(DEPDIR)/lcx-module_buttons.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-module_buttons.o `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c lcx-module_buttons.obj: module_buttons.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-module_buttons.obj -MD -MP -MF "$(DEPDIR)/lcx-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-module_buttons.obj `if test -f 'module_buttons.c'; then $(CYGPATH_W) 'module_buttons.c'; else $(CYGPATH_W) '$(srcdir)/module_buttons.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-module_buttons.Tpo" "$(DEPDIR)/lcx-module_buttons.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcx-module_buttons.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-module_buttons.Po' tmpdepfile='$(DEPDIR)/lcx-module_buttons.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-module_buttons.obj `if test -f 'module_buttons.c'; then $(CYGPATH_W) 'module_buttons.c'; else $(CYGPATH_W) '$(srcdir)/module_buttons.c'; fi` lcx-module_buttons.lo: module_buttons.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-module_buttons.lo -MD -MP -MF "$(DEPDIR)/lcx-module_buttons.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-module_buttons.lo `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-module_buttons.Tpo" "$(DEPDIR)/lcx-module_buttons.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-module_buttons.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='module_buttons.c' object='lcx-module_buttons.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-module_buttons.Plo' tmpdepfile='$(DEPDIR)/lcx-module_buttons.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-module_buttons.lo `test -f 'module_buttons.c' || echo '$(srcdir)/'`module_buttons.c lcx-dialbox.o: dialbox.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-dialbox.o -MD -MP -MF "$(DEPDIR)/lcx-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-dialbox.o `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-dialbox.Tpo" "$(DEPDIR)/lcx-dialbox.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcx-dialbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-dialbox.Po' tmpdepfile='$(DEPDIR)/lcx-dialbox.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-dialbox.o `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c lcx-dialbox.obj: dialbox.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-dialbox.obj -MD -MP -MF "$(DEPDIR)/lcx-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-dialbox.obj `if test -f 'dialbox.c'; then $(CYGPATH_W) 'dialbox.c'; else $(CYGPATH_W) '$(srcdir)/dialbox.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-dialbox.Tpo" "$(DEPDIR)/lcx-dialbox.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcx-dialbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-dialbox.Po' tmpdepfile='$(DEPDIR)/lcx-dialbox.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-dialbox.obj `if test -f 'dialbox.c'; then $(CYGPATH_W) 'dialbox.c'; else $(CYGPATH_W) '$(srcdir)/dialbox.c'; fi` lcx-dialbox.lo: dialbox.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-dialbox.lo -MD -MP -MF "$(DEPDIR)/lcx-dialbox.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-dialbox.lo `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-dialbox.Tpo" "$(DEPDIR)/lcx-dialbox.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-dialbox.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dialbox.c' object='lcx-dialbox.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-dialbox.Plo' tmpdepfile='$(DEPDIR)/lcx-dialbox.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-dialbox.lo `test -f 'dialbox.c' || echo '$(srcdir)/'`dialbox.c lcx-lcx11.o: lcx11.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lcx11.o -MD -MP -MF "$(DEPDIR)/lcx-lcx11.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lcx11.o `test -f 'lcx11.c' || echo '$(srcdir)/'`lcx11.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lcx11.Tpo" "$(DEPDIR)/lcx-lcx11.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lcx11.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcx11.c' object='lcx-lcx11.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lcx11.Po' tmpdepfile='$(DEPDIR)/lcx-lcx11.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lcx11.o `test -f 'lcx11.c' || echo '$(srcdir)/'`lcx11.c lcx-lcx11.obj: lcx11.c @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lcx11.obj -MD -MP -MF "$(DEPDIR)/lcx-lcx11.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lcx11.obj `if test -f 'lcx11.c'; then $(CYGPATH_W) 'lcx11.c'; else $(CYGPATH_W) '$(srcdir)/lcx11.c'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lcx11.Tpo" "$(DEPDIR)/lcx-lcx11.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lcx11.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcx11.c' object='lcx-lcx11.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lcx11.Po' tmpdepfile='$(DEPDIR)/lcx-lcx11.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lcx11.obj `if test -f 'lcx11.c'; then $(CYGPATH_W) 'lcx11.c'; else $(CYGPATH_W) '$(srcdir)/lcx11.c'; fi` lcx-lcx11.lo: lcx11.c @am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lcx-lcx11.lo -MD -MP -MF "$(DEPDIR)/lcx-lcx11.Tpo" \ @am__fastdepCC_TRUE@ -c -o lcx-lcx11.lo `test -f 'lcx11.c' || echo '$(srcdir)/'`lcx11.c; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lcx-lcx11.Tpo" "$(DEPDIR)/lcx-lcx11.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/lcx-lcx11.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lcx11.c' object='lcx-lcx11.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/lcx-lcx11.Plo' tmpdepfile='$(DEPDIR)/lcx-lcx11.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblcx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lcx-lcx11.lo `test -f 'lcx11.c' || echo '$(srcdir)/'`lcx11.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: man6dir = $(mandir)/man6 install-man6: $(man6_MANS) $(man_MANS) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(man6dir) @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ case "$$i" in \ *.6*) 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/^.*\\.//'`; \ case "$$ext" in \ 6*) ;; \ *) ext='6' ;; \ esac; \ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst"; \ $(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst; \ done uninstall-man6: @$(NORMAL_UNINSTALL) @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ case "$$i" in \ *.6*) list="$$list $$i" ;; \ esac; \ done; \ for i in $$list; do \ ext=`echo $$i | sed -e 's/^.*\\.//'`; \ case "$$ext" in \ 6*) ;; \ *) ext='6' ;; \ esac; \ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ echo " rm -f $(DESTDIR)$(man6dir)/$$inst"; \ rm -f $(DESTDIR)$(man6dir)/$$inst; \ done nobase_pkgdataDATA_INSTALL = $(install_sh_DATA) install-nobase_pkgdataDATA: $(nobase_pkgdata_DATA) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) @list='$(nobase_pkgdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f="$$p"; \ echo " $(nobase_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f"; \ $(nobase_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f; \ done uninstall-nobase_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(nobase_pkgdata_DATA)'; for p in $$list; do \ f="$$p"; \ echo " rm -f $(DESTDIR)$(pkgdatadir)/$$f"; \ rm -f $(DESTDIR)$(pkgdatadir)/$$f; \ 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. $(RECURSIVE_TARGETS): @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; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ 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 ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ETAGS = etags ETAGSFLAGS = CTAGS = ctags CTAGSFLAGS = tags: TAGS ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ if (etags --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ else \ include_option=--include; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -f $$subdir/TAGS && \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(ETAGS_ARGS)$$tags$$unique" \ || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) top_distdir = . distdir = $(PACKAGE)-$(VERSION) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) $(mkinstalldirs) $(distdir)/intl $(distdir)/po @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkinstalldirs) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d $(distdir)/$$subdir \ || mkdir $(distdir)/$$subdir \ || exit 1; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" \ distdir=../$(distdir)/$$subdir \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist dist-all: distdir $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_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 $(am__remove_distdir) GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ --with-included-gettext \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && $(mkinstalldirs) "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \ && rm -f $(distdir).tar.gz \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) @echo "$(distdir).tar.gz is ready for distribution" | \ sed 'h;s/./=/g;p;x;p;x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(MANS) $(DATA) $(HEADERS) \ config.h install-binPROGRAMS: install-libLTLIBRARIES installdirs: installdirs-recursive installdirs-am: $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(man6dir) $(DESTDIR)$(pkgdatadir) install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: info: info-recursive info-am: install-data-am: install-man install-nobase_pkgdataDATA install-exec-am: install-binPROGRAMS install-exec-local \ install-libLTLIBRARIES install-info: install-info-recursive install-man: install-man6 installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-info-am \ uninstall-libLTLIBRARIES uninstall-local uninstall-man \ uninstall-nobase_pkgdataDATA uninstall-info: uninstall-info-recursive uninstall-man: uninstall-man6 .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool clean-recursive ctags ctags-recursive dist \ dist-all dist-gzip distcheck distclean distclean-compile \ distclean-generic distclean-hdr distclean-libtool \ distclean-recursive distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am dvi-recursive info info-am \ info-recursive install install-am install-binPROGRAMS \ install-data install-data-am install-data-recursive \ install-exec install-exec-am install-exec-local \ install-exec-recursive install-info install-info-am \ install-info-recursive install-libLTLIBRARIES install-man \ install-man6 install-nobase_pkgdataDATA install-recursive \ install-strip installcheck installcheck-am installdirs \ installdirs-am installdirs-recursive maintainer-clean \ maintainer-clean-generic maintainer-clean-recursive mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ ps-recursive tags tags-recursive uninstall uninstall-am \ uninstall-binPROGRAMS uninstall-info-am \ uninstall-info-recursive uninstall-libLTLIBRARIES \ uninstall-local uninstall-man uninstall-man6 \ uninstall-nobase_pkgdataDATA uninstall-recursive ############################################################################ ############################################################################ ############################################################################ ########### GCS Jan 19, 2003 ############################################################################ ############################################################################ install-exec-local: @list='$(EXTRA_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ echo " $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done; \ if test -f $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; then \ chown root $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ chmod 4755 $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ fi uninstall-local: list='$(EXTRA_PROGRAMS)'; for p in $$list; do \ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ done rm -rf $(DESTDIR)$(pkgdatadir) ############################################################################ # if test -d $(distdir)/$$p/CVS ; then \ # echo "rm -rf $(distdir)/$$p/CVS" ; \ # rm -rf $(distdir)/$$p/CVS ; \ # echo "rm -rf $(distdir)/$$p/*/CVS" ; \ # rm -rf $(distdir)/$$p/*/CVS ; \ # echo "rm -rf $(distdir)/$$p/*/*/CVS" ; \ # rm -rf $(distdir)/$$p/*/*/CVS ; \ # echo "rm -rf $(distdir)/$$p/cvs" ; \ # rm -rf $(distdir)/$$p/cvs ; \ # echo "rm -rf $(distdir)/$$p/*/cvs" ; \ # rm -rf $(distdir)/$$p/*/cvs ; \ # echo "rm -rf $(distdir)/$$p/*/*/cvs" ; \ # rm -rf $(distdir)/$$p/*/*/cvs ; \ # else :; fi; \ ############################################################################ dist-hook: @list='$(LC_DISTDIRS)'; for p in $$list; do \ rm -rf `find $(distdir)/$$p -name CVS -print` ; \ rm -rf `find $(distdir)/$$p -name cvs -print` ; \ rm -rf `find $(distdir)/$$p -name ca -print` ; \ done X_PROGS: xlincity$(EXEEXT) SVGA_PROGS: lincity$(EXEEXT) LCSERVER_PROGS: lcserver$(EXEEXT) LCX_LIBS: liblcx.la LCSVGA_LIBS: liblcsvga.la x_picedit.o: picedit.c $(COMPILE) $(X_DEFS) -o x_picedit.o -c picedit.c vga_picedit.o: picedit.c $(COMPILE) $(X_DEFS) -o vga_picedit.o -c picedit.c # 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: lincity-1.13.1/configure0000744000175000017500000337071010067655666012132 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for Lincity 1.13.1. # # Report bugs to . # # 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 # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null && echo_test_string="`eval $cmd`" && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 # 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='Lincity' PACKAGE_TARNAME='lincity' PACKAGE_VERSION='1.13.1' PACKAGE_STRING='Lincity 1.13.1' PACKAGE_BUGREPORT='lincity-users@lists.sourceforge.net' ac_unique_file="colour.pal" # Factoring default headers for most tests. ac_includes_default="\ #include #if HAVE_SYS_TYPES_H # include #endif #if HAVE_SYS_STAT_H # include #endif #if STDC_HEADERS # include # include #else # if HAVE_STDLIB_H # include # endif #endif #if HAVE_STRING_H # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif #if HAVE_STRINGS_H # include #endif #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #if HAVE_UNISTD_H # include #endif" 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 CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP build build_cpu build_vendor build_os host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL with_gzip X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS LCLIBS PROGS MKINSTALLDIRS MSGFMT GMSGFMT XGETTEXT MSGMERGE ALLOCA GLIBC21 LIBICONV LTLIBICONV INTLBISON USE_NLS BUILD_INCLUDED_LIBINTL USE_INCLUDED_LIBINTL CATOBJEXT INTLOBJS DATADIRNAME INSTOBJEXT GENCAT INTL_LIBTOOL_SUFFIX_PREFIX INTLLIBS LIBINTL LTLIBINTL POSUB 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 ac_env_CPP_set=${CPP+set} ac_env_CPP_value=$CPP ac_cv_env_CPP_set=${CPP+set} ac_cv_env_CPP_value=$CPP ac_env_CXX_set=${CXX+set} ac_env_CXX_value=$CXX ac_cv_env_CXX_set=${CXX+set} ac_cv_env_CXX_value=$CXX ac_env_CXXFLAGS_set=${CXXFLAGS+set} ac_env_CXXFLAGS_value=$CXXFLAGS ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set} ac_cv_env_CXXFLAGS_value=$CXXFLAGS ac_env_CXXCPP_set=${CXXCPP+set} ac_env_CXXCPP_value=$CXXCPP ac_cv_env_CXXCPP_set=${CXXCPP+set} ac_cv_env_CXXCPP_value=$CXXCPP ac_env_F77_set=${F77+set} ac_env_F77_value=$F77 ac_cv_env_F77_set=${F77+set} ac_cv_env_F77_value=$F77 ac_env_FFLAGS_set=${FFLAGS+set} ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS # # 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 Lincity 1.13.1 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 X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of Lincity 1.13.1:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking Speeds up one-time builds --enable-dependency-tracking Do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --disable-rpath do not hardcode runtime library paths --disable-nls do not use Native Language Support Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gzip use gzip --with-svga use svga library --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] --with-x use the X Window System --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix=DIR search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-included-gettext use the GNU gettext library included here --with-libintl-prefix=DIR search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _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 Lincity configure 1.13.1 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. _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 Lincity $as_me 1.13.1, 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.7" 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 > conftest.file # 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 conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $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" = conftest.file ) 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 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 # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi for ac_prog in gawk mawk nawk awk 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_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # 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_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$AWK" && break done 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 rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # test to see if srcdir already configured 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 # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='lincity' VERSION='1.13.1' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} AMTAR=${AMTAR-"${am_missing_run}tar"} install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # 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_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # 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_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Check whether --with-gzip or --without-gzip was given. if test "${with_gzip+set}" = set; then withval="$with_gzip" fi; # Check whether --with-svga or --without-svga was given. if test "${with_svga+set}" = set; then withval="$with_svga" fi; DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_am_result" >&6 rm -f confinc confmf # Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then enableval="$enable_dependency_tracking" fi; if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= 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 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &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 #include #include #include /* 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 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 depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c : > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # (even with -Werror). So we grep stderr for any message # that says an option was ignored. if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5 echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6 if test "${ac_cv_lib_cposix_strerror+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lcposix $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 strerror (); int main () { strerror (); ; 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_cposix_strerror=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_cposix_strerror=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_cposix_strerror" >&5 echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6 if test $ac_cv_lib_cposix_strerror = yes; then LIBS="$LIBS -lcposix" 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 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 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 #include #include #include /* 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 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 depcc="$CC" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c : > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # (even with -Werror). So we grep stderr for any message # that says an option was ignored. if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= 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 echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&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 echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 if test "${ac_cv_prog_egrep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi fi echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 EGREP=$ac_cv_prog_egrep echo "$as_me:$LINENO: checking for AIX" >&5 echo $ECHO_N "checking for AIX... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef _AIX yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define _ALL_SOURCE 1 _ACEOF else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* 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 # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then enableval="$enable_shared" p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi; # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then enableval="$enable_static" p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi; # Check whether --enable-fast-install or --disable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval="$enable_fast_install" p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi; # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_build_alias=$build_alias test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_host_alias=$host_alias test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6 if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && break cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done SED=$lt_cv_path_SED fi echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 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. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname 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 echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_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 `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/${ac_tool_prefix}nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac esac fi done IFS="$lt_save_ifs" test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix4* | aix5*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi4*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump'. lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | kfreebsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case "$host_cpu" in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object' else lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; sco3.2v5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext 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 case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 4821 "configure"' > conftest.$ac_ext 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 if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext 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 case "`/usr/bin/file conftest.o`" in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 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 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 lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext 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 fi echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; esac need_locks="$enable_libtool_lock" echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+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. */ #include #include #include #include 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_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdc=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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 : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+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. */ $ac_includes_default #include <$ac_header> _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 eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _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_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to lincity-users@lists.sourceforge.net ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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_CXX="$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 CXX=$ac_cv_prog_CXX if test -n "$CXX"; then echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in $CCC g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC 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_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CXX" && break done test -n "$ac_ct_CXX" || ac_ct_CXX="g++" CXX=$ac_ct_CXX fi # 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 &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 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_cxx_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_cxx_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_cxx_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="-g" echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cxx_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_cxx_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_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_cxx_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi 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 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_cxx_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_cxx_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 ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu depcc="$CXX" am_compiler_list= echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c : > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # (even with -Werror). So we grep stderr for any message # that says an option was ignored. if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran 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_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # 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_F77="$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 F77=$ac_cv_prog_F77 if test -n "$F77"; then echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 f77 xlf frt pgf77 fort77 fl32 af77 f90 xlf90 pgf90 epcf90 f95 fort xlf95 ifc efc pgf95 lf95 gfortran 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_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # 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_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_F77" && break done F77=$ac_ct_F77 fi # Provide some information about the compiler. echo "$as_me:6143:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6 if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _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_f77_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_f77_compiler_gnu=$ac_compiler_gnu fi echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6 ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _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_f77_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_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6 if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` 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 # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while (test "X"`$CONFIG_SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform the above into a raw symbol and a C symbol. symxfrm='\1 \2\3 \3' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris* | sysv5*) symcode='[BDRT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" 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); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6 else echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6 fi echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except M$VC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; 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_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # 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_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; 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_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # 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_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false" fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi AR=$ac_ct_AR else AR="$ac_cv_prog_AR" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; 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_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # 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_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; 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_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # 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_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi RANLIB=$ac_ct_RANLIB else RANLIB="$ac_cv_prog_RANLIB" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # 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_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; 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_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # 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_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ;; *) old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi else MAGIC_CMD=: fi fi fi ;; esac enable_dlopen=no enable_win32_dll=no # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval="$enable_libtool_lock" fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic or --without-pic was given. if test "${with_pic+set}" = set; then withval="$with_pic" pic_mode="$withval" else pic_mode=default fi; test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" 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 # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # # Check for any special shared library compilation flags. # lt_prog_cc_shlib= if test "$GCC" = no; then case $host_os in sco3.2v5*) lt_prog_cc_shlib='-belf' ;; esac fi if test -n "$lt_prog_cc_shlib"; then { echo "$as_me:$LINENO: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&5 echo "$as_me: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&2;} if echo "$old_CC $old_CFLAGS " | grep "[ ]$lt_prog_cc_shlib[ ]" >/dev/null; then : else { echo "$as_me:$LINENO: WARNING: add \`$lt_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5 echo "$as_me: WARNING: add \`$lt_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&2;} lt_cv_prog_cc_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # echo "$as_me:$LINENO: checking if $compiler static flag $lt_prog_compiler_static works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_prog_compiler_static works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_prog_compiler_static" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 else lt_prog_compiler_static_works=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" fi echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7175: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:7179: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux*) case $CC in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; sco3.2v5*) lt_prog_compiler_pic='-Kpic' lt_prog_compiler_static='-dn' ;; solaris*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7408: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:7412: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_prog_compiler_pic_works=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case "$host_os" in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:7468: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:7472: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s out/conftest.err; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else ld_shlibs=no fi ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris* | sysv5*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_cmds="$tmp_archive_cmds" supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' else archive_expsym_cmds="$tmp_archive_cmds" fi link_all_deplibs=no else ld_shlibs=no fi ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = yes; then runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$link_static_flag"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.012|aix4.012.*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. 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 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. 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 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) always_export_symbols=yes # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec=' ' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds it's shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi4*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) if test "$GXX" = yes ; then archive_cmds_need_lc=no case "$host_os" in rhapsody* | darwin1.[012]) allow_undefined_flag='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='-flat_namespace -undefined suppress' ;; 10.*) allow_undefined_flag='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='-all_load $convenience' link_all_deplibs=yes else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*|ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case "$host_cpu" in hppa*64*|ia64*) archive_cmds='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; esac fi if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_libdir_separator=: hardcode_direct=no hardcode_shlibpath_var=no ;; ia64*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=no hardcode_shlibpath_var=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; *) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; sco3.2v5*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='${wl}-Bexport' runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4.2uw2*) archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=no hardcode_shlibpath_var=no hardcode_runpath_var=yes runpath_var=LD_RUN_PATH ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) no_undefined_flag='${wl}-z ${wl}text' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' fi runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv5*) no_undefined_flag=' -z text' # $CC -shared without GNU ld will not create a library from C++ # object files and a static libstdc++, better avoid it by now archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' hardcode_libdir_flag_spec= hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi4*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd*) objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.01* | freebsdelf3.01*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *) # from 3.2 on shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case "$host_cpu" in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos need_lib_prefix=no need_version=yes library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; sco3.2v5*) version_type=osf soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var " || \ test "X$hardcode_automatic"="Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" 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 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+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. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* 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 shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; 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_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 shl_load (); int main () { shl_load (); ; 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_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=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_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+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. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* 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 dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; 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_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $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 dlopen (); int main () { dlopen (); ; 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_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=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_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 dld_link (); int main () { dld_link (); ; 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_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=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_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which librarie types wil actually be built echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case "$host_os" in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; darwin* | rhapsody*) if test "$GCC" = yes; then archive_cmds_need_lc=no case "$host_os" in rhapsody* | darwin1.[012]) allow_undefined_flag='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='-flat_namespace -undefined suppress' ;; 10.*) allow_undefined_flag='-undefined dynamic_lookup' ;; esac fi ;; esac output_verbose_link_cmd='echo' archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='-all_load $convenience' link_all_deplibs=yes else ld_shlibs=no fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 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 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. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" # Check whether --with-tags or --without-tags was given. if test "${with_tags+set}" = set; then withval="$with_tags" tagnames="$withval" fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && test "X$CXX" != "Xno"; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= # Source file extension for C++ test sources. ac_ext=cc # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 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. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname 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 echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_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 `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.012|aix4.012.*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_CXX=yes else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. 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 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_cxx_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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. 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 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_cxx_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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) always_export_symbols_CXX=yes # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX=' ' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds it's shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) if test "$GXX" = yes; then archive_cmds_need_lc_CXX=no case "$host_os" in rhapsody* | darwin1.[012]) allow_undefined_flag_CXX='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_CXX='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_CXX='-flat_namespace -undefined suppress' ;; 10.*) allow_undefined_flag_CXX='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_CXX='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds_CXX='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='-all_load $convenience' link_all_deplibs_CXX=yes else ld_shlibs_CXX=no fi ;; dgux*) case $cc_basename in ec++) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd12*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | kfreebsd*-gnu) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_CXX='+b $libdir' hardcode_libdir_separator_CXX=: ;; ia64*) hardcode_libdir_flag_spec_CXX='-L$libdir' ;; *) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case "$host_cpu" in hppa*64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC) case "$host_cpu" in hppa*64*|ia64*) archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case "$host_cpu" in ia64*|hppa*64*) archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; irix5* | irix6*) case $cc_basename in CC) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc) # Intel C++ with_gnu_ld=yes archive_cmds_need_lc_CXX=no archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; cxx) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; osf3*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry $objdir/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sco*) archive_cmds_need_lc_CXX=no case $cc_basename in CC) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; sunos4*) case $cc_basename in CC) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC) # Sun C++ 4.2, 5.x and Centerline C++ no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.0-5 | solaris2.0-5.*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac link_all_deplibs_CXX=yes # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[LR]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' fi ;; esac ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) archive_cmds_need_lc_CXX=no ;; tandem*) case $cc_basename in NCC) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`" for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; dgux*) case $cc_basename in ec++) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; cxx) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd* | knetbsd*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; sco*) case $cc_basename in CC) lt_prog_compiler_pic_CXX='-fPIC' ;; *) ;; esac ;; solaris*) case $cc_basename in CC) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; unixware*) ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11919: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:11923: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6 if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case "$host_os" in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:11979: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:11983: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s out/conftest.err; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' ;; linux*) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6 test "$ld_shlibs_CXX" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi4*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd*) objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.01* | freebsdelf3.01*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *) # from 3.2 on shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case "$host_cpu" in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos need_lib_prefix=no need_version=yes library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; sco3.2v5*) version_type=osf soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var CXX" || \ test "X$hardcode_automatic_CXX"="Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6 if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" 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 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_cxx_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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+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. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* 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 shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; 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_cxx_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_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 shl_load (); int main () { shl_load (); ; 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_cxx_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_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=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_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+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. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* 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 dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; 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_cxx_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_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_cxx_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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $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 dlopen (); int main () { dlopen (); ; 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_cxx_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_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=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_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 dld_link (); int main () { dld_link (); ; 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_cxx_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_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=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_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_CXX # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_CXX # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_CXX" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code=" subroutine t\n return\n end\n" # Code to be used in simple link tests lt_simple_link_test_code=" program t\n end\n" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6 echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case "$host_os" in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) test "$enable_shared" = yes && enable_static=no ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6 test "$ld_shlibs_F77" = no && can_build_shared=no GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux*) case $CC in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; sco3.2v5*) lt_prog_compiler_pic_F77='-Kpic' lt_prog_compiler_static_F77='-dn' ;; solaris*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14261: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:14265: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6 if test x"$lt_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case "$host_os" in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14321: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:14325: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s out/conftest.err; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else ld_shlibs=no fi ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris* | sysv5*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_cmds_F77="$tmp_archive_cmds" supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' else archive_expsym_cmds_F77="$tmp_archive_cmds" fi link_all_deplibs_F77=no else ld_shlibs_F77=no fi ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = yes; then runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$link_static_flag"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.012|aix4.012.*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_F77=yes else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _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_f77_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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _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_f77_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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) always_export_symbols_F77=yes # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77=' ' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds it's shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi4*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) if test "$GXX" = yes ; then archive_cmds_need_lc_F77=no case "$host_os" in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='-flat_namespace -undefined suppress' ;; 10.*) allow_undefined_flag_F77='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_F77='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_F77='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds_F77='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='-all_load $convenience' link_all_deplibs_F77=yes else ld_shlibs_F77=no fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*|ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case "$host_cpu" in hppa*64*|ia64*) archive_cmds_F77='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; *) archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; esac fi if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; ia64*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; *) hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; sco3.2v5*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4.2uw2*) archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=no hardcode_runpath_var=yes runpath_var=LD_RUN_PATH ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) no_undefined_flag_F77='${wl}-z ${wl}text' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' fi runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv5*) no_undefined_flag_F77=' -z text' # $CC -shared without GNU ld will not create a library from C++ # object files and a static libstdc++, better avoid it by now archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' hardcode_libdir_flag_spec_F77= hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6 test "$ld_shlibs_F77" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi4*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd*) objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.01* | freebsdelf3.01*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *) # from 3.2 on shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case "$host_cpu" in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos need_lib_prefix=no need_version=yes library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; sco3.2v5*) version_type=osf soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var F77" || \ test "X$hardcode_automatic_F77"="Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6 if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" 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 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_F77 # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_F77 # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_F77 # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_F77" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16354: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:16358: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_GCJ='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux*) case $CC in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; sco3.2v5*) lt_prog_compiler_pic_GCJ='-Kpic' lt_prog_compiler_static_GCJ='-dn' ;; solaris*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16587: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:16591: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then lt_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6 if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case "$host_os" in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16647: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:16651: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s out/conftest.err; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else ld_shlibs=no fi ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris* | sysv5*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_cmds_GCJ="$tmp_archive_cmds" supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' else archive_expsym_cmds_GCJ="$tmp_archive_cmds" fi link_all_deplibs_GCJ=no else ld_shlibs_GCJ=no fi ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = yes; then runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$link_static_flag"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.012|aix4.012.*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct_GCJ=yes else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. 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 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. 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 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 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; 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_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) always_export_symbols_GCJ=yes # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ=' ' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds it's shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi4*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) if test "$GXX" = yes ; then archive_cmds_need_lc_GCJ=no case "$host_os" in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='-flat_namespace -undefined suppress' ;; 10.*) allow_undefined_flag_GCJ='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_cmds_GCJ='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else archive_cmds_GCJ='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi module_cmds_GCJ='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='-all_load $convenience' link_all_deplibs_GCJ=yes else ld_shlibs_GCJ=no fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*|ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case "$host_cpu" in hppa*64*|ia64*) archive_cmds_GCJ='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; *) archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; esac fi if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; ia64*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; *) hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; sco3.2v5*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4.2uw2*) archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_runpath_var=yes runpath_var=LD_RUN_PATH ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) no_undefined_flag_GCJ='${wl}-z ${wl}text' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' fi runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv5*) no_undefined_flag_GCJ=' -z text' # $CC -shared without GNU ld will not create a library from C++ # object files and a static libstdc++, better avoid it by now archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' hardcode_libdir_flag_spec_GCJ= hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6 test "$ld_shlibs_GCJ" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext 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); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6 ;; esac fi ;; esac echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi4*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd*) objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.01* | freebsdelf3.01*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *) # from 3.2 on shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case "$host_cpu" in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos need_lib_prefix=no need_version=yes library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; sco3.2v5*) version_type=osf soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var GCJ" || \ test "X$hardcode_automatic_GCJ"="Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6 if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" 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 fi ;; *) echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+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. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* 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 shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me #else char (*f) () = shl_load; #endif #ifdef __cplusplus } #endif int main () { return f != shl_load; ; 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_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 shl_load (); int main () { shl_load (); ; 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_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=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_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+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. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* 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 dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me #else char (*f) () = dlopen; #endif #ifdef __cplusplus } #endif int main () { return f != dlopen; ; 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_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { dlopen (); ; 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_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $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 dlopen (); int main () { dlopen (); ; 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_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=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_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 dld_link (); int main () { dld_link (); ; 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_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=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_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); } EOF 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); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_GCJ # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_GCJ" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_RC # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_RC # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_RC # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$fix_srcfile_path_RC" # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion if eval "test x$with_gzip = x"; then # Extract the first word of "gzip", so it can be a program name with args. set dummy gzip; 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_with_gzip+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$with_gzip"; then ac_cv_prog_with_gzip="$with_gzip" # 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_with_gzip=""yes"" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi with_gzip=$ac_cv_prog_with_gzip if test -n "$with_gzip"; then echo "$as_me:$LINENO: result: $with_gzip" >&5 echo "${ECHO_T}$with_gzip" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if eval "test x$with_gzip = xyes"; then cat >>confdefs.h <<\_ACEOF #define HAVE_GZIP 1 _ACEOF fi DEFAULT_LIBDIR=${datadir}/lincity DEFAULT_LIBDIR=`( test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" eval echo \""$DEFAULT_LIBDIR"\" )` cat >>confdefs.h <<_ACEOF #define DEFAULT_LIBDIR "$DEFAULT_LIBDIR" _ACEOF if test "x$ac_path_x_has_been_run" != xyes; then echo "$as_me:$LINENO: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 ac_path_x_has_been_run=yes # Check whether --with-x or --without-x was given. if test "${with_x+set}" = set; then withval="$with_x" fi; # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then # Both variables are already set. have_x=yes else if test "${ac_cv_have_x+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -fr conftest.dir if mkdir conftest.dir; then cd conftest.dir # Make sure to not put "make" in the Imakefile rules, since we grep it out. cat >Imakefile <<'_ACEOF' acfindx: @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"' _ACEOF if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering...", which would confuse us. eval `${MAKE-make} acfindx 2>/dev/null | grep -v make` # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl; do if test ! -f $ac_im_usrlibdir/libX11.$ac_extension && test -f $ac_im_libdir/libX11.$ac_extension; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /lib) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -fr conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for a specified header file. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then # We can compile using X headers with no special include directory. ac_x_includes= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Intrinsic.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { XtMalloc (0) ; 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 LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 LIBS=$ac_save_LIBS for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do if test -r $ac_dir/libXt.$ac_extension; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no if test "$ac_x_includes" = no || test "$ac_x_libraries" = no; then # Didn't find X anywhere. Cache the known absence of X. ac_cv_have_x="have_x=no" else # Record where we found X for the cache. ac_cv_have_x="have_x=yes \ ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries" fi fi fi eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then echo "$as_me:$LINENO: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" # It might be that x_includes is empty (headers are found in the # standard search path. Then output the corresponding message ac_out_x_includes=$x_includes test "x$x_includes" = x && ac_out_x_includes="in standard search path" echo "$as_me:$LINENO: result: libraries $x_libraries, headers $ac_out_x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $ac_out_x_includes" >&6 fi fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. cat >>confdefs.h <<\_ACEOF #define X_DISPLAY_MISSING 1 _ACEOF X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" 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 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_R_nospace=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_R_nospace=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" 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 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_R_space=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_R_space=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else echo "$as_me:$LINENO: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi LIBS=$ac_xsave_LIBS esac fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" 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 XOpenDisplay (); int main () { XOpenDisplay (); ; 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 : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $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 dnet_ntoa (); int main () { dnet_ntoa (); ; 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_dnet_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_dnet_ntoa=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_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $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 dnet_ntoa (); int main () { dnet_ntoa (); ; 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_dnet_stub_dnet_ntoa=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dnet_stub_dnet_ntoa=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_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. echo "$as_me:$LINENO: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+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. */ /* Define gethostbyname to an innocuous variant, in case declares gethostbyname. For example, HP-UX 11i declares gettimeofday. */ #define gethostbyname innocuous_gethostbyname /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef gethostbyname /* 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 gethostbyname (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_gethostbyname) || defined (__stub___gethostbyname) choke me #else char (*f) () = gethostbyname; #endif #ifdef __cplusplus } #endif int main () { return f != gethostbyname; ; 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_func_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_gethostbyname=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $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 gethostbyname (); int main () { gethostbyname (); ; 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_nsl_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_nsl_gethostbyname=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_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $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 gethostbyname (); int main () { gethostbyname (); ; 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_bsd_gethostbyname=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_bsd_gethostbyname=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_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. echo "$as_me:$LINENO: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+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. */ /* Define connect to an innocuous variant, in case declares connect. For example, HP-UX 11i declares gettimeofday. */ #define connect innocuous_connect /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef connect /* 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 connect (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_connect) || defined (__stub___connect) choke me #else char (*f) () = connect; #endif #ifdef __cplusplus } #endif int main () { return f != connect; ; 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_func_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_connect=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $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 connect (); int main () { connect (); ; 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_socket_connect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_socket_connect=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_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. echo "$as_me:$LINENO: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+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. */ /* Define remove to an innocuous variant, in case declares remove. For example, HP-UX 11i declares gettimeofday. */ #define remove innocuous_remove /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef remove /* 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 remove (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_remove) || defined (__stub___remove) choke me #else char (*f) () = remove; #endif #ifdef __cplusplus } #endif int main () { return f != remove; ; 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_func_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_remove=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then echo "$as_me:$LINENO: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $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 remove (); int main () { remove (); ; 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_posix_remove=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_posix_remove=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_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. echo "$as_me:$LINENO: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+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. */ /* Define shmat to an innocuous variant, in case declares shmat. For example, HP-UX 11i declares gettimeofday. */ #define shmat innocuous_shmat /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shmat /* 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 shmat (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_shmat) || defined (__stub___shmat) choke me #else char (*f) () = shmat; #endif #ifdef __cplusplus } #endif int main () { return f != shmat; ; 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_func_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shmat=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $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 shmat (); int main () { shmat (); ; 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_ipc_shmat=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ipc_shmat=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_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $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 IceConnectionNumber (); int main () { IceConnectionNumber (); ; 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_ICE_IceConnectionNumber=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_ICE_IceConnectionNumber=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_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS fi CFLAGS="$CFLAGS $X_CFLAGS -Wall" LIBS="$LIBS $X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS" ac_config_headers="$ac_config_headers config.h" ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+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. */ #include #include <$ac_hdr> int main () { if ((DIR *) 0) return 0; ; 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 eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 _ACEOF ac_header_dirent=$ac_hdr; break fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo "$as_me:$LINENO: checking for library containing opendir" >&5 echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6 if test "${ac_cv_search_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_func_search_save_LIBS=$LIBS ac_cv_search_opendir=no 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 opendir (); int main () { opendir (); ; 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_search_opendir="none required" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$ac_cv_search_opendir" = no; then for ac_lib in dir; do LIBS="-l$ac_lib $ac_func_search_save_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 opendir (); int main () { opendir (); ; 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_search_opendir="-l$ac_lib" 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_exeext conftest.$ac_ext done fi LIBS=$ac_func_search_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 echo "${ECHO_T}$ac_cv_search_opendir" >&6 if test "$ac_cv_search_opendir" != no; then test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS" fi else echo "$as_me:$LINENO: checking for library containing opendir" >&5 echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6 if test "${ac_cv_search_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_func_search_save_LIBS=$LIBS ac_cv_search_opendir=no 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 opendir (); int main () { opendir (); ; 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_search_opendir="none required" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$ac_cv_search_opendir" = no; then for ac_lib in x; do LIBS="-l$ac_lib $ac_func_search_save_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 opendir (); int main () { opendir (); ; 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_search_opendir="-l$ac_lib" 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_exeext conftest.$ac_ext done fi LIBS=$ac_func_search_save_LIBS fi echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 echo "${ECHO_T}$ac_cv_search_opendir" >&6 if test "$ac_cv_search_opendir" != no; then test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS" fi fi echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+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. */ #include #include #include int main () { if ((struct tm *) 0) return 0; ; 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_header_time=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_time=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then cat >>confdefs.h <<\_ACEOF #define TIME_WITH_SYS_TIME 1 _ACEOF fi 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 echo "$as_me:$LINENO: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #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 ac_cv_c_inline=$ac_kw; 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 fi echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac echo "$as_me:$LINENO: checking for char" >&5 echo $ECHO_N "checking for char... $ECHO_C" >&6 if test "${ac_cv_type_char+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. */ $ac_includes_default int main () { if ((char *) 0) return 0; if (sizeof (char)) return 0; ; 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_type_char=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_char=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_char" >&5 echo "${ECHO_T}$ac_cv_type_char" >&6 echo "$as_me:$LINENO: checking size of char" >&5 echo $ECHO_N "checking size of char... $ECHO_C" >&6 if test "${ac_cv_sizeof_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_type_char" = yes; then # The cast to unsigned long works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (char))) >= 0)]; test_array [0] = 0 ; 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_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr $ac_mid + 1` if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (char))) < 0)]; test_array [0] = 0 ; 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_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (char))) >= $ac_mid)]; test_array [0] = 0 ; 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_lo=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_hi=`expr '(' $ac_mid ')' - 1` if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo= ac_hi= fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (char))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr '(' $ac_mid ')' + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in ?*) ac_cv_sizeof_char=$ac_lo;; '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (char), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } ;; esac else if test "$cross_compiling" = yes; then { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 echo "$as_me: error: internal error: not reached in cross-compile" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default long longval () { return (long) (sizeof (char)); } unsigned long ulongval () { return (long) (sizeof (char)); } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) exit (1); if (((long) (sizeof (char))) < 0) { long i = longval (); if (i != ((long) (sizeof (char)))) exit (1); fprintf (f, "%ld\n", i); } else { unsigned long i = ulongval (); if (i != ((long) (sizeof (char)))) exit (1); fprintf (f, "%lu\n", i); } exit (ferror (f) || fclose (f) != 0); ; return 0; } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_sizeof_char=`cat conftest.val` else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) { { echo "$as_me:$LINENO: error: cannot compute sizeof (char), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (char), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi rm -f conftest.val else ac_cv_sizeof_char=0 fi fi echo "$as_me:$LINENO: result: $ac_cv_sizeof_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_char" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_CHAR $ac_cv_sizeof_char _ACEOF echo "$as_me:$LINENO: checking for short" >&5 echo $ECHO_N "checking for short... $ECHO_C" >&6 if test "${ac_cv_type_short+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. */ $ac_includes_default int main () { if ((short *) 0) return 0; if (sizeof (short)) return 0; ; 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_type_short=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_short=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_short" >&5 echo "${ECHO_T}$ac_cv_type_short" >&6 echo "$as_me:$LINENO: checking size of short" >&5 echo $ECHO_N "checking size of short... $ECHO_C" >&6 if test "${ac_cv_sizeof_short+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_type_short" = yes; then # The cast to unsigned long works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (short))) >= 0)]; test_array [0] = 0 ; 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_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr $ac_mid + 1` if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (short))) < 0)]; test_array [0] = 0 ; 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_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (short))) >= $ac_mid)]; test_array [0] = 0 ; 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_lo=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_hi=`expr '(' $ac_mid ')' - 1` if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo= ac_hi= fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (short))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr '(' $ac_mid ')' + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in ?*) ac_cv_sizeof_short=$ac_lo;; '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (short), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } ;; esac else if test "$cross_compiling" = yes; then { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 echo "$as_me: error: internal error: not reached in cross-compile" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default long longval () { return (long) (sizeof (short)); } unsigned long ulongval () { return (long) (sizeof (short)); } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) exit (1); if (((long) (sizeof (short))) < 0) { long i = longval (); if (i != ((long) (sizeof (short)))) exit (1); fprintf (f, "%ld\n", i); } else { unsigned long i = ulongval (); if (i != ((long) (sizeof (short)))) exit (1); fprintf (f, "%lu\n", i); } exit (ferror (f) || fclose (f) != 0); ; return 0; } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_sizeof_short=`cat conftest.val` else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) { { echo "$as_me:$LINENO: error: cannot compute sizeof (short), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (short), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi rm -f conftest.val else ac_cv_sizeof_short=0 fi fi echo "$as_me:$LINENO: result: $ac_cv_sizeof_short" >&5 echo "${ECHO_T}$ac_cv_sizeof_short" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_SHORT $ac_cv_sizeof_short _ACEOF echo "$as_me:$LINENO: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+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. */ $ac_includes_default int main () { if ((int *) 0) return 0; if (sizeof (int)) return 0; ; 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_type_int=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_int=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 echo "$as_me:$LINENO: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_type_int" = yes; then # The cast to unsigned long works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (int))) >= 0)]; test_array [0] = 0 ; 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_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr $ac_mid + 1` if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (int))) < 0)]; test_array [0] = 0 ; 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_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (int))) >= $ac_mid)]; test_array [0] = 0 ; 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_lo=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_hi=`expr '(' $ac_mid ')' - 1` if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo= ac_hi= fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (int))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr '(' $ac_mid ')' + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in ?*) ac_cv_sizeof_int=$ac_lo;; '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (int), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } ;; esac else if test "$cross_compiling" = yes; then { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 echo "$as_me: error: internal error: not reached in cross-compile" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default long longval () { return (long) (sizeof (int)); } unsigned long ulongval () { return (long) (sizeof (int)); } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) exit (1); if (((long) (sizeof (int))) < 0) { long i = longval (); if (i != ((long) (sizeof (int)))) exit (1); fprintf (f, "%ld\n", i); } else { unsigned long i = ulongval (); if (i != ((long) (sizeof (int)))) exit (1); fprintf (f, "%lu\n", i); } exit (ferror (f) || fclose (f) != 0); ; return 0; } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_sizeof_int=`cat conftest.val` else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) { { echo "$as_me:$LINENO: error: cannot compute sizeof (int), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (int), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi rm -f conftest.val else ac_cv_sizeof_int=0 fi fi echo "$as_me:$LINENO: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_INT $ac_cv_sizeof_int _ACEOF echo "$as_me:$LINENO: checking for long" >&5 echo $ECHO_N "checking for long... $ECHO_C" >&6 if test "${ac_cv_type_long+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. */ $ac_includes_default int main () { if ((long *) 0) return 0; if (sizeof (long)) return 0; ; 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_type_long=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_long=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 echo "$as_me:$LINENO: checking size of long" >&5 echo $ECHO_N "checking size of long... $ECHO_C" >&6 if test "${ac_cv_sizeof_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$ac_cv_type_long" = yes; then # The cast to unsigned long works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (long))) >= 0)]; test_array [0] = 0 ; 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_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr $ac_mid + 1` if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (long))) < 0)]; test_array [0] = 0 ; 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_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (long))) >= $ac_mid)]; test_array [0] = 0 ; 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_lo=$ac_mid; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_hi=`expr '(' $ac_mid ')' - 1` if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi ac_mid=`expr 2 '*' $ac_mid` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo= ac_hi= fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !(((long) (sizeof (long))) <= $ac_mid)]; test_array [0] = 0 ; 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_hi=$ac_mid else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_lo=`expr '(' $ac_mid ')' + 1` fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in ?*) ac_cv_sizeof_long=$ac_lo;; '') { { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (long), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } ;; esac else if test "$cross_compiling" = yes; then { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 echo "$as_me: error: internal error: not reached in cross-compile" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default long longval () { return (long) (sizeof (long)); } unsigned long ulongval () { return (long) (sizeof (long)); } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) exit (1); if (((long) (sizeof (long))) < 0) { long i = longval (); if (i != ((long) (sizeof (long)))) exit (1); fprintf (f, "%ld\n", i); } else { unsigned long i = ulongval (); if (i != ((long) (sizeof (long)))) exit (1); fprintf (f, "%lu\n", i); } exit (ferror (f) || fclose (f) != 0); ; return 0; } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_sizeof_long=`cat conftest.val` else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) { { echo "$as_me:$LINENO: error: cannot compute sizeof (long), 77 See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute sizeof (long), 77 See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi rm -f conftest.val else ac_cv_sizeof_long=0 fi fi echo "$as_me:$LINENO: result: $ac_cv_sizeof_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_long" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG $ac_cv_sizeof_long _ACEOF if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; 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_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # 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_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; 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_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # 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_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi RANLIB=$ac_ct_RANLIB else RANLIB="$ac_cv_prog_RANLIB" fi for ac_func in gettimeofday mkdir popen do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+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. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done LCLIBS="" PROGS="" if eval "test x$with_x = xyes"; then LCLIBS="$LCLIBS LCX_LIBS" else if eval "test x$with_x = x"; then echo "$as_me:$LINENO: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $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 XOpenDisplay (); int main () { XOpenDisplay (); ; 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_X11_XOpenDisplay=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_X11_XOpenDisplay=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_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LCLIBS="$LCLIBS LCX_LIBS"; PROGS="$PROGS X_PROGS" fi fi fi if eval "test x$with_svga = xyes"; then LCLIBS="$LCLIBS LCSVGA_LIBS" else if eval "test x$with_svga = x"; then echo "$as_me:$LINENO: checking for gl_putbox in -lvgagl" >&5 echo $ECHO_N "checking for gl_putbox in -lvgagl... $ECHO_C" >&6 if test "${ac_cv_lib_vgagl_gl_putbox+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lvgagl -lvga $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 gl_putbox (); int main () { gl_putbox (); ; 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_vgagl_gl_putbox=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_vgagl_gl_putbox=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_vgagl_gl_putbox" >&5 echo "${ECHO_T}$ac_cv_lib_vgagl_gl_putbox" >&6 if test $ac_cv_lib_vgagl_gl_putbox = yes; then for ac_header in vga.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _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_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to lincity-users@lists.sourceforge.net ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF LCLIBS="$LCLIBS LCSVGA_LIBS"; PROGS="$PROGS SVGA_PROGS" fi done fi fi fi if test -z "$LCLIBS"; then { { echo "$as_me:$LINENO: error: \"Found neither SVGA nor X on your system.\"" >&5 echo "$as_me: error: \"Found neither SVGA nor X on your system.\"" >&2;} { (exit 1); exit 1; }; } fi MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; 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_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$MSGFMT" in /*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then echo "$as_me:$LINENO: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; 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_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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_GMSGFMT="$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_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then echo "$as_me:$LINENO: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; 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_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$XGETTEXT" in /*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then echo "$as_me:$LINENO: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f messages.po # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; 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_MSGMERGE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$MSGMERGE" in /*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then echo "$as_me:$LINENO: result: $MSGMERGE" >&5 echo "${ECHO_T}$MSGMERGE" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$GMSGFMT" != ":"; then if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi rm -f messages.po fi ac_config_commands="$ac_config_commands default-1" echo "$as_me:$LINENO: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+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. */ $ac_includes_default int main () { if ((off_t *) 0) return 0; if (sizeof (off_t)) return 0; ; 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_type_off_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_off_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : else cat >>confdefs.h <<_ACEOF #define off_t long _ACEOF fi echo "$as_me:$LINENO: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+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. */ $ac_includes_default int main () { if ((size_t *) 0) return 0; if (sizeof (size_t)) return 0; ; 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_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_size_t=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned _ACEOF fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo "$as_me:$LINENO: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+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. */ #include int main () { char *p = (char *) alloca (2 * sizeof (int)); ; 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_working_alloca_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_working_alloca_h=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ALLOCA_H 1 _ACEOF fi echo "$as_me:$LINENO: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+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. */ #ifdef __GNUC__ # define alloca __builtin_alloca #else # ifdef _MSC_VER # include # define alloca _alloca # else # if HAVE_ALLOCA_H # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ char *alloca (); # endif # endif # endif # endif #endif int main () { char *p = (char *) alloca (1); ; 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_func_alloca_works=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_alloca_works=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ALLOCA 1 _ACEOF else # The SVR3 libPW and SVR4 libucb both contain incompatible functions # that cause trouble. Some versions do not even contain alloca or # contain a buggy version. If you still want to use their alloca, # use ar to extract alloca.o from them instead of compiling alloca.c. ALLOCA=alloca.$ac_objext cat >>confdefs.h <<\_ACEOF #define C_ALLOCA 1 _ACEOF echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+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. */ #if defined(CRAY) && ! defined(CRAY2) webecray #else wenotbecray #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "webecray" >/dev/null 2>&1; then ac_cv_os_cray=yes else ac_cv_os_cray=no fi rm -f conftest* fi echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+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. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func _ACEOF break fi done fi echo "$as_me:$LINENO: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int find_stack_direction () { static char *addr = 0; auto char dummy; if (addr == 0) { addr = &dummy; return find_stack_direction (); } else return (&dummy > addr) ? 1 : -1; } int main () { exit (find_stack_direction () < 0); } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_c_stack_direction=1 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_c_stack_direction=-1 fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<_ACEOF #define STACK_DIRECTION $ac_cv_c_stack_direction _ACEOF fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _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_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to lincity-users@lists.sourceforge.net ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+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. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done echo "$as_me:$LINENO: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default /* malloc might have been renamed as rpl_malloc. */ #undef malloc /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the file system buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propagated back to all the places they're supposed to be. Grep wants private fixed already mapped. The main things grep needs to know about mmap are: * does it exist and is it safe to write into the mmap'd area * how to use it (BSD variants) */ #include #include #if !STDC_HEADERS && !HAVE_STDLIB_H char *malloc (); #endif /* This mess was copied from the GNU getpagesize.h. */ #if !HAVE_GETPAGESIZE /* Assume that all systems that can run configure have sys/param.h. */ # if !HAVE_SYS_PARAM_H # define HAVE_SYS_PARAM_H 1 # endif # ifdef _SC_PAGESIZE # define getpagesize() sysconf(_SC_PAGESIZE) # else /* no _SC_PAGESIZE */ # if HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif /* no _SC_PAGESIZE */ #endif /* no HAVE_GETPAGESIZE */ int main () { char *data, *data2, *data3; int i, pagesize; int fd; pagesize = getpagesize (); /* First, make a file with some known garbage in it. */ data = (char *) malloc (pagesize); if (!data) exit (1); for (i = 0; i < pagesize; ++i) *(data + i) = rand (); umask (0); fd = creat ("conftest.mmap", 0600); if (fd < 0) exit (1); if (write (fd, data, pagesize) != pagesize) exit (1); close (fd); /* Next, try to mmap the file at a fixed address which already has something else allocated at it. If we can, also make sure that we see the same garbage. */ fd = open ("conftest.mmap", O_RDWR); if (fd < 0) exit (1); data2 = (char *) malloc (2 * pagesize); if (!data2) exit (1); data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1); if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) exit (1); for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) exit (1); /* Finally, make sure that changes to the mapped area do not percolate back to the file as seen by read(). (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = (char *) malloc (pagesize); if (!data3) exit (1); if (read (fd, data3, pagesize) != pagesize) exit (1); for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) exit (1); close (fd); exit (0); } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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_func_mmap_fixed_mapped=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_mmap_fixed_mapped=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_MMAP 1 _ACEOF fi rm -f conftest.mmap echo "$as_me:$LINENO: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+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. */ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Lucky GNU user" >/dev/null 2>&1; then ac_cv_gnu_library_2_1=yes else ac_cv_gnu_library_2_1=no fi rm -f conftest* fi echo "$as_me:$LINENO: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" echo "$as_me:$LINENO: checking whether integer division by zero raises SIGFPE" >&5 echo $ECHO_N "checking whether integer division by zero raises SIGFPE... $ECHO_C" >&6 if test "${gt_cv_int_divbyzero_sigfpe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then # Guess based on the CPU. case "$host_cpu" in alpha* | i3456786 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } _ACEOF rm -f conftest$ac_exeext 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); } && { ac_try='./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 gt_cv_int_divbyzero_sigfpe=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) gt_cv_int_divbyzero_sigfpe=no fi rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi echo "$as_me:$LINENO: result: $gt_cv_int_divbyzero_sigfpe" >&5 echo "${ECHO_T}$gt_cv_int_divbyzero_sigfpe" >&6 case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac cat >>confdefs.h <<_ACEOF #define INTDIV0_RAISES_SIGFPE $value _ACEOF echo "$as_me:$LINENO: checking for inttypes.h" >&5 echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6 if test "${jm_ac_cv_header_inttypes_h+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. */ #include #include int main () { uintmax_t i = (uintmax_t) -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 jm_ac_cv_header_inttypes_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 jm_ac_cv_header_inttypes_h=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $jm_ac_cv_header_inttypes_h" >&5 echo "${ECHO_T}$jm_ac_cv_header_inttypes_h" >&6 if test $jm_ac_cv_header_inttypes_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H_WITH_UINTMAX 1 _ACEOF fi echo "$as_me:$LINENO: checking for stdint.h" >&5 echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6 if test "${jm_ac_cv_header_stdint_h+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. */ #include #include int main () { uintmax_t i = (uintmax_t) -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 jm_ac_cv_header_stdint_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 jm_ac_cv_header_stdint_h=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $jm_ac_cv_header_stdint_h" >&5 echo "${ECHO_T}$jm_ac_cv_header_stdint_h" >&6 if test $jm_ac_cv_header_stdint_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H_WITH_UINTMAX 1 _ACEOF fi echo "$as_me:$LINENO: checking for unsigned long long" >&5 echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6 if test "${ac_cv_type_unsigned_long_long+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. */ unsigned long long ull = 1; int i = 63; int main () { unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull; ; 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_type_unsigned_long_long=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_unsigned_long_long=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5 echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6 if test $ac_cv_type_unsigned_long_long = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_UNSIGNED_LONG_LONG 1 _ACEOF fi if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' cat >>confdefs.h <<_ACEOF #define uintmax_t $ac_type _ACEOF fi echo "$as_me:$LINENO: checking for inttypes.h" >&5 echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6 if test "${gt_cv_header_inttypes_h+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. */ #include #include 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 gt_cv_header_inttypes_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_header_inttypes_h=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $gt_cv_header_inttypes_h" >&5 echo "${ECHO_T}$gt_cv_header_inttypes_h" >&6 if test $gt_cv_header_inttypes_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H 1 _ACEOF fi if test $gt_cv_header_inttypes_h = yes; then echo "$as_me:$LINENO: checking whether the inttypes.h PRIxNN macros are broken" >&5 echo $ECHO_N "checking whether the inttypes.h PRIxNN macros are broken... $ECHO_C" >&6 if test "${gt_cv_inttypes_pri_broken+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. */ #include #ifdef PRId32 char *p = PRId32; #endif 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 gt_cv_inttypes_pri_broken=no else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_inttypes_pri_broken=yes fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $gt_cv_inttypes_pri_broken" >&5 echo "${ECHO_T}$gt_cv_inttypes_pri_broken" >&6 fi if test "$gt_cv_inttypes_pri_broken" = yes; then cat >>confdefs.h <<_ACEOF #define PRI_MACROS_BROKEN 1 _ACEOF fi 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" # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo "$as_me:$LINENO: checking for ld used by GCC" >&5 echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6 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 echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${acl_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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. if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then test "$with_gnu_ld" != no && break else test "$with_gnu_ld" != yes && break fi fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then echo "$as_me:$LINENO: result: $LD" >&5 echo "${ECHO_T}$LD" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${acl_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. if $LD -v 2>&1 &5; then acl_cv_prog_gnu_ld=yes else acl_cv_prog_gnu_ld=no fi fi echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5 echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6 with_gnu_ld=$acl_cv_prog_gnu_ld echo "$as_me:$LINENO: checking for shared library run path origin" >&5 echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6 if test "${acl_cv_rpath+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 fi echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5 echo "${ECHO_T}$acl_cv_rpath" >&6 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" sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec" sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec" # Check whether --enable-rpath or --disable-rpath was given. if test "${enable_rpath+set}" = set; then enableval="$enable_rpath" : else enable_rpath=yes fi; use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix or --without-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then withval="$with_libiconv_prefix" if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi; LIBICONV= LTLIBICONV= INCICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' 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" 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" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else 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 $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else 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 if test "$hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" 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 haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi 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 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*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` 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*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then 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 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*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _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_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 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); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag ac_cpp_err=$ac_cpp_err$ac_c_werror_flag else ac_cpp_err= fi else ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## -------------------------------------------------- ## ## Report this to lincity-users@lists.sourceforge.net ## ## -------------------------------------------------- ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+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. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me #else char (*f) () = $ac_func; #endif #ifdef __cplusplus } #endif int main () { return f != $ac_func; ; 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 eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done echo "$as_me:$LINENO: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; 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 am_cv_func_iconv=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; 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 am_cv_lib_iconv=yes am_cv_func_iconv=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ICONV 1 _ACEOF fi if test "$am_cv_lib_iconv" = yes; then echo "$as_me:$LINENO: checking how to link with libiconv" >&5 echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $LIBICONV" >&5 echo "${ECHO_T}$LIBICONV" >&6 else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi if test "$am_cv_func_iconv" = yes; then echo "$as_me:$LINENO: checking for iconv declaration" >&5 echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6 if test "${am_cv_proto_iconv+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. */ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif 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 am_cv_proto_iconv_arg1="" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 am_cv_proto_iconv_arg1="const" fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" fi am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` echo "$as_me:$LINENO: result: ${ac_t:- }$am_cv_proto_iconv" >&5 echo "${ECHO_T}${ac_t:- }$am_cv_proto_iconv" >&6 cat >>confdefs.h <<_ACEOF #define ICONV_CONST $am_cv_proto_iconv_arg1 _ACEOF fi echo "$as_me:$LINENO: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+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. */ #include int main () { char* cs = nl_langinfo(CODESET); ; 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 am_cv_langinfo_codeset=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 am_cv_langinfo_codeset=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_LANGINFO_CODESET 1 _ACEOF fi if test $ac_cv_header_locale_h = yes; then echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+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. */ #include int main () { return LC_MESSAGES ; 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 am_cv_val_LC_MESSAGES=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 am_cv_val_LC_MESSAGES=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_LC_MESSAGES 1 _ACEOF fi fi for ac_prog in bison 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_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$INTLBISON"; then ac_cv_prog_INTLBISON="$INTLBISON" # 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_INTLBISON="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then echo "$as_me:$LINENO: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$INTLBISON" && break done if test -z "$INTLBISON"; then ac_verc_fail=yes else echo "$as_me:$LINENO: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac echo "$as_me:$LINENO: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then INTLBISON=: fi echo "$as_me:$LINENO: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" USE_NLS=$enableval else USE_NLS=yes fi; echo "$as_me:$LINENO: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no LIBINTL= LTLIBINTL= POSUB= if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no echo "$as_me:$LINENO: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" nls_cv_force_use_gnu_gettext=$withval else nls_cv_force_use_gnu_gettext=no fi; echo "$as_me:$LINENO: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5 echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6 if test "${gt_cv_func_gnugettext1_libc+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. */ #include extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings ; 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 gt_cv_func_gnugettext1_libc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_gnugettext1_libc=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libc" >&5 echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6 if test "$gt_cv_func_gnugettext1_libc" != "yes"; then use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix or --without-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then withval="$with_libintl_prefix" if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi; LIBINTL= LTLIBINTL= INCINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' 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" 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" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else 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 $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else 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 if test "$hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" 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 haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi 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 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*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` 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*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" 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 LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then 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 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*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5 echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6 if test "${gt_cv_func_gnugettext1_libintl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; 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 gt_cv_func_gnugettext1_libintl=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_gnugettext1_libintl=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; 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 LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext1_libintl=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libintl" >&5 echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6 fi if test "$gt_cv_func_gnugettext1_libc" = "yes" \ || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \ && test "$PACKAGE" != gettext; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test "$gt_use_preinstalled_gnugettext" != "yes"; then nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then INTLOBJS="\$(GETTOBJS)" BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="\${top_builddir}/intl/libintl.a $LIBICONV" LTLIBINTL="\${top_builddir}/intl/libintl.a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then CATOBJEXT=.gmo fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then cat >>confdefs.h <<\_ACEOF #define ENABLE_NLS 1 _ACEOF else USE_NLS=no fi fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then echo "$as_me:$LINENO: checking how to link with libintl" >&5 echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6 echo "$as_me:$LINENO: result: $LIBINTL" >&5 echo "${ECHO_T}$LIBINTL" >&6 for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi cat >>confdefs.h <<\_ACEOF #define HAVE_GETTEXT 1 _ACEOF cat >>confdefs.h <<\_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF fi POSUB=po fi if test "$PACKAGE" = gettext; then BUILD_INCLUDED_LIBINTL=yes fi nls_cv_header_intl= nls_cv_header_libgt= DATADIRNAME=share INSTOBJEXT=.mo GENCAT=gencat INTL_LIBTOOL_SUFFIX_PREFIX= INTLLIBS="$LIBINTL" LOCALEDIR='${prefix}/${DATADIRNAME}/locale' LOCALEDIR=`( test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" eval echo \""$LOCALEDIR"\" )` cat >>confdefs.h <<_ACEOF #define LOCALEDIR "$LOCALEDIR" _ACEOF LIBS="$LIBS $LIBINTL" ac_config_files="$ac_config_files Makefile intl/Makefile po/Makefile.in m4/Makefile modules/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 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${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 Lincity $as_me 1.13.1, 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ Lincity config.status 1.13.1 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. # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it # from automake. eval 'ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _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" ;; "intl/Makefile" ) CONFIG_FILES="$CONFIG_FILES intl/Makefile" ;; "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "m4/Makefile" ) CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; "modules/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/Makefile" ;; "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS 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,@CYGPATH_W@,$CYGPATH_W,;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,@AMTAR@,$AMTAR,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;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,@DEPDIR@,$DEPDIR,;t t s,@am__include@,$am__include,;t t s,@am__quote@,$am__quote,;t t s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t s,@CCDEPMODE@,$CCDEPMODE,;t t s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t s,@CPP@,$CPP,;t t s,@EGREP@,$EGREP,;t t s,@build@,$build,;t t s,@build_cpu@,$build_cpu,;t t s,@build_vendor@,$build_vendor,;t t s,@build_os@,$build_os,;t t s,@host@,$host,;t t s,@host_cpu@,$host_cpu,;t t s,@host_vendor@,$host_vendor,;t t s,@host_os@,$host_os,;t t s,@LN_S@,$LN_S,;t t s,@ECHO@,$ECHO,;t t s,@AR@,$AR,;t t s,@ac_ct_AR@,$ac_ct_AR,;t t s,@RANLIB@,$RANLIB,;t t s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t s,@CXX@,$CXX,;t t s,@CXXFLAGS@,$CXXFLAGS,;t t s,@ac_ct_CXX@,$ac_ct_CXX,;t t s,@CXXDEPMODE@,$CXXDEPMODE,;t t s,@am__fastdepCXX_TRUE@,$am__fastdepCXX_TRUE,;t t s,@am__fastdepCXX_FALSE@,$am__fastdepCXX_FALSE,;t t s,@CXXCPP@,$CXXCPP,;t t s,@F77@,$F77,;t t s,@FFLAGS@,$FFLAGS,;t t s,@ac_ct_F77@,$ac_ct_F77,;t t s,@LIBTOOL@,$LIBTOOL,;t t s,@with_gzip@,$with_gzip,;t t s,@X_CFLAGS@,$X_CFLAGS,;t t s,@X_PRE_LIBS@,$X_PRE_LIBS,;t t s,@X_LIBS@,$X_LIBS,;t t s,@X_EXTRA_LIBS@,$X_EXTRA_LIBS,;t t s,@LCLIBS@,$LCLIBS,;t t s,@PROGS@,$PROGS,;t t s,@MKINSTALLDIRS@,$MKINSTALLDIRS,;t t s,@MSGFMT@,$MSGFMT,;t t s,@GMSGFMT@,$GMSGFMT,;t t s,@XGETTEXT@,$XGETTEXT,;t t s,@MSGMERGE@,$MSGMERGE,;t t s,@ALLOCA@,$ALLOCA,;t t s,@GLIBC21@,$GLIBC21,;t t s,@LIBICONV@,$LIBICONV,;t t s,@LTLIBICONV@,$LTLIBICONV,;t t s,@INTLBISON@,$INTLBISON,;t t s,@USE_NLS@,$USE_NLS,;t t s,@BUILD_INCLUDED_LIBINTL@,$BUILD_INCLUDED_LIBINTL,;t t s,@USE_INCLUDED_LIBINTL@,$USE_INCLUDED_LIBINTL,;t t s,@CATOBJEXT@,$CATOBJEXT,;t t s,@INTLOBJS@,$INTLOBJS,;t t s,@DATADIRNAME@,$DATADIRNAME,;t t s,@INSTOBJEXT@,$INSTOBJEXT,;t t s,@GENCAT@,$GENCAT,;t t s,@INTL_LIBTOOL_SUFFIX_PREFIX@,$INTL_LIBTOOL_SUFFIX_PREFIX,;t t s,@INTLLIBS@,$INTLLIBS,;t t s,@LIBINTL@,$LIBINTL,;t t s,@LTLIBINTL@,$LTLIBINTL,;t t s,@POSUB@,$POSUB,;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 <>$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 <>$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 # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $ac_file | $ac_file:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $ac_file" >`(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'`/stamp-h$_am_stamp_count 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 depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`(dirname "$mf") 2>/dev/null || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } /^X\(\/\/\)[^/].*/{ s//\1/; q; } /^X\(\/\/\)$/{ s//\1/; q; } /^X\(\/\).*/{ s//\1/; q; } s/.*/./; q'` else continue fi grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue # Extract the definition of DEP_FILES from the Makefile without # running `make'. DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` test -z "$DEPDIR" && continue # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n -e '/^U = / s///p' < "$mf"` test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" # We invoke sed twice because it is the simplest approach to # changing $(DEPDIR) to its actual value in the expansion. for file in `sed -n -e ' /^DEP_FILES = .*\\\\$/ { s/^DEP_FILES = // :loop s/\\\\$// p n /\\\\$/ b loop p } /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`(dirname "$file") 2>/dev/null || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$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 $dirpart/$fdir else as_dir=$dirpart/$fdir 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 $dirpart/$fdir" >&5 echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; default-1 ) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' fi case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= GMOFILES= UPDATEPOFILES= DUMMYPOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; 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 lincity-1.13.1/ABOUT-NLS0000644000175000017500000006015707627052670011444 00000000000000Notes on the Free Translation Project ************************************* Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work at translations should contact the appropriate team. When reporting bugs in the `intl/' directory or bugs which may be related to internationalization, you should tell about the version of `gettext' which is used. The information can be found in the `intl/VERSION' file, in internationalized packages. Quick configuration advice ========================== If you want to exploit the full power of internationalization, you should configure it using ./configure --with-included-gettext to force usage of internationalizing routines provided within this package, despite the existence of internationalizing capabilities in the operating system where this package is being installed. So far, only the `gettext' implementation in the GNU C library version 2 provides as many features (such as locale alias, message inheritance, automatic charset conversion or plural form handling) as the implementation here. It is also not possible to offer this additional functionality on top of a `catgets' implementation. Future versions of GNU `gettext' will very likely convey even more functionality. So it might be a good idea to change to GNU `gettext' as soon as possible. So you need _not_ provide this option if you are using GNU libc 2 or you have installed a recent copy of the GNU gettext package with the included `libintl'. INSTALL Matters =============== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. If not, the GNU `gettext' own library will be used. This library is wholly contained within this package, usually in the `intl/' subdirectory, so prior installation of the GNU `gettext' package is _not_ required. Installers may use special options at configuration time for changing the default behaviour. The commands: ./configure --with-included-gettext ./configure --disable-nls will respectively bypass any pre-existing `gettext' to use the internationalizing routines provided within this package, or else, _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl.a' file and will decide to use this. This might be not what is desirable. You should use the more recent version of the GNU `gettext' library. I.e. if the file `intl/VERSION' shows that the library which comes with this package is more recent, you should use ./configure --with-included-gettext to prevent auto-detection. The configuration process will not test for the `catgets' function and therefore it will not be used. The reason is that even an emulation of `gettext' on top of `catgets' could not provide all the extensions of the GNU `gettext' library. Internationalized packages have usually many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. Using This Package ================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your country by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. Translating Teams ================= For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `translation@iro.umontreal.ca' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skill are praised more than programming skill, here. Available Packages ================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of August 2002. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files be bg ca cs da de el en eo es et fi fr +----------------------------------------+ a2ps | [] [] [] [] | ap-utils | | bash | [] [] [] [] | bfd | [] [] | binutils | [] [] | bison | [] [] [] [] | clisp | | clisp | [] [] [] [] | clisplow | | cpio | [] [] [] [] | darkstat | () | diffutils | [] [] [] [] [] [] | enscript | [] [] | error | [] [] [] | fetchmail | [] () [] [] [] () | fileutils | [] [] [] [] [] | findutils | [] [] [] [] [] [] | flex | [] [] [] [] [] | gas | [] [] | gawk | [] [] [] | gcal | [] [] | gcc | [] [] | gettext | [] [] [] [] [] | gnupg | [] [] [] [] [] [] [] | gprof | [] [] | gpsdrive | () () () () () | grep | [] [] [] [] [] [] [] [] | gretl | [] | gthumb | () () () | hello | [] [] [] [] [] [] [] [] [] | id-utils | [] [] [] | indent | [] [] [] [] [] | jpilot | () [] [] [] | jwhois | [] [] | kbd | [] [] [] | ld | [] [] | libc | [] [] [] [] [] [] [] [] | libiconv | [] [] [] [] | lifelines | () () | lilypond | [] [] | lingoteach | [] [] | lingoteach_lessons| () () | lynx | [] [] [] [] [] | m4 | [] [] [] [] [] | make | [] [] [] [] | man-db | [] () () [] () () | mysecretdiary | [] [] [] | nano | [] () [] [] [] [] | nano_1_0 | [] () [] [] [] [] | opcodes | [] [] [] | parted | [] [] [] [] [] | ptx | [] [] [] [] [] [] [] | python | | recode | [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] [] | sh-utils | [] [] [] [] | sharutils | [] [] [] [] [] [] [] | sketch | () [] () | soundtracker | [] [] [] | sp | [] | tar | [] [] [] [] [] [] | texinfo | [] [] [] [] [] | textutils | [] [] [] [] [] | util-linux | [] [] [] [] [] [] | vorbis-tools | [] | wastesedge | | wdiff | [] [] [] [] [] [] | wget | [] [] [] [] [] [] [] [] [] [] | +----------------------------------------+ be bg ca cs da de el en eo es et fi fr 0 2 19 10 30 44 9 1 12 44 17 6 53 gl he hr hu id it ja ko lv nb nl nn +-------------------------------------+ a2ps | () () [] | ap-utils | | bash | [] | bfd | [] | binutils | [] | bison | [] [] [] [] | clisp | | clisp | [] | clisplow | | cpio | [] [] [] [] | darkstat | | diffutils | [] [] [] [] [] | enscript | [] [] | error | [] | fetchmail | [] | fileutils | [] [] [] | findutils | [] [] [] [] [] [] [] [] | flex | [] | gas | | gawk | [] | gcal | | gcc | [] | gettext | [] [] | gnupg | [] [] [] [] | gprof | [] | gpsdrive | [] () () | grep | [] [] [] [] [] [] [] | gretl | | gthumb | () () | hello | [] [] [] [] [] [] [] [] [] [] [] [] | id-utils | [] [] | indent | [] [] [] [] | jpilot | () () | jwhois | [] [] | kbd | | ld | | libc | [] [] [] [] | libiconv | [] [] [] | lifelines | | lilypond | [] | lingoteach | [] | lingoteach_lessons| | lynx | [] [] [] [] | m4 | [] [] [] [] | make | [] [] [] [] [] [] | man-db | () () | mysecretdiary | [] | nano | [] [] [] [] | nano_1_0 | [] [] [] [] [] | opcodes | [] [] | parted | [] [] [] | ptx | [] [] [] [] [] | python | | recode | [] [] [] | sed | [] [] [] [] [] [] [] [] | sh-utils | [] [] [] | sharutils | [] [] [] | sketch | () | soundtracker | [] [] | sp | | tar | [] [] [] [] [] [] | texinfo | [] [] [] | textutils | [] [] [] [] | util-linux | () [] | vorbis-tools | [] | wastesedge | | wdiff | [] [] [] | wget | [] [] [] [] [] [] | +-------------------------------------+ gl he hr hu id it ja ko lv nb nl nn 23 9 12 19 16 13 26 9 1 7 19 3 no pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW +----------------------------------------------+ a2ps | () () () [] [] [] [] [] | 10 ap-utils | () | 0 bash | [] | 6 bfd | [] [] | 5 binutils | [] [] | 5 bison | [] [] [] [] | 12 clisp | | 0 clisp | | 5 clisplow | | 0 cpio | [] [] [] [] | 12 darkstat | [] [] () () | 2 diffutils | [] [] [] [] [] [] | 17 enscript | [] [] [] [] | 8 error | [] [] [] | 7 fetchmail | () () [] | 6 fileutils | [] [] [] [] [] [] | 14 findutils | [] [] [] [] [] [] [] | 21 flex | [] [] [] | 9 gas | [] | 3 gawk | [] [] | 6 gcal | [] [] | 4 gcc | [] | 4 gettext | [] [] [] [] [] [] | 13 gnupg | [] [] [] | 14 gprof | [] [] | 5 gpsdrive | [] [] | 3 grep | [] [] [] [] [] | 20 gretl | | 1 gthumb | () () [] | 1 hello | [] [] [] [] [] [] [] | 28 id-utils | [] [] [] [] | 9 indent | [] [] [] [] [] | 14 jpilot | () () [] [] | 5 jwhois | [] () () [] [] | 7 kbd | [] [] | 5 ld | [] [] | 4 libc | [] [] [] [] [] [] | 18 libiconv | [] [] [] [] [] | 12 lifelines | [] | 1 lilypond | [] | 4 lingoteach | [] [] | 5 lingoteach_lessons| () | 0 lynx | [] [] [] [] | 13 m4 | [] [] [] [] | 13 make | [] [] [] [] [] | 15 man-db | | 3 mysecretdiary | [] [] [] | 7 nano | [] [] [] [] | 13 nano_1_0 | [] [] [] [] | 14 opcodes | [] [] [] | 8 parted | [] [] [] [] | 12 ptx | [] [] [] [] [] [] [] | 19 python | | 0 recode | [] [] [] [] [] [] | 15 sed | [] [] [] [] [] [] | 24 sh-utils | [] [] | 9 sharutils | [] [] [] [] | 14 sketch | [] () [] | 4 soundtracker | [] | 6 sp | | 1 tar | [] [] [] [] [] [] [] | 19 texinfo | [] [] | 10 textutils | [] [] [] [] [] | 14 util-linux | [] [] [] | 10 vorbis-tools | [] | 3 wastesedge | | 0 wdiff | [] [] [] [] [] | 14 wget | [] [] [] [] [] [] [] [] | 24 +----------------------------------------------+ 37 teams no pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW 68 domains 4 15 2 28 28 12 10 49 43 4 1 9 609 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If August 2002 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'. Using `gettext' in new packages =============================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle to use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `translation@iro.umontreal.ca' to make the `.pot' files available to the translation teams. lincity-1.13.1/COPYING0000644000175000017500000004307007340321623011230 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy 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 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., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. lincity-1.13.1/Makefile.am0000644000175000017500000001647110071466644012246 00000000000000## Process this file with automake to produce Makefile.in AUTOMAKE_OPTIONS = foreign ### DEFS = @DEFS@ -DLIBDIR=\"${pkgdatadir}\" DEFS = @DEFS@ X_DEFS = -DLC_X11=1 -Wall SVGA_DEFS = -DSVGALIB=1 SUBDIRS = m4 intl po modules ## (deleted) ## acconfig.h \ ## config.h \ noinst_HEADERS = \ cliglobs.h \ common.h confw32.h \ engglobs.h engine.h fileutil.h \ generic.h geometry.h dialbox.h \ lcconfig.h \ lchelp.h \ lcintl.h lcstring.h lclib.h\ lctypes.h lcwin32.h \ lcx11.h lcsvga.h \ ldsvgui.h ldsvguts.h \ lin-city.h lintypes.h market.h \ module_buttons.h \ mouse.h mps.h pbar.h \ picedit.h pixmap.h power.h \ readpng.h \ resource.h screen.h \ shrglobs.h stats.h \ simulate.h timer.h transport.h \ typeinit.h xpicedit.h modules.h # Directories that need to have CVS and ca subdirectories removed LC_DISTDIRS = \ help icons messages \ old.Makefiles opening tools ##EXTRA_DIST = config.rpath $(LC_DISTDIRS) \ EXTRA_DIST = $(LC_DISTDIRS) \ colour.pal \ lcwin32.c winmain.c \ lincity.ico small.ico lincity.rc \ CHANGES COPYRIGHT Acknowledgements \ config.sh \ README.profiling \ lincity.6 man_MANS = lincity.6 ## pkgdata_DATA = help/* icons/* messages/* messages/ca/* opening/* colour.pal ## pkgdata_DATA = help/* icons/* messages/* opening/* colour.pal ## nobase_pkgdata_DATA = help/* icons/* messages/ca/* messages/* opening/* colour.pal nobase_pkgdata_DATA = help/* icons/* messages/* opening/* colour.pal ############################################################################ ## INSTALL SCRIPTS ############################################################################ ## There are three "non-standard" things that I need to do here. ## 1) I need to make the directories .../share/lincity/help, icons, ## messages and opening because automake is not smart enough to do this. ## 2) I need to check to see if the user chose to make the optionally ## compiled picedit/xpicedit, and install these. ## 3) I need to set the suid bit on lincity/picedit. ############################################################################ ########### GCS Jan 19, 2003 ############################################################################ ## 1) No longer need to make the directories. Automake now supports the ## "nobase" option. ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/help ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/icons ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/messages ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/opening ## 2) Removed the following line from install-exec-local: ## $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/messages/ca ############################################################################ install-exec-local: @list='$(EXTRA_PROGRAMS)'; for p in $$list; do \ if test -f $$p; then \ echo " $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ else :; fi; \ done; \ if test -f $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; then \ chown root $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ chmod 4755 $(DESTDIR)$(bindir)/`echo lincity|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ fi ## Uninstall also removes the extra programs and directories uninstall-local: list='$(EXTRA_PROGRAMS)'; for p in $$list; do \ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ done rm -rf $(DESTDIR)$(pkgdatadir) ############################################################################ ## DISTRIBUTION BUILD SCRIPTS ## -- ## This is needed to keep the CVS directories from being installed in ## my subdirectories. ## -- ## GCS Jan 19, 2003 Added a check for deleting the "ca" subdirectory ## Added lowercase "cvs" directory (when copied from dos) ## (removed this!) ## cp -r $$p $(distdir)/$$p; \ ## (modified this) # if test -d $(distdir)/$$p/CVS ; then \ # echo "rm -rf $(distdir)/$$p/CVS" ; \ # rm -rf $(distdir)/$$p/CVS ; \ # echo "rm -rf $(distdir)/$$p/*/CVS" ; \ # rm -rf $(distdir)/$$p/*/CVS ; \ # echo "rm -rf $(distdir)/$$p/*/*/CVS" ; \ # rm -rf $(distdir)/$$p/*/*/CVS ; \ # echo "rm -rf $(distdir)/$$p/cvs" ; \ # rm -rf $(distdir)/$$p/cvs ; \ # echo "rm -rf $(distdir)/$$p/*/cvs" ; \ # rm -rf $(distdir)/$$p/*/cvs ; \ # echo "rm -rf $(distdir)/$$p/*/*/cvs" ; \ # rm -rf $(distdir)/$$p/*/*/cvs ; \ # else :; fi; \ ## ## echo "Erasing CVS directories..." \ ############################################################################ dist-hook: @list='$(LC_DISTDIRS)'; for p in $$list; do \ rm -rf `find $(distdir)/$$p -name CVS -print` ; \ rm -rf `find $(distdir)/$$p -name cvs -print` ; \ rm -rf `find $(distdir)/$$p -name ca -print` ; \ done ############################################################################ ## PROGRAM BUILD SCRIPTS ############################################################################ ## These executables might not be built EXTRA_PROGRAMS = xlincity lincity xpicedit picedit EXTRA_LTLIBRARIES = liblcx.la liblcsvga.la X_PROGS: xlincity$(EXEEXT) SVGA_PROGS: lincity$(EXEEXT) LCSERVER_PROGS: lcserver$(EXEEXT) LCX_LIBS: liblcx.la LCSVGA_LIBS: liblcsvga.la ## These executables are always built bin_PROGRAMS = @PROGS@ lib_LTLIBRARIES = @LCLIBS@ ## Note: If the source file makes use of any graphic routines, it should ## be listed under gui_SOURCES, otherwise its safe for engine_SOURCES ## XXX: fileutil.c uses HandleError, a platform specific function, yet ## its compiled without appropriate -Ds. Fixme post 1.13.1 gui_SOURCES = ldsvgui.c splash.c lchelp.c main.c mouse.c mps.c screen.c \ pixmap.c cliglobs.c geometry.c pbar.c module_buttons.c \ dialbox.c engine_SOURCES = lclib.c power.c ldsvguts.c engine.c transport.c market.c \ simulate.c shrtypes.c lintypes.c readpng.c timer.c fileutil.c \ shrglobs.c stats.c liblcx_la_SHORTNAME = lcx liblcx_la_SOURCES = $(gui_SOURCES) lcx11.c liblcx_la_LIBADD = @X_LIBS@ -lXext -lX11 -lpng -lz -lm liblcx_la_CPPFLAGS = $(X_DEFS) liblcsvga_la_SHORTNAME = lcsvga liblcsvga_la_SOURCES = $(gui_SOURCES) lcsvga.c liblcsvga_la_LIBADD = @SVGA_LIBS@ -lvgagl -lvga -lpng -lz -lm liblcsvga_la_CPPFLAGS = $(SVGA_DEFS) lincity_SOURCES = $(engine_SOURCES) lincity_DEPENDENCIES = LCSVGA_LIBS modules/libmodules.la lincity_LDADD = liblcsvga.la modules/libmodules.la xlincity_SOURCES = $(engine_SOURCES) xlincity_DEPENDENCIES = LCX_LIBS modules/libmodules.la xlincity_LDADD = liblcx.la modules/libmodules.la ## ----- xpicedit ----- xpicedit_SOURCES = EXTRA_xpicedit_SOURCES = picedit.c xpicedit_LDADD = x_picedit.o -lXext -lX11 -lm ## ----- picedit ----- picedit_SOURCES = EXTRA_picedit_SOURCES = picedit.c picedit_LDADD = vga_picedit.o -lvgagl -lvga -lm ## ----------------- PICEDIT RULES ------------------ x_picedit.o: picedit.c $(COMPILE) $(X_DEFS) -o x_picedit.o -c picedit.c vga_picedit.o: picedit.c $(COMPILE) $(X_DEFS) -o vga_picedit.o -c picedit.c ACLOCAL_AMFLAGS = -I m4 lincity-1.13.1/TODO0000644000175000017500000000646010067211551010665 00000000000000 KNOWN BUGS and MISFEATURES in version 1.12.0 o I found inconsistent behavior with using the middle mouse button (mmb). Clicking with mmb on mini-map causes the main win to jump, and then jump back before scrolling. Clicking mmb on other displays (finance or unemployment graph) advances the display. Probably only lmb should advance display. Also, I'm not sure if mmb should initiate main win scrolling if the click was made outside the main win. o No middle mouse button support in SVGA/Win32 version. o Square cursor flashes too much in SVGA version. o Bits of the square cursor are not refreshed from the main win frame. For example, this happens with pollution overlay turned on. This problem is more pronouced in SVGA version. o Help gets screwed up by game-related keystrokes. Consider also pressing "Enter" when mouse is over a button on the opening screen. o Population pbar is wrong when starting new game, since game starts with different number of people for random villiage and blank screen this is difficult to fix. GCS: I verified that this still exists, Apr 5, 2003. o There still seems to be a problem with putting multi-transport off the bottom of the screen. For example, resources can wrap-around from bottom to top. To reproduce, put a horizontal bit of track across the top row. Then, drag track from the city down off past the edge of the main screen (you might need to do this a few times). Now check the track on the top, and you will see goods, jobs, etc flowing off the bottom into the top. (GCS July 26, 2003) cannot reproduce in svga version, but definitely exists in win32 version. o Right click outside of help should exit help. o Re-remove c++ style comments. o Since cvs doesn't store timestamps, need to manually set timestamps to build from cvs. For now, workaround using fix-timestamps.sh. o Main screen should scroll when moving mouse outside of main window during multi-transport. o Miniscreen colors could be improved. o xpicedit doesn't seem to work on 24 bit color machines. o When a tip burns up, there is no pollution at all, and the tip disappears. Tip should stay, should cause pollution(?). o Technology indicator sometimes shows both a rise and fall. This happens after loading a game, old indicator remains as a ghost. * Fixed by Corey? o There is a display bug, where a small block is left when exiting a help page. The only happens when part of the mouse cursor is in the main window during the re-draw. It quicky disappears when the main window is scrolled or updated. I've seen this display bug also happens when refreshing after modal dialog boxes. o Need to support -display and other XWindows command line option. o Need to clean up write of gzipped files to use popen(). o Why don't we use a recognized file format for the splash screen? o Slight streaking in monthgraph. o Like to have info pages and/or printed documentation. o Animations for paths/roads/railroads. o Coal Power Station does not accurately report actual power produced. o More than 100% of the population can be starving. REQUESTED FEATURES o Autosaves o Multi-buldozing o Auto-upgrading o Move code into src subdirectory lincity-1.13.1/acinclude.m40000644000175000017500000000116407340321624012365 00000000000000dnl FC_EXPAND_DIR(VARNAME, DIR) dnl expands occurrences of ${prefix} and ${exec_prefix} in the given DIR, dnl and assigns the resulting string to VARNAME dnl example: FC_EXPAND_DIR(LOCALEDIR, "$datadir/locale") dnl eg, then: AC_DEFINE_UNQUOTED(LOCALEDIR, "$LOCALEDIR") dnl by Alexandre Oliva dnl from http://www.cygnus.com/ml/automake/1998-Aug/0040.html dnl GCS: I stole this from freeciv. AC_DEFUN(FC_EXPAND_DIR, [ $1=$2 $1=`( test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" eval echo \""[$]$1"\" )` ]) lincity-1.13.1/aclocal.m40000644000175000017500000114464210067655655012064 00000000000000# generated automatically by aclocal 1.7.9 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This file 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. dnl FC_EXPAND_DIR(VARNAME, DIR) dnl expands occurrences of ${prefix} and ${exec_prefix} in the given DIR, dnl and assigns the resulting string to VARNAME dnl example: FC_EXPAND_DIR(LOCALEDIR, "$datadir/locale") dnl eg, then: AC_DEFINE_UNQUOTED(LOCALEDIR, "$LOCALEDIR") dnl by Alexandre Oliva dnl from http://www.cygnus.com/ml/automake/1998-Aug/0040.html dnl GCS: I stole this from freeciv. AC_DEFUN(FC_EXPAND_DIR, [ $1=$2 $1=`( test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix="${prefix}" eval echo \""[$]$1"\" )` ]) # Do all the work for Automake. -*- Autoconf -*- # 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. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # 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 # 02111-1307, USA. # serial 10 AC_PREREQ([2.54]) # Autoconf 2.50 wants to disallow AM_ names. We explicitly allow # the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])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 # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_MISSING_PROG(AMTAR, tar) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ]) ]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $1 | $1:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # 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.7"]) # 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.7.9])]) # Helper functions for option handling. -*- Autoconf -*- # Copyright 2001, 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 # 02111-1307, USA. # serial 2 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # # Check to make sure that the build environment is sane. # # Copyright 1996, 1997, 2000, 2001 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 # 02111-1307, USA. # serial 3 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # 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 conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t $srcdir/configure conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $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]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # -*- Autoconf -*- # Copyright 1997, 1999, 2000, 2001 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 # 02111-1307, USA. # serial 3 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # AM_AUX_DIR_EXPAND # Copyright 2001 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 # 02111-1307, USA. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. # Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50]) AC_DEFUN([AM_AUX_DIR_EXPAND], [ # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. # Copyright 2001 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 # 02111-1307, USA. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl install_sh=${install_sh-"$am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # AM_PROG_INSTALL_STRIP # Copyright 2001 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 # 02111-1307, USA. # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # -*- Autoconf -*- # Copyright (C) 2003 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 # 02111-1307, USA. # serial 1 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # serial 5 -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003 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 # 02111-1307, USA. # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c : > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; none) break ;; esac # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # (even with -Werror). So we grep stderr for any message # that says an option was ignored. if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking Speeds up one-time builds --enable-dependency-tracking Do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH]) ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright 1999, 2000, 2001, 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 # 02111-1307, USA. #serial 2 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # So let's grep whole file. if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue # Extract the definition of DEP_FILES from the Makefile without # running `make'. DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` test -z "$DEPDIR" && continue # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n -e '/^U = / s///p' < "$mf"` test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" # We invoke sed twice because it is the simplest approach to # changing $(DEPDIR) to its actual value in the expansion. for file in `sed -n -e ' /^DEP_FILES = .*\\\\$/ { s/^DEP_FILES = // :loop s/\\\\$// p n /\\\\$/ b loop p } /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003 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 # 02111-1307, USA. # serial 2 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright 1997, 2000, 2001 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 # 02111-1307, USA. # serial 5 AC_PREREQ(2.52) # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE]) AC_SUBST([$1_FALSE]) if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]) fi])]) # isc-posix.m4 serial 2 (gettext-0.11.2) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # This file is not needed with autoconf-2.53 and newer. Remove it in 2005. # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro # because gettext's gettext.m4 (distributed in the automake package) # still uses it. Otherwise, the use in gettext.m4 makes autoheader # give these diagnostics: # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX undefine([AC_ISC_POSIX]) AC_DEFUN([AC_ISC_POSIX], [ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) ] ) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 47 AC_PROG_LIBTOOL # Debian $Rev: 203 $ # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except M$VC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" ;; *) old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'`; fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null && echo_test_string="`eval $cmd`" && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case "`/usr/bin/file conftest.o`" in *32-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s conftest.err; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD else $2=yes fi fi $rm conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while (test "X"`$CONFIG_SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # -------------------- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ------------------------------------------------------------------ AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_unknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then LDFLAGS="$LDFLAGS $link_static_flag" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out printf "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test ! -s out/conftest.err; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)"="Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix4* | aix5*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi4*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` else sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; kfreebsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; freebsd*) objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; *) # from 3.2 on shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case "$host_cpu" in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`$SED -e 's/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g' /etc/ld.so.conf | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; knetbsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='GNU ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos need_lib_prefix=no need_version=yes library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; sco3.2v5*) version_type=osf soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && test "X$CXX" != "Xno"; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 dll's AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- #- set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognise shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognise a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--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([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl 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 $CC]) 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. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname 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(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_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 `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case "$host_cpu" in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' else lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; sco3.2v5*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/${ac_tool_prefix}nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac esac fi done IFS="$lt_save_ifs" test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that LIBLTDL # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If # DIRECTORY is not provided, it is assumed to be `libltdl'. LIBLTDL will # be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and # top_srcdir appropriately in the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that LIBLTDL # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If # DIRECTORY is not provided and an installed libltdl is not found, it is # assumed to be `libltdl'. LIBLTDL will be prefixed with '${top_builddir}/' # and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single # quotes!). If your package is not flat and you're not using automake, # define top_builddir and top_srcdir appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # -------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}\n' _LT_AC_SYS_COMPILER # # Check for any special shared library compilation flags. # _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)= if test "$GCC" = no; then case $host_os in sco3.2v5*) _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf' ;; esac fi if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries]) if echo "$old_CC $old_CFLAGS " | grep "[[ ]]$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[ ]]" >/dev/null; then : else AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure]) _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no fi fi # # Check to make sure the static flag actually works. # AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), $_LT_AC_TAGVAR(lt_prog_compiler_static, $1), [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF($1) # Report which librarie types wil actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case "$host_os" in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix4* | aix5*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; darwin* | rhapsody*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no case "$host_os" in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' ;; esac fi ;; esac output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. ac_ext=cc # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;\n" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) _LT_AC_TAGVAR(always_export_symbols, $1)=yes # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds it's shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no case "$host_os" in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; dgux*) case $cc_basename in ec++) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | kfreebsd*-gnu) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then case "$host_cpu" in hppa*64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; *) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case "$host_cpu" in hppa*64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC) case "$host_cpu" in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case "$host_cpu" in ia64*|hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; irix5* | irix6*) case $cc_basename in CC) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc) # Intel C++ with_gnu_ld=yes _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; cxx) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; osf3*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry $objdir/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sco*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no case $cc_basename in CC) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; sunos4*) case $cc_basename in CC) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system # linker. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[[LR]]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' fi ;; esac ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; tandem*) case $cc_basename in NCC) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 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 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. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation ? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform the above into a raw symbol and a C symbol. symxfrm='\1 \2\3 \3' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris* | sysv5*) symcode='[[BDRT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -f conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix4* | aix5*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; dgux*) case $cc_basename in ec++) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | kfreebsd*-gnu) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux*) case $cc_basename in KCC) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; cxx) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | knetbsd*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; sco*) case $cc_basename in CC) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; *) ;; esac ;; solaris*) case $cc_basename in CC) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; unixware*) ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case "$host_cpu" in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux*) case $CC in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; sco3.2v5*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case "$host_os" in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix4* | aix5*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; linux*) _LT_AC_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else ld_shlibs=no fi ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris* | sysv5*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; linux*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_cmds, $1)="$tmp_archive_cmds" supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$tmp_archive_cmds" fi _LT_AC_TAGVAR(link_all_deplibs, $1)=no else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = yes; then runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$link_static_flag"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=yes else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # -bexpall does not export symbols beginning with underscore (_) _LT_AC_TAGVAR(always_export_symbols, $1)=yes # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds it's shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi4*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) if test "$GXX" = yes ; then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no case "$host_os" in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' ;; esac fi ;; esac lt_int_apple_cc_single_mod=no output_verbose_link_cmd='echo' if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then lt_int_apple_cc_single_mod=yes fi if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' fi _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's if test "X$lt_int_apple_cc_single_mod" = Xyes ; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' fi _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | kfreebsd*-gnu) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case "$host_cpu" in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;; esac fi if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; *) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; sco3.2v5*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4.2uw2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no hardcode_runpath_var=yes runpath_var=LD_RUN_PATH ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' fi runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv5*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' # $CC -shared without GNU ld will not create a library from C++ # object files and a static libstdc++, better avoid it by now _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && break cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done SED=$lt_cv_path_SED ]) AC_MSG_RESULT([$SED]) ]) # gettext.m4 serial 17 (gettext-0.11.5) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2002. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define(gt_included_intl, ifelse([$1], [external], [no], [yes])) define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. dnl Add a version number to the cache macros. define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, [AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no)]) if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], gt_cv_func_gnugettext_libintl, [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], gt_cv_func_gnugettext_libintl=yes, gt_cv_func_gnugettext_libintl=no) dnl Now see whether libintl exists and depends on libiconv. if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext_libintl=yes ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if test "$gt_cv_func_gnugettext_libc" = "yes" \ || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ && test "$PACKAGE" != gettext; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. INTLOBJS="\$(GETTOBJS)" BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE(HAVE_GETTEXT, 1, [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATOBJEXT) AC_SUBST(INTLOBJS) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST(DATADIRNAME) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST(INSTOBJEXT) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST(GENCAT) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST(INTLLIBS) dnl Make all documented variables known to autoconf. AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) AC_SUBST(POSUB) ]) dnl Checks for all prerequisites of the po subdirectory, dnl except for USE_NLS. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) dnl Search for GNU xgettext 0.11 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU msgfmt. if test "$GMSGFMT" != ":"; then dnl If it is no GNU msgfmt we define it as : so that the dnl Makefiles still can work. if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` AC_MSG_RESULT( [found $GMSGFMT program is not GNU msgfmt; ignore it]) GMSGFMT=":" fi fi dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is no GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po fi AC_OUTPUT_COMMANDS([ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' fi case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= GMOFILES= UPDATEPOFILES= DUMMYPOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it # from automake. eval 'ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. AC_DEFUN([AM_INTL_SUBDIR], [ AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([AC_ISC_POSIX])dnl AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_C_CONST])dnl AC_REQUIRE([AC_C_INLINE])dnl AC_REQUIRE([AC_TYPE_OFF_T])dnl AC_REQUIRE([AC_TYPE_SIZE_T])dnl AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl AC_REQUIRE([jm_GLIBC21])dnl AC_REQUIRE([gt_INTDIV0])dnl AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl AC_REQUIRE([gt_INTTYPES_PRI])dnl AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h]) AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next]) AM_ICONV AM_LANGINFO_CODESET if test $ac_cv_header_locale_h = yes; then AM_LC_MESSAGES fi dnl intl/plural.c is generated from intl/plural.y. It requires bison, dnl because plural.y uses bison specific features. It requires at least dnl bison-1.26 because earlier versions generate a plural.c that doesn't dnl compile. dnl bison is only needed for the maintainer (who touches plural.y). But in dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put dnl the rule in general Makefile. Now, some people carelessly touch the dnl files or have a broken "make" program, hence the plural.c rule will dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not dnl present or too old. AC_CHECK_PROGS([INTLBISON], [bison]) if test -z "$INTLBISON"; then ac_verc_fail=yes else dnl Found it, now check the version. AC_MSG_CHECKING([version of bison]) changequote(<<,>>)dnl ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) changequote([,])dnl ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac AC_MSG_RESULT([$ac_prog_version]) fi if test $ac_verc_fail = yes; then INTLBISON=: fi ]) AC_DEFUN([AM_MKINSTALLDIRS], [ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but $(top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) # lib-prefix.m4 serial 1 (gettext-0.11) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. 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_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*) 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 3 (gettext-0.11.3) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. 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, dnl sys_lib_search_path_spec, sys_lib_dlsearch_path_spec. AC_DEFUN([AC_LIB_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" sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec" sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec" 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_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*) 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*) 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 1 (gettext-0.11) dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. 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. if $LD -v 2>&1 &5; then acl_cv_prog_gnu_ld=yes else acl_cv_prog_gnu_ld=no fi]) 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 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. if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then test "$with_gnu_ld" != no && break else test "$with_gnu_ld" != yes && break fi 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 ]) # iconv.m4 serial AM4 (gettext-0.11.3) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_func_iconv=yes) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_lib_iconv=yes am_cv_func_iconv=yes) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST(LIBICONV) AC_SUBST(LTLIBICONV) ]) AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL(am_cv_proto_iconv, [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([$]{ac_t:- }[$]am_cv_proto_iconv) AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, [Define as const if the declaration of iconv() needs const.]) fi ]) # progtest.m4 serial 2 (gettext-0.10.40) dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # Test for the GNU C Library, version 2.1 or newer. # From Bruno Haible. AC_DEFUN([jm_GLIBC21], [ AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, ac_cv_gnu_library_2_1, [AC_EGREP_CPP([Lucky GNU user], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif ], ac_cv_gnu_library_2_1=yes, ac_cv_gnu_library_2_1=no) ] ) AC_SUBST(GLIBC21) GLIBC21="$ac_cv_gnu_library_2_1" ] ) # intdiv0.m4 serial 1 (gettext-0.11.3) dnl Copyright (C) 2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gt_INTDIV0], [ AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], gt_cv_int_divbyzero_sigfpe, [ AC_TRY_RUN([ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } ], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, [ # Guess based on the CPU. case "$host_cpu" in alpha* | i[34567]86 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac ]) ]) case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, [Define if integer division by zero raises signal SIGFPE.]) ]) # uintmax_t.m4 serial 6 (gettext-0.11) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_PREREQ(2.13) # Define uintmax_t to `unsigned long' or `unsigned long long' # if does not exist. AC_DEFUN([jm_AC_TYPE_UINTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, [Define to unsigned long or unsigned long long if and don't define.]) fi ]) # inttypes_h.m4 serial 4 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_inttypes_h=yes, jm_ac_cv_header_inttypes_h=no)]) if test $jm_ac_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) # stdint_h.m4 serial 2 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_STDINT_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_STDINT_H], [ AC_CACHE_CHECK([for stdint.h], jm_ac_cv_header_stdint_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_stdint_h=yes, jm_ac_cv_header_stdint_h=no)]) if test $jm_ac_cv_header_stdint_h = yes; then AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) # ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40) dnl Copyright (C) 1999-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], [ AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;], [unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull;], ac_cv_type_unsigned_long_long=yes, ac_cv_type_unsigned_long_long=no)]) if test $ac_cv_type_unsigned_long_long = yes; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, [Define if you have the unsigned long long type.]) fi ]) # inttypes.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H if exists and doesn't clash with # . AC_DEFUN([gt_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h, [ AC_TRY_COMPILE( [#include #include ], [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no) ]) if test $gt_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1, [Define if exists and doesn't clash with .]) fi ]) # inttypes-pri.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. # Define PRI_MACROS_BROKEN if exists and defines the PRI* # macros to non-string values. This is the case on AIX 4.3.3. AC_DEFUN([gt_INTTYPES_PRI], [ AC_REQUIRE([gt_HEADER_INTTYPES_H]) if test $gt_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], gt_cv_inttypes_pri_broken, [ AC_TRY_COMPILE([#include #ifdef PRId32 char *p = PRId32; #endif ], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) ]) fi if test "$gt_cv_inttypes_pri_broken" = yes; then AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, [Define if exists and defines unusable PRI* macros.]) fi ]) # codeset.m4 serial AM1 (gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], [ AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, [AC_TRY_LINK([#include ], [char* cs = nl_langinfo(CODESET);], am_cv_langinfo_codeset=yes, am_cv_langinfo_codeset=no) ]) if test $am_cv_langinfo_codeset = yes; then AC_DEFINE(HAVE_LANGINFO_CODESET, 1, [Define if you have and nl_langinfo(CODESET).]) fi ]) # lcmessage.m4 serial 3 (gettext-0.11.3) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([AM_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi ]) lincity-1.13.1/compile0000755000175000017500000000576110041367741011563 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. # Copyright 1999, 2000 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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. # 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. # Usage: # compile PROGRAM [ARGS]... # `-o FOO.o' is removed from the args passed to the actual compile. # Usage statement added by Billy Biggs . if [ -z $1 ]; then echo "Wrapper for compilers which do not understand '-c -o'." echo "usage: compile PROGRAM [ARGS]..." echo "'-o FOO.o' is removed from the args passed to the actual compile." exit 1 fi prog=$1 shift ofile= cfile= args= while test $# -gt 0; do case "$1" in -o) # configure might choose to run compile as `compile cc -o foo foo.c'. # So we do something ugly here. ofile=$2 shift case "$ofile" in *.o | *.obj) ;; *) args="$args -o $ofile" ofile= ;; esac ;; *.c) cfile=$1 args="$args $1" ;; *) args="$args $1" ;; esac shift done if test -z "$ofile" || test -z "$cfile"; then # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # `.c' file was seen then we are probably linking. That is also # ok. exec "$prog" $args fi # Name of file we expect compiler to create. cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'` # Create the lock directory. # Note: use `[/.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d while true; do if mkdir $lockdir > /dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir $lockdir; exit 1" 1 2 15 # Run the compile. "$prog" $args status=$? if test -f "$cofile"; then mv "$cofile" "$ofile" fi rmdir $lockdir exit $status lincity-1.13.1/config.guess0000644000175000017500000012001107627067167012523 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-11-30' # 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 . # Please send patches to . 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 ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 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. # This shell variable is my proudest work .. or something. --bje set_cc_for_build='tmpdir=${TMPDIR-/tmp}/config-guess-$$ ; (old=`umask` && umask 077 && mkdir $tmpdir && umask $old && unset old) || (echo "$me: cannot create $tmpdir" >&2 && exit 1) ; dummy=$tmpdir/dummy ; files="$dummy.c $dummy.o $dummy.rel $dummy" ; trap '"'"'rm -f $files; rmdir $tmpdir; exit 1'"'"' 1 2 15 ; 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 ; rm -f $files ; 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 ; unset files' # 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 ;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; arc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hp300:OpenBSD:*:*) echo m68k-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 ;; pmax:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sgi:OpenBSD:*:*) echo mipseb-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sun3:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; alpha:OSF1:*:*) if test $UNAME_RELEASE = "V4.0"; then UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` fi # 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. eval $set_cc_for_build cat <$dummy.s .data \$Lformat: .byte 37,100,45,37,120,10,0 # "%d-%x\n" .text .globl main .align 4 .ent main main: .frame \$30,16,\$26,0 ldgp \$29,0(\$27) .prologue 1 .long 0x47e03d80 # implver \$0 lda \$2,-1 .long 0x47e20c21 # amask \$2,\$1 lda \$16,\$Lformat mov \$0,\$17 not \$1,\$18 jsr \$26,printf ldgp \$29,0(\$26) mov 0,\$16 jsr \$26,exit .end main EOF $CC_FOR_BUILD -o $dummy $dummy.s 2>/dev/null if test "$?" = 0 ; then case `$dummy` in 0-0) UNAME_MACHINE="alpha" ;; 1-0) UNAME_MACHINE="alphaev5" ;; 1-1) UNAME_MACHINE="alphaev56" ;; 1-101) UNAME_MACHINE="alphapca56" ;; 2-303) UNAME_MACHINE="alphaev6" ;; 2-307) UNAME_MACHINE="alphaev67" ;; 2-1307) UNAME_MACHINE="alphaev68" ;; 3-1307) UNAME_MACHINE="alphaev7" ;; esac fi rm -f $dummy.s $dummy && rmdir $tmpdir echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | 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 ;; 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_SV: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 ;; 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 /* 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'` \ && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 rm -f $dummy.c $dummy && rmdir $tmpdir 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 main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 rm -f $dummy.c $dummy && rmdir $tmpdir 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 #include 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` if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi rm -f $dummy.c $dummy && rmdir $tmpdir fi ;; esac 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 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 && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 rm -f $dummy.c $dummy && rmdir $tmpdir 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*T3D:*:*:*) echo alpha-cray-unicosmk${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 ;; 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 ;; 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:*:*) # Determine whether the default compiler uses glibc. eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #if __GLIBC__ >= 2 LIBC=gnu #else LIBC= #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` rm -f $dummy.c && rmdir $tmpdir echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} 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*:3*) echo i586-pc-interix3 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 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; ia64: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=` rm -f $dummy.c && rmdir $tmpdir 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=` rm -f $dummy.c && rmdir $tmpdir 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 ;; 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 #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 EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` rm -f $dummy.c && rmdir $tmpdir 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: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' /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[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[34]??:*: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) 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 echo i586-unisys-sysv4 exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # 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 ;; *: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:*:*) echo `uname -p`-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 ;; NSR-[DGKLNPTVW]: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 ;; 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 < # include #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 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 # 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 && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 rm -f $dummy.c $dummy && rmdir $tmpdir # 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 < 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: lincity-1.13.1/config.h.in0000644000175000017500000001733510067655723012240 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP systems. This function is required for `alloca.c' support on those systems. */ #undef CRAY_STACKSEG_END /* Define to 1 if using `alloca.c'. */ #undef C_ALLOCA /* The default value of LIBDIR. */ #undef DEFAULT_LIBDIR /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define to 1 if you have `alloca', as a function or macro. */ #undef HAVE_ALLOCA /* Define to 1 if you have and it should be used (not on Ultrix). */ #undef HAVE_ALLOCA_H /* Define to 1 if you have the header file. */ #undef HAVE_ARGZ_H /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_DIRENT_H /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the `feof_unlocked' function. */ #undef HAVE_FEOF_UNLOCKED /* Define to 1 if you have the `fgets_unlocked' function. */ #undef HAVE_FGETS_UNLOCKED /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD /* Define to 1 if you have the `getc_unlocked' function. */ #undef HAVE_GETC_UNLOCKED /* Define to 1 if you have the `getegid' function. */ #undef HAVE_GETEGID /* Define to 1 if you have the `geteuid' function. */ #undef HAVE_GETEUID /* Define to 1 if you have the `getgid' function. */ #undef HAVE_GETGID /* Define to 1 if you have the `getpagesize' function. */ #undef HAVE_GETPAGESIZE /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY /* Define to 1 if you have the `getuid' function. */ #undef HAVE_GETUID /* Define if the system has gzip. */ #undef HAVE_GZIP /* Define if you have the iconv() function. */ #undef HAVE_ICONV /* Define if exists and doesn't clash with . */ #undef HAVE_INTTYPES_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_INTTYPES_H_WITH_UINTMAX /* Define if you have and nl_langinfo(CODESET). */ #undef HAVE_LANGINFO_CODESET /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define to 1 if you have the header file. */ #undef HAVE_MALLOC_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mempcpy' function. */ #undef HAVE_MEMPCPY /* Define to 1 if you have the `mkdir' function. */ #undef HAVE_MKDIR /* Define to 1 if you have a working `mmap' system call. */ #undef HAVE_MMAP /* Define to 1 if you have the `munmap' function. */ #undef HAVE_MUNMAP /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_NDIR_H /* Define to 1 if you have the header file. */ #undef HAVE_NL_TYPES_H /* Define to 1 if you have the `popen' function. */ #undef HAVE_POPEN /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV /* Define to 1 if you have the `setenv' function. */ #undef HAVE_SETENV /* Define to 1 if you have the `setlocale' function. */ #undef HAVE_SETLOCALE /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_STDINT_H_WITH_UINTMAX /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `stpcpy' function. */ #undef HAVE_STPCPY /* Define to 1 if you have the `strcasecmp' function. */ #undef HAVE_STRCASECMP /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strtoul' function. */ #undef HAVE_STRTOUL /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_SYS_DIR_H /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_SYS_NDIR_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PARAM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the `tsearch' function. */ #undef HAVE_TSEARCH /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define if you have the unsigned long long type. */ #undef HAVE_UNSIGNED_LONG_LONG /* Define to 1 if you have the header file. */ #undef HAVE_VGA_H /* Define to 1 if you have the `__argz_count' function. */ #undef HAVE___ARGZ_COUNT /* Define to 1 if you have the `__argz_next' function. */ #undef HAVE___ARGZ_NEXT /* Define to 1 if you have the `__argz_stringify' function. */ #undef HAVE___ARGZ_STRINGIFY /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST /* Define if integer division by zero raises signal SIGFPE. */ #undef INTDIV0_RAISES_SIGFPE /* The location of the locale message files. */ #undef LOCALEDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define if exists and defines unusable PRI* macros. */ #undef PRI_MACROS_BROKEN /* The size of a `char', as computed by sizeof. */ #undef SIZEOF_CHAR /* The size of a `int', as computed by sizeof. */ #undef SIZEOF_INT /* The size of a `long', as computed by sizeof. */ #undef SIZEOF_LONG /* The size of a `short', as computed by sizeof. */ #undef SIZEOF_SHORT /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at run-time. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define to 1 if you can safely include both and . */ #undef TIME_WITH_SYS_TIME /* Version number of package */ #undef VERSION /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING /* Define to 1 if on AIX 3. System headers sometimes define this. We just want to avoid a redefinition error message. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define to `long' if does not define. */ #undef off_t /* Define to `unsigned' if does not define. */ #undef size_t /* Define to unsigned long or unsigned long long if and don't define. */ #undef uintmax_t lincity-1.13.1/config.sub0000644000175000017500000007170407627067167012204 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. timestamp='2002-11-30' # 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 . 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 ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 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* | freebsd*-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) 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] \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k \ | m32r | m68000 | m68k | m88k | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mipsisa32 | mipsisa32el \ | mipsisa64 | mipsisa64el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | ns16k | ns32k \ | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xscale | 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-* \ | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \ | clipper-* | 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-* \ | m32r-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39 | mipstx39el \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xps100-* | xscale-* | 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 ;; 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 ;; 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 ;; crds | unos) basic_machine=m68k-crds ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; 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 ;; 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 ;; mmix*) basic_machine=mmix-knuth os=-mmixware ;; 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 ;; 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) basic_machine=i686-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-*) basic_machine=i686-`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 ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; 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 ;; t3d) basic_machine=alpha-cray os=-unicos ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic4x | c4x*) basic_machine=tic4x-unknown os=-coff ;; tic54x | c54x*) basic_machine=tic54x-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 ;; 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 ;; 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 ;; 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 | sh3eb | sh4eb | sh[1234]le | sh3ele) basic_machine=sh-unknown ;; sh64) basic_machine=sh64-unknown ;; sparc | 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* | -netbsd* | -openbsd* | -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* | -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*) # 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*) 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 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -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 ;; -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 ;; -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 ;; # 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 ;; *-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 ;; -ptx*) vendor=sequent ;; -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: lincity-1.13.1/configure.ac0000644000175000017500000001046710067441654012476 00000000000000dnl Process this file with autoconf to produce a configure script. dnl Initialization AC_INIT([Lincity],[1.13.1],[lincity-users@lists.sourceforge.net],[lincity]) AC_CONFIG_SRCDIR([colour.pal]) AM_INIT_AUTOMAKE AC_ARG_WITH(gzip, [ --with-gzip use gzip]) AC_ARG_WITH(svga, [ --with-svga use svga library]) dnl Checks for programs. AC_ISC_POSIX AC_PROG_CC AC_AIX AC_PROG_MAKE_SET AC_PROG_LIBTOOL dnl Autodetect presence of gzip if eval "test x$with_gzip = x"; then AC_CHECK_PROG(with_gzip,gzip,"yes") fi if eval "test x$with_gzip = xyes"; then AC_DEFINE(HAVE_GZIP) fi dnl ------------------------------------------------------- dnl GCS: This is idiotic. The only way to expand autoconf's own dnl variables is to use the script I stole from freeciv??? dnl What if directories other than $prefix and $exec_prefix need dnl to be expanded? dnl FC_EXPAND_DIR(DEFAULT_LIBDIR,"${datadir}/lincity") dnl AC_DEFINE_UNQUOTED(DEFAULT_LIBDIR,"$DEFAULT_LIBDIR") dnl ------------------------------------------------------- FC_EXPAND_DIR(DEFAULT_LIBDIR,[${datadir}/lincity]) AC_DEFINE_UNQUOTED(DEFAULT_LIBDIR,"$DEFAULT_LIBDIR") dnl ------------------------------------------------------- dnl GCS Jan 19, 2003 dnl New autoheader stuff dnl ------------------------------------------------------- AH_TEMPLATE([DEFAULT_LIBDIR],[The default value of LIBDIR.]) AH_TEMPLATE([HAVE_GZIP],[Define if the system has gzip.]) dnl Checks for libraries. AC_PATH_XTRA dnl "$LIBS" (blank) dnl "$X_LIBS" (-L/usr/X11R6/lib) dnl "$X_PRE_LIBS" (-lSM -lICE) dnl "$X_EXTRA_LIBS" (blank) CFLAGS="$CFLAGS $X_CFLAGS -Wall" LIBS="$LIBS $X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS" dnl Checks for header files. AC_CONFIG_HEADERS([config.h]) dnl AC_HEADER_STDC([]) AC_HEADER_DIRENT AC_HEADER_TIME dnl AC_CHECK_HEADERS(string.h strings.h sys/time.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_EXEEXT AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_PROG_RANLIB dnl Checks for library functions (GCS - add 'select' to enable networking). AC_CHECK_FUNCS(gettimeofday mkdir popen) dnl If the system has X, make the X version dnl If the system has SVGA, make the SVGA version. dnl If the system has both, make both. dnl If the system has neither, exit LCLIBS="" PROGS="" AC_SUBST(LCLIBS) AC_SUBST(PROGS) if eval "test x$with_x = xyes"; then LCLIBS="$LCLIBS LCX_LIBS" else if eval "test x$with_x = x"; then AC_CHECK_LIB(X11,XOpenDisplay, LCLIBS="$LCLIBS LCX_LIBS"; PROGS="$PROGS X_PROGS") fi fi if eval "test x$with_svga = xyes"; then LCLIBS="$LCLIBS LCSVGA_LIBS" else if eval "test x$with_svga = x"; then AC_CHECK_LIB(vgagl, gl_putbox, [AC_CHECK_HEADERS(vga.h, LCLIBS="$LCLIBS LCSVGA_LIBS"; PROGS="$PROGS SVGA_PROGS")], , -lvga) fi fi if test -z "$LCLIBS"; then AC_MSG_ERROR("Found neither SVGA nor X on your system.") fi dnl ------------------------------------------------------- dnl Internationalization dnl ALL_LINGUAS="ca" AM_GNU_GETTEXT dnl ------------------------------------------------------- dnl GCS: I stole the following from freeciv dnl Why doesn't AM_GNU_GETTEXT set LIBS appropriately dnl when -lintl is required?? dnl if test "$gt_cv_func_gettext_libintl" = "yes"; then dnl LIBS="-lintl $LIBS" dnl fi dnl DATADIRNAME is generated by AM_GNU_GETTEXT; dnl note this has to match the path installed by po/Makefile FC_EXPAND_DIR(LOCALEDIR, '${prefix}/${DATADIRNAME}/locale') AC_DEFINE_UNQUOTED(LOCALEDIR, "$LOCALEDIR") dnl ------------------------------------------------------- dnl GCS May 05, 2003 dnl Newest i18n hack (gettext 11.5 ??). Sigh. dnl ------------------------------------------------------- dnl AC_MSG_WARN([libintl is $LIBINTL]) LIBS="$LIBS $LIBINTL" dnl ------------------------------------------------------- dnl GCS Jan 19, 2003 dnl New autoheader stuff dnl ------------------------------------------------------- AH_TEMPLATE([LOCALEDIR],[The location of the locale message files.]) dnl ------------------------------------------------------- dnl GCS Jan 19, 2003 dnl Remove internationalization. Pushed off to the next version. dnl ------------------------------------------------------- AC_CONFIG_FILES([Makefile intl/Makefile po/Makefile.in m4/Makefile modules/Makefile]) dnl AC_CONFIG_FILES([Makefile]) AC_OUTPUT lincity-1.13.1/depcomp0000644000175000017500000002753307612714340011561 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects # Copyright 1999, 2000 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 # 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 Alexandre Oliva . if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # `libtool' can also be set to `yes' or `no'. if test -z "$depfile"; then base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` dir=`echo "$object" | sed 's,/.*$,/,'` if test "$dir" = "$object"; then dir= fi # FIXME: should be _deps on DOS. depfile="$dir.deps/$base" fi tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. This file always lives in the current directory. # Also, the AIX compiler puts `$object:' at the start of each line; # $object doesn't have directory information. stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" outname="$stripped.o" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1="$dir.libs/$base.lo.d" tmpdepfile2="$dir.libs/$base.d" "$@" -Wc,-MD else tmpdepfile1="$dir$base.o.d" tmpdepfile2="$dir$base.d" "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi if test -f "$tmpdepfile1"; then tmpdepfile="$tmpdepfile1" else tmpdepfile="$tmpdepfile2" fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a space and a tab in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. We will use -o /dev/null later, # however we can't do the remplacement now because # `-o $object' might simply not be used IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M "$@" -o /dev/null $dashmflag | sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; -*) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the proprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 lincity-1.13.1/install-sh0000744000175000017500000001425307612714137012210 00000000000000#!/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 "$0: no input file specified" >&2 exit 1 else : fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d "$dst" ]; then instcmd=: chmodcmd="" else instcmd=$mkdirprog 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" ] || [ -d "$src" ] then : else echo "$0: $src does not exist" >&2 exit 1 fi if [ x"$dst" = x ] then echo "$0: no destination specified" >&2 exit 1 else : 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 : 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 : fi pathcomp=$pathcomp/ done fi if [ x"$dir_arg" != x ] then $doit $instcmd "$dst" && if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dst"; else : ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dst"; else : ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dst"; else : ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dst"; else : ; 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 : fi # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/#inst.$$# rmtmp=$dstdir/#rm.$$# # Trap to clean up temp files at exit. trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0 trap '(exit $?); exit' 1 2 13 15 # Move or copy the file name to the temp name $doit $instcmd "$src" "$dsttmp" && # 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 :;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dsttmp"; else :;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dsttmp"; else :;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dsttmp"; else :;fi && # Now remove or move aside any old file at destination location. We try this # two ways since rm can't unlink itself on some systems and the destination # file might be busy for other reasons. In this case, the final cleanup # might fail but the new file should still install successfully. { if [ -f "$dstdir/$dstfile" ] then $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 (exit 1); exit } else : fi } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" fi && # The final little trick to "correctly" pass the exit status to the exit trap. { (exit 0); exit } lincity-1.13.1/ltmain.sh0000644000175000017500000054701010036551343012020 00000000000000# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 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 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. basename="s,^.*/,,g" # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: progname=`echo "$progpath" | $SED $basename` modename="$progname" # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 PROGRAM=ltmain.sh PACKAGE=libtool VERSION=1.5.6 TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 203 $" # Check that we have a working $echo. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE fi # Global variables. mode=$default_mode nonopt= prev= prevopt= run= show="$echo" show_help= execute_dlfiles= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" ##################################### # Shell function definitions: # This seems to be the best place for them # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | \ sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'` if test "X$win32_nmres" = "Ximport" ; then win32_libid_type="x86 archive import" else win32_libid_type="x86 archive static" fi fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $echo $win32_libid_type } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case "$@ " in " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then $echo "$modename: unable to infer tagged configuration" $echo "$modename: specify a tag with \`--tag'" 1>&2 exit $EXIT_FAILURE # else # $echo "$modename: using $tagname tagged configuration" fi ;; esac fi } # End of Shell function definitions ##################################### # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Parse our command line options once, thoroughly. while test "$#" -gt 0 do arg="$1" shift case $arg in -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in execute_dlfiles) execute_dlfiles="$execute_dlfiles $arg" ;; tag) tagname="$arg" preserve_args="${preserve_args}=$arg" # Check whether tagname contains only valid characters case $tagname in *[!-_A-Za-z0-9,/]*) $echo "$progname: invalid tag name: $tagname" 1>&2 exit $EXIT_FAILURE ;; esac case $tagname in CC) # Don't test for the "default" C tag, as we know, it's there, but # not specially marked. ;; *) if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then taglist="$taglist $tagname" # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" else $echo "$progname: ignoring unknown tag $tagname" 1>&2 fi ;; esac ;; *) eval "$prev=\$arg" ;; esac prev= prevopt= continue fi # Have we seen a non-optional argument yet? case $arg in --help) show_help=yes ;; --version) $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP" $echo $echo "Copyright (C) 2003 Free Software Foundation, Inc." $echo "This is free software; see the source for copying conditions. There is NO" $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." exit $EXIT_SUCCESS ;; --config) ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath # Now print the configurations for the tags. for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done exit $EXIT_SUCCESS ;; --debug) $echo "$progname: enabling shell trace mode" set -x preserve_args="$preserve_args $arg" ;; --dry-run | -n) run=: ;; --features) $echo "host: $host" if test "$build_libtool_libs" = yes; then $echo "enable shared libraries" else $echo "disable shared libraries" fi if test "$build_old_libs" = yes; then $echo "enable static libraries" else $echo "disable static libraries" fi exit $EXIT_SUCCESS ;; --finish) mode="finish" ;; --mode) prevopt="--mode" prev=mode ;; --mode=*) mode="$optarg" ;; --preserve-dup-deps) duplicate_deps="yes" ;; --quiet | --silent) show=: preserve_args="$preserve_args $arg" ;; --tag) prevopt="--tag" prev=tag ;; --tag=*) set tag "$optarg" ${1+"$@"} shift prev=tag preserve_args="$preserve_args --tag" ;; -dlopen) prevopt="-dlopen" prev=execute_dlfiles ;; -*) $echo "$modename: unrecognized option \`$arg'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *) nonopt="$arg" break ;; esac done if test -n "$prevopt"; then $echo "$modename: option \`$prevopt' requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= if test -z "$show_help"; then # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link for arg do case $arg in -c) mode=compile break ;; esac done ;; *db | *dbx | *strace | *truss) mode=execute ;; *install*|cp|mv) mode=install ;; *rm) mode=uninstall ;; *) # If we have no mode, but dlfiles were specified, then do execute mode. test -n "$execute_dlfiles" && mode=execute # Just use the default operation mode. if test -z "$mode"; then if test -n "$nonopt"; then $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 else $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 fi fi ;; esac fi # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then $echo "$modename: unrecognized option \`-dlopen'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$modename --help --mode=$mode' for more information." # These modes are in order of execution frequency so that they run quickly. case $mode in # libtool compile mode compile) modename="$modename: compile" # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= for arg do case "$arg_mode" in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) if test -n "$libobj" ; then $echo "$modename: you cannot specify \`-o' more than once" 1>&2 exit $EXIT_FAILURE fi arg_mode=target continue ;; -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac lastarg="$lastarg $arg" done IFS="$save_ifs" lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; * ) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; esac base_compile="$base_compile $lastarg" done # for arg case $arg_mode in arg) $echo "$modename: you must specify an argument for -Xcompile" exit $EXIT_FAILURE ;; target) $echo "$modename: you must specify a target with \`-o'" 1>&2 exit $EXIT_FAILURE ;; *) # Get the name of the library object. [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; *.ads) xform=ads ;; *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; *.f90) xform=f90 ;; *.for) xform=for ;; *.java) xform=java ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` case $libobj in *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; *) $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 exit $EXIT_FAILURE ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -static) build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then xdir= else xdir=$xdir/ fi lobj=${xdir}$objdir/$objname if test -z "$base_compile"; then $echo "$modename: you must specify a compilation command" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi $run $rm $removelist trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" removelist="$removelist $output_obj $lockfile" trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $echo "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi $echo $srcfile > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi $run $rm "$libobj" "${libobj}T" # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then $show "$mv $output_obj $lobj" if $run $mv $output_obj $lobj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the PIC object to the libtool object file. test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then $show "$mv $output_obj $obj" if $run $mv $output_obj $obj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the non-PIC object the libtool object file. # Only append if the libtool object file exists. test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi else if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi fi build_libtool_libs=no build_old_libs=yes prefer_static_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ;; *) qarg=$arg ;; esac libtool_args="$libtool_args $qarg" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) compile_command="$compile_command @OUTPUT@" finalize_command="$finalize_command @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. compile_command="$compile_command @SYMFILE@" finalize_command="$finalize_command @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" if test ! -f "$arg"; then $echo "$modename: symbol file \`$arg' does not exist" exit $EXIT_FAILURE fi prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat $save_arg` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi done else $echo "$modename: link input file \`$save_arg' does not exist" exit $EXIT_FAILURE fi arg=$save_arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= compile_command="$compile_command $wl$qarg" finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; shrext) shrext_cmds="$arg" prev= continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 continue ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: more than one -exported-symbols argument is not allowed" exit $EXIT_FAILURE fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;; esac continue ;; -L*) dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 exit $EXIT_FAILURE fi dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) case :$dllsearchpath: in *":$dir:"*) ;; *) dllsearchpath="$dllsearchpath:$dir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-pw32* | *-*-beos*) # These systems don't actually have a C or math library (as such) continue ;; *-*-mingw* | *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs -framework System" continue esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) deplibs="$deplibs $arg" continue ;; -module) module=yes continue ;; # gcc -m* arguments should be passed to the linker via $compiler_flags # in order to pass architecture information to the linker # (e.g. 32 vs 64-bit). This may also be accomplished via -Wl,-mfoo # but this is not reliable with gcc because gcc may use -mfoo to # select a different linker, different libraries, etc, while # -Wl,-mfoo simply passes -mfoo to the linker. -m*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" if test "$with_gcc" = "yes" ; then compiler_flags="$compiler_flags $arg" fi continue ;; -shrext) prev=shrext continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) # The PATH hackery in wrapper scripts is required on Windows # in order for the loader to find any dlls it needs. $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -static) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -Wc,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Wl,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $wl$flag" linker_flags="$linker_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi done # argument parsing loop if test -n "$prev"; then $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi oldlibs= # calculate the name of the file, without its directory outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` if test "X$output_objdir" = "X$output"; then output_objdir="$objdir" else output_objdir="$output_objdir/$objdir" fi # Create the object directory. if test ! -d "$output_objdir"; then $show "$mkdir $output_objdir" $run $mkdir $output_objdir status=$? if test "$status" -ne 0 && test ! -d "$output_objdir"; then exit $status fi fi # Determine the type of output case $output in "") $echo "$modename: you must specify an output file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac case $host in *cygwin* | *mingw* | *pw32*) # don't eliminate duplications in $postdeps and $predeps duplicate_compiler_generated_deps=yes ;; *) duplicate_compiler_generated_deps=$duplicate_deps ;; esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if test "X$duplicate_deps" = "Xyes" ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 exit $EXIT_FAILURE ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 continue fi if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then library_names= old_library= case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; *) $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) if test "$deplibs_check_method" != pass_all; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because the file extensions .$libext of this argument makes me believe" $echo "*** that it is just a static archive that I should not used here." else $echo $echo "*** Warning: Linking the shared library $output against the" $echo "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else $echo "$modename: cannot find the library \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Check to see that this really is a libtool archive. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." dlname= dlopen= dlpreopen= libdir= library_names= old_library= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no # Read the .la file case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then $echo "$modename: \`$lib' is not a convenience library" 1>&2 exit $EXIT_FAILURE fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 abs_ladir="$ladir" fi ;; esac laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then $echo "$modename: warning: library \`$lib' was moved." 1>&2 dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { test "$prefer_static_libs" = no || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var"; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; *) temp_rpath="$temp_rpath $dir" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically if test -n "$library_names" && { test "$prefer_static_libs" = no || test -z "$old_library"; }; then if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi # This is a shared library # Warn about portability, can't link against -module's on # some systems (darwin) if test "$shouldnotlink" = yes && test "$pass" = link ; then $echo if test "$linkmode" = prog; then $echo "*** Warning: Linking the executable $output against the loadable module" else $echo "*** Warning: Linking the shared library $output against the loadable module" fi $echo "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names realname="$2" shift; shift libname=`eval \\$echo \"$libname_spec\"` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw*) major=`expr $current - $age` versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" soname=`$echo $soroot | ${SED} -e 's/^.*\///'` newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else $show "extracting exported symbol list from \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$extract_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else $show "generating import library for \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$old_archive_from_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5* ) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a module then we can not link against # it, someone is ignoring the new warnings I added if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" >/dev/null ; then $echo "** Warning, lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $echo $echo "** And there doesn't seem to be a static archive available" $echo "** The link will probably fail, sorry" else add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case "$libdir" in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then $echo "$modename: configuration error: unsupported hardcode properties" exit $EXIT_FAILURE fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && \ test "$hardcode_minus_L" != yes && \ test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case "$libdir" in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $echo $echo "*** Warning: This system can not link to static lib archive $lib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $echo "*** But as you try to build a module library, libtool will still create " $echo "*** a static module, that should work as long as the dlopening application" $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else convenience="$convenience $dir/$old_library" old_convenience="$old_convenience $dir/$old_library" deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do case $deplib in -L*) path="$deplib" ;; *.la) dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$deplib" && dir="." # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" fi ;; esac if grep "^installed=no" $deplib > /dev/null; then path="$absdir/$objdir" else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi if test "$absdir" != "$libdir"; then $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 fi path="$absdir" fi depdepl= case $host in *-*-darwin*) # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" fi # do not add paths which are already there case " $newlib_search_path " in *" $path "*) ;; *) newlib_search_path="$newlib_search_path $path";; esac fi path="" ;; *) path="-L$path" ;; esac ;; -l*) case $host in *-*-darwin*) # Again, we only want to link against shared libraries eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` for tmp in $newlib_search_path ; do if test -f "$tmp/lib$tmp_libs.dylib" ; then eval depdepl="$tmp/lib$tmp_libs.dylib" break fi done path="" ;; *) continue ;; esac ;; *) continue ;; esac case " $deplibs " in *" $depdepl "*) ;; *) deplibs="$depdepl $deplibs" ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$deplibs $path" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 fi if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 fi # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) if test "$module" = no; then $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 exit $EXIT_FAILURE else $echo $echo "*** Warning: Linking the shared library $output against the non-libtool" $echo "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi if test "$dlself" != no; then $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 fi set dummy $rpath if test "$#" -gt 2; then $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 fi install_libdir="$2" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 fi else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 IFS="$save_ifs" if test -n "$8"; then $echo "$modename: too many parameters to \`-version-info'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$2" number_minor="$3" number_revision="$4" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) current=`expr $number_major + $number_minor - 1` age="$number_minor" revision="$number_minor" ;; esac ;; no) current="$2" revision="$3" age="$4" ;; esac # Check that each of the things are valid numbers. case $current in 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $revision in 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $age in 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac if test "$age" -gt "$current"; then $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header major=.`expr $current - $age` versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current"; ;; irix | nonstopux) major=`expr $current - $age + 1` case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do iface=`expr $revision - $loop` loop=`expr $loop - 1` verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) major=.`expr $current - $age` versuffix="$major.$age.$revision" ;; osf) major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do iface=`expr $current - $loop` loop=`expr $loop - 1` verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. major=`expr $current - $age` versuffix="-$major" ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$echo "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done if test -n "$removelist"; then $show "${rm}r $removelist" $run ${rm}r $removelist fi fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. for path in $notinst_path; do lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'` deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'` dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'` done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs -framework System" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $rm conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null \ | grep " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for file magic test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a file magic. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do name="`expr $a_deplib : '-l\(.*\)'`" # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval \\$echo \"$libname_spec\"` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval $echo \"$potent_lib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for regex pattern test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a regex pattern. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` done fi if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not supported in this platform." else $echo "*** Warning: inter-library dependencies are not known to be supported." fi $echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $echo $echo "*** Warning: libtool could not satisfy all declared inter-library" $echo "*** dependencies of module $libname. Therefore, libtool will create" $echo "*** a static module, that should work as long as the dlopening" $echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $echo "*** The inter-library dependencies that have been dropped here will be" $echo "*** automatically added whenever a program is linked with this library" $echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $echo $echo "*** Since this library must not contain undefined symbols," $echo "*** because either the platform does not support them or" $echo "*** it was explicitly requested with -no-undefined," $echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names realname="$2" shift; shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" if len=`expr "X$cmd" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then $show "$cmd" $run eval "$cmd" || exit $? skipped_export=false else # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: fi done IFS="$save_ifs" if test -n "$export_symbols_regex"; then $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' $show "$mv \"${export_symbols}T\" \"$export_symbols\"" $run eval '$mv "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" status=$? if test "$status" -ne 0 && test ! -d "$gentop"; then exit $status fi generated="$generated $gentop" for xlib in $convenience; do # Extract the objects. case $xlib in [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; *) xabs=`pwd`"/$xlib" ;; esac xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` xdir="$gentop/$xlib" $show "${rm}r $xdir" $run ${rm}r "$xdir" $show "$mkdir $xdir" $run $mkdir "$xdir" status=$? if test "$status" -ne 0 && test ! -d "$xdir"; then exit $status fi # We will extract separately just the conflicting names and we will no # longer touch any unique names. It is faster to leave these extract # automatically by $AR in one run. $show "(cd $xdir && $AR x $xabs)" $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 $AR t "$xabs" | sort | uniq -cd | while read -r count name do i=1 while test "$i" -le "$count" do # Put our $i before any first dot (extension) # Never overwrite any file name_to="$name" while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" do name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` done $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? i=`expr $i + 1` done done fi libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise. $echo "creating reloadable object files..." # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= delfiles= last_robj= k=1 output=$output_objdir/$save_output-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || { len=`expr "X$test_cmds" : ".*"` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi last_robj=$output_objdir/$save_output-${k}.$objext k=`expr $k + 1` output=$output_objdir/$save_output-${k}.$objext objlist=$obj len=1 fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if ${skipped_export-false}; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols libobjs=$output # Append the command to create the export file. eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi # Set up a command to remove the reloadale object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` delfiles="$delfiles $output_objdir/$save_output-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi # Append the command to remove the reloadable object files # to the just-reset $cmds. eval cmds=\"\$cmds~\$rm $delfiles\" fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$deplibs"; then $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 fi if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 fi case $output in *.lo) if test -n "$objs$old_deplibs"; then $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 exit $EXIT_FAILURE fi libobj="$output" obj=`$echo "X$output" | $Xsed -e "$lo2o"` ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $run $rm $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\" else gentop="$output_objdir/${obj}x" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" status=$? if test "$status" -ne 0 && test ! -d "$gentop"; then exit $status fi generated="$generated $gentop" for xlib in $convenience; do # Extract the objects. case $xlib in [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; *) xabs=`pwd`"/$xlib" ;; esac xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` xdir="$gentop/$xlib" $show "${rm}r $xdir" $run ${rm}r "$xdir" $show "$mkdir $xdir" $run $mkdir "$xdir" status=$? if test "$status" -ne 0 && test ! -d "$xdir"; then exit $status fi # We will extract separately just the conflicting names and we will no # longer touch any unique names. It is faster to leave these extract # automatically by $AR in one run. $show "(cd $xdir && $AR x $xabs)" $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 $AR t "$xabs" | sort | uniq -cd | while read -r count name do i=1 while test "$i" -le "$count" do # Put our $i before any first dot (extension) # Never overwrite any file name_to="$name" while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" do name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` done $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? i=`expr $i + 1` done done fi reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $run eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; esac if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 fi if test "$preload" = yes; then if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && test "$dlopen_self_static" = unknown; then $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." fi fi case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac case $host in *darwin*) # Don't allow lazy linking, it breaks C++ global constructors if test "$tagname" = CXX ; then compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" fi ;; esac compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) case :$dllsearchpath: in *":$libdir:"*) ;; *) dllsearchpath="$dllsearchpath:$libdir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 fi fi if test -n "$dlsyms"; then case $dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${outputname}.nm" $show "$rm $nlist ${nlist}S ${nlist}T" $run $rm "$nlist" "${nlist}S" "${nlist}T" # Parse the name list into a source file. $show "creating $output_objdir/$dlsyms" test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ #ifdef __cplusplus extern \"C\" { #endif /* Prevent the only kind of declaration conflicts we can make. */ #define lt_preloaded_symbols some_other_symbol /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then $show "generating symbol list for \`$output'" test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for arg in $progfiles; do $show "extracting global C symbols from \`$arg'" $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi if test -n "$export_symbols_regex"; then $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$output.exp" $run $rm $export_symbols $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' else $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"' $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' fi fi for arg in $dlprefiles; do $show "extracting global C symbols from \`$arg'" name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` $run eval '$echo ": $name " >> "$nlist"' $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -z "$run"; then # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $mv "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if grep -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else grep -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' else $echo '/* NONE */' >> "$output_objdir/$dlsyms" fi $echo >> "$output_objdir/$dlsyms" "\ #undef lt_preloaded_symbols #if defined (__STDC__) && __STDC__ # define lt_ptr void * #else # define lt_ptr char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr address; } lt_preloaded_symbols[] = {\ " eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" $echo >> "$output_objdir/$dlsyms" "\ {0, (lt_ptr) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " fi pic_flag_for_symtable= case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; esac;; *-*-hpux*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag";; esac esac # Now compile the dynamic symbol file. $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? # Clean up the generated files. $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" # Transform the symbol file into the correct name. compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` ;; *) $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 exit $EXIT_FAILURE ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. $show "$link_command" $run eval "$link_command" status=$? # Delete the generated files. if test -n "$dlsyms"; then $show "$rm $output_objdir/${outputname}S.${objext}" $run $rm "$output_objdir/${outputname}S.${objext}" fi exit $status fi if test -n "$shlibpath_var"; then # We should set the shlibpath_var rpath= for dir in $temp_rpath; do case $dir in [\\/]* | [A-Za-z]:[\\/]*) # Absolute path. rpath="$rpath$dir:" ;; *) # Relative path: add a thisdir entry. rpath="$rpath\$thisdir/$dir:" ;; esac done temp_rpath="$rpath" fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $run $rm $output # Link the executable and exit $show "$link_command" $run eval "$link_command" || exit $? exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 $echo "$modename: \`$output' will be relinked during installation" 1>&2 else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname $show "$link_command" $run eval "$link_command" || exit $? # Now create the wrapper script. $show "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` fi # Quote $echo for shipping. if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if our run command is non-null. if test -z "$run"; then # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) cwrappersource=`$echo ${objdir}/lt-${output}.c` cwrapper=`$echo ${output}.exe` $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 cat > $cwrappersource <> $cwrappersource<<"EOF" #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef DIR_SEPARATOR #define DIR_SEPARATOR '/' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) #define HAVE_DOS_BASED_FILE_SYSTEM #ifndef DIR_SEPARATOR_2 #define DIR_SEPARATOR_2 '\\' #endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) const char *program_name = NULL; void * xmalloc (size_t num); char * xstrdup (const char *string); char * basename (const char *name); char * fnqualify(const char *path); char * strendzap(char *str, const char *pat); void lt_fatal (const char *message, ...); int main (int argc, char *argv[]) { char **newargz; int i; program_name = (char *) xstrdup ((char *) basename (argv[0])); newargz = XMALLOC(char *, argc+2); EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" newargz[1] = fnqualify(argv[0]); /* we know the script has the same name, without the .exe */ /* so make sure newargz[1] doesn't end in .exe */ strendzap(newargz[1],".exe"); for (i = 1; i < argc; i++) newargz[i+1] = xstrdup(argv[i]); newargz[argc+1] = NULL; EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" } void * xmalloc (size_t num) { void * p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL ; } char * basename (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha (name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return (char *) base; } char * fnqualify(const char *path) { size_t size; char *p; char tmp[LT_PATHMAX + 1]; assert(path != NULL); /* Is it qualified already? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha (path[0]) && path[1] == ':') return xstrdup (path); #endif if (IS_DIR_SEPARATOR (path[0])) return xstrdup (path); /* prepend the current directory */ /* doesn't handle '~' */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */ p = XMALLOC(char, size); sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path); return p; } char * strendzap(char *str, const char *pat) { size_t len, patlen; assert(str != NULL); assert(pat != NULL); len = strlen(str); patlen = strlen(pat); if (patlen <= len) { str += len - patlen; if (strcmp(str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char * mode, const char * message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } EOF # we should really use a build-platform specific compiler # here, but OTOH, the wrappers (shell script and this C one) # are only useful if you want to execute the "real" binary. # Since the "real" binary is built for $host, then this # wrapper might as well be built for $host, too. $run $LTCC -s -o $cwrapper $cwrappersource ;; esac $rm $output trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 $echo > $output "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variable: notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$echo are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then echo=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then # Yippee, \$echo works! : else # Restart under the correct shell, and then maybe \$echo will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $echo >> $output "\ # Find the directory that this script lives in. thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $echo >> $output "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || \\ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $mkdir \"\$progdir\" else $rm \"\$progdir/\$file\" fi" $echo >> $output "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $echo \"\$relink_command_output\" >&2 $rm \"\$progdir/\$file\" exit $EXIT_FAILURE fi fi $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $rm \"\$progdir/\$program\"; $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } $rm \"\$progdir/\$file\" fi" else $echo >> $output "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $echo >> $output "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $echo >> $output "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $echo >> $output "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $echo >> $output "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ exec \$progdir\\\\\$program \${1+\"\$@\"} " ;; *) $echo >> $output "\ exec \$progdir/\$program \${1+\"\$@\"} " ;; esac $echo >> $output "\ \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\" exit $EXIT_FAILURE fi else # The program doesn't exist. \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE fi fi\ " chmod +x $output fi exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" status=$? if test "$status" -ne 0 && test ! -d "$gentop"; then exit $status fi generated="$generated $gentop" # Add in members from convenience archives. for xlib in $addlibs; do # Extract the objects. case $xlib in [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; *) xabs=`pwd`"/$xlib" ;; esac xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` xdir="$gentop/$xlib" $show "${rm}r $xdir" $run ${rm}r "$xdir" $show "$mkdir $xdir" $run $mkdir "$xdir" status=$? if test "$status" -ne 0 && test ! -d "$xdir"; then exit $status fi # We will extract separately just the conflicting names and we will no # longer touch any unique names. It is faster to leave these extract # automatically by $AR in one run. $show "(cd $xdir && $AR x $xabs)" $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 $AR t "$xabs" | sort | uniq -cd | while read -r count name do i=1 while test "$i" -le "$count" do # Put our $i before any first dot (extension) # Never overwrite any file name_to="$name" while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" do name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` done $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? i=`expr $i + 1` done done fi oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP` done fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts $echo "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs # GNU ar 2.10+ was changed to match POSIX; thus no paths are # encoded into archives. This makes 'ar r' malfunction in # this piecewise linking case whenever conflicting object # names appear in distinct ar calls; check, warn and compensate. if (for obj in $save_oldobjs do $echo "X$obj" | $Xsed -e 's%^.*/%%' done | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: warning: object name conflicts; overriding AR_FLAGS to 'cq'" 1>&2 $echo "$modename: warning: to ensure that POSIX-compatible ar will work" 1>&2 AR_FLAGS=cq fi # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done for obj in $save_oldobjs do oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" if len=`expr "X$test_cmds" : ".*"` && test "$len" -le "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do eval cmd=\"$cmd\" IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$generated"; then $show "${rm}r$generated" $run ${rm}r$generated fi # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. if test -z "$run"; then for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlfiles="$newdlfiles $libdir/$name" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlprefiles="$newdlprefiles $libdir/$name" done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $rm $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $echo > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $echo >> $output "\ relink_command=\"$relink_command\"" fi done fi # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? ;; esac exit $EXIT_SUCCESS ;; # libtool install mode install) modename="$modename: install" # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) arg="\"$arg\"" ;; esac install_prog="$arg " arg="$1" shift else install_prog= arg="$nonopt" fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) arg="\"$arg\"" ;; esac install_prog="$install_prog$arg" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest="$arg" continue fi case $arg in -d) isdir=yes ;; -f) prev="-f" ;; -g) prev="-g" ;; -m) prev="-m" ;; -o) prev="-o" ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest="$arg" continue fi ;; esac # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) arg="\"$arg\"" ;; esac install_prog="$install_prog $arg" done if test -z "$install_prog"; then $echo "$modename: you must specify an install program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -n "$prev"; then $echo "$modename: the \`$prev' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -z "$files"; then if test -z "$dest"; then $echo "$modename: no file or destination specified" 1>&2 else $echo "$modename: you must specify a destination" 1>&2 fi $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Strip any trailing slash from the destination. dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` test "X$destdir" = "X$dest" && destdir=. destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` # Not a directory, so check to see that there is only one file specified. set dummy $files if test "$#" -gt 2; then $echo "$modename: \`$dest' is not a directory" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi library_names= old_library= relink_command= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ test "X$dir" = "X$file/" && dir= dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. if test "$inst_prefix_dir" = "$destdir"; then $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 exit $EXIT_FAILURE fi if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi $echo "$modename: warning: relinking \`$file'" 1>&2 $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 exit $EXIT_FAILURE fi fi # See the names of the shared library. set dummy $library_names if test -n "$2"; then realname="$2" shift shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. $show "$install_prog $dir/$srcname $destdir/$realname" $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? if test -n "$stripme" && test -n "$striplib"; then $show "$striplib $destdir/$realname" $run eval "$striplib $destdir/$realname" || exit $? fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. for linkname do if test "$linkname" != "$realname"; then $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" fi done fi # Do each command in the postinstall commands. lib="$destdir/$realname" cmds=$postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` ;; *.$objext) staticdest="$destfile" destfile= ;; *) $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac # Install the libtool object if requested. if test -n "$destfile"; then $show "$install_prog $file $destfile" $run eval "$install_prog $file $destfile" || exit $? fi # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` $show "$install_prog $staticobj $staticdest" $run eval "$install_prog \$staticobj \$staticdest" || exit $? fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then file=`$echo $file|${SED} 's,.exe$,,'` stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin*|*mingw*) wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` ;; *) wrapper=$file ;; esac if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then notinst_deplibs= relink_command= # To insure that "foo" is sourced, and not "foo.exe", # finese the cygwin/MSYS system by explicitly sourcing "foo." # which disallows the automatic-append-.exe behavior. case $build in *cygwin* | *mingw*) wrapperdot=${wrapper}. ;; *) wrapperdot=${wrapper} ;; esac # If there is no directory component, then add one. case $file in */* | *\\*) . ${wrapperdot} ;; *) . ./${wrapperdot} ;; esac # Check the variables that should have been set. if test -z "$notinst_deplibs"; then $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 exit $EXIT_FAILURE fi finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then # If there is no directory component, then add one. case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac fi libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 finalize=no fi done relink_command= # To insure that "foo" is sourced, and not "foo.exe", # finese the cygwin/MSYS system by explicitly sourcing "foo." # which disallows the automatic-append-.exe behavior. case $build in *cygwin* | *mingw*) wrapperdot=${wrapper}. ;; *) wrapperdot=${wrapper} ;; esac # If there is no directory component, then add one. case $file in */* | *\\*) . ${wrapperdot} ;; *) . ./${wrapperdot} ;; esac outputname= if test "$fast_install" = no && test -n "$relink_command"; then if test "$finalize" = yes && test -z "$run"; then tmpdir="/tmp" test -n "$TMPDIR" && tmpdir="$TMPDIR" tmpdir="$tmpdir/libtool-$$" save_umask=`umask` umask 0077 if $mkdir "$tmpdir"; then umask $save_umask else umask $save_umask $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2 continue fi file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ${rm}r "$tmpdir" continue fi file="$outputname" else $echo "$modename: warning: cannot relink \`$file'" 1>&2 fi else # Install the binary that we compiled earlier. file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyways case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` ;; esac ;; esac $show "$install_prog$stripme $file $destfile" $run eval "$install_prog\$stripme \$file \$destfile" || exit $? test -n "$outputname" && ${rm}r "$tmpdir" ;; esac done for file in $staticlibs; do name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` # Set up the ranlib parameters. oldlib="$destdir/$name" $show "$install_prog $file $oldlib" $run eval "$install_prog \$file \$oldlib" || exit $? if test -n "$stripme" && test -n "$old_striplib"; then $show "$old_striplib $oldlib" $run eval "$old_striplib $oldlib" || exit $? fi # Do each command in the postinstall commands. cmds=$old_postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$future_libdirs"; then $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi if test -n "$current_libdirs"; then # Maybe just do a dry run. test -n "$run" && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi ;; # libtool finish mode finish) modename="$modename: finish" libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. cmds=$finish_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || admincmds="$admincmds $cmd" done IFS="$save_ifs" fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $run eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. test "$show" = : && exit $EXIT_SUCCESS $echo "----------------------------------------------------------------------" $echo "Libraries have been installed in:" for libdir in $libdirs; do $echo " $libdir" done $echo $echo "If you ever happen to want to link against installed libraries" $echo "in a given directory, LIBDIR, you must either use libtool, and" $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" $echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" $echo " during execution" fi if test -n "$runpath_var"; then $echo " - add LIBDIR to the \`$runpath_var' environment variable" $echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $echo " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $echo " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $echo $echo "See any operating system documentation about shared libraries for" $echo "more information, such as the ld(1) and ld.so(8) manual pages." $echo "----------------------------------------------------------------------" exit $EXIT_SUCCESS ;; # libtool execute mode execute) modename="$modename: execute" # The first argument is the command name. cmd="$nonopt" if test -z "$cmd"; then $echo "$modename: you must specify a COMMAND" 1>&2 $echo "$help" exit $EXIT_FAILURE fi # Handle -dlopen flags immediately. for file in $execute_dlfiles; do if test ! -f "$file"; then $echo "$modename: \`$file' is not a file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi dir= case $file in *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Read the libtool library. dlname= library_names= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" continue fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 exit $EXIT_FAILURE fi ;; *.lo) # Just add the directory containing the .lo file. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. ;; *) $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` args="$args \"$file\"" done if test -z "$run"; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables if test "${save_LC_ALL+set}" = set; then LC_ALL="$save_LC_ALL"; export LC_ALL fi if test "${save_LANG+set}" = set; then LANG="$save_LANG"; export LANG fi # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" $echo "export $shlibpath_var" fi $echo "$cmd$args" exit $EXIT_SUCCESS fi ;; # libtool clean and uninstall mode clean | uninstall) modename="$modename: $mode" rm="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) rm="$rm $arg"; rmforce=yes ;; -*) rm="$rm $arg" ;; *) files="$files $arg" ;; esac done if test -z "$rm"; then $echo "$modename: you must specify an RM program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi rmdirs= origobjdir="$objdir" for file in $files; do dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` if test "X$dir" = "X$file"; then dir=. objdir="$origobjdir" else objdir="$dir/$origobjdir" fi name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if (test -L "$file") >/dev/null 2>&1 \ || (test -h "$file") >/dev/null 2>&1 \ || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then . $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" if test "$mode" = uninstall; then if test -n "$library_names"; then # Do each command in the postuninstall commands. cmds=$postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. cmds=$old_postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi # FIXME: should reinstall the best remaining shared library. fi fi ;; *.lo) # Possibly a libtool object, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # Read the .lo file . $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" \ && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" \ && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) file=`$echo $file|${SED} 's,.exe$,,'` noexename=`$echo $name|${SED} 's,.exe$,,'` # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then relink_command= . $dir/$noexename # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac $show "$rm $rmfiles" $run $rm $rmfiles || exit_status=1 done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then $show "rmdir $dir" $run rmdir $dir >/dev/null 2>&1 fi done exit $exit_status ;; "") $echo "$modename: you must specify a MODE" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE ;; esac if test -z "$exec_cmd"; then $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE fi fi # test -z "$show_help" if test -n "$exec_cmd"; then eval exec $exec_cmd exit $EXIT_FAILURE fi # We need to display help for each of the modes. case $mode in "") $echo \ "Usage: $modename [OPTION]... [MODE-ARG]... Provide generalized library-building support services. --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --finish same as \`--mode=finish' --help display this help message and exit --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] --quiet same as \`--silent' --silent don't print informational messages --tag=TAG use configuration variables from tag TAG --version print version information MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for a more detailed description of MODE. Report bugs to ." exit $EXIT_SUCCESS ;; clean) $echo \ "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $echo \ "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $echo \ "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $echo \ "Usage: $modename [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $echo \ "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $echo \ "Usage: $modename [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -static do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $echo \ "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac $echo $echo "Try \`$modename --help' for more information about other modes." exit $EXIT_SUCCESS # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: lincity-1.13.1/missing0000744000175000017500000002403607612714137011603 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 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. # 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. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. 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 --run try to run the given command, and emulate it if it fails 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 help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing 0.4 - GNU automake" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi 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) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi 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) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi 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*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi 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 ;; autom4te) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi 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. You can get \`$1Help2man' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; 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 ;; help2man) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then # We have makeinfo, but it failed. exit 1 fi 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 ;; tar) shift if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 fi # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) 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 lincity-1.13.1/mkinstalldirs0000744000175000017500000000132707627052670013013 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.3 2003/02/26 05:50:48 gregsharp 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 lincity-1.13.1/ldsvgui.c0000644000175000017500000004153307737730734012041 00000000000000/* ---------------------------------------------------------------------- * * ldsvgui.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include "ldsvgui.h" #include "lcintl.h" #include "screen.h" #include "pbar.h" #include "module_buttons.h" #include "fileutil.h" /* this is for OS/2 - RVI */ #ifdef __EMX__ #include #include /* required for __XOS2RedirRoot */ #define chown(x,y,z) #define OS2_DEFAULT_LIBDIR "/XFree86/lib/X11/lincity" #endif #include #include #include #if defined (TIME_WITH_SYS_TIME) #include #include #else #if defined (HAVE_SYS_TIME_H) #include #else #include #endif #endif #if defined (WIN32) #include #if defined (__BORLANDC__) #include #include #include #endif #include #include #include #endif #if defined (HAVE_DIRENT_H) #include #define NAMLEN(dirent) strlen((dirent)->d_name) #else #define dirent direct #define NAMLEN(dirent) (dirent)->d_namlen #if defined (HAVE_SYS_NDIR_H) #include #endif #if defined (HAVE_SYS_DIR_H) #include #endif #if defined (HAVE_NDIR_H) #include #endif #endif #include #include "common.h" #ifdef LC_X11 #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "ldsvguts.h" #include "fileutil.h" #include "mouse.h" #include "stats.h" /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ int verify_city (char *cname); void input_network_host (char *s); void input_network_port (char *s); /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ #if defined (WIN32) char LIBDIR[_MAX_PATH]; #elif defined (__EMX__) #ifdef LIBDIR #undef LIBDIR /* yes, I know I shouldn't ;-) */ #endif char LIBDIR[256]; #endif char *lc_save_dir; char save_names[10][42]; /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ void draw_prefs_cb (void) { Rect* mw = &scr.main_win; int x, y; char* graphic; x = mw->x + 50; y = mw->y + 30; graphic = overwrite_transport_flag ? checked_box_graphic : unchecked_box_graphic; Fgl_putbox (x, y, 16, 16, graphic); y += 16; graphic = suppress_popups ? unchecked_box_graphic : checked_box_graphic; Fgl_putbox (x, y, 16, 16, graphic); y += 16; graphic = time_multiplex_stats ? checked_box_graphic : unchecked_box_graphic; Fgl_putbox (x, y, 16, 16, graphic); #if defined (LC_X11) y += 16; graphic = confine_flag ? checked_box_graphic : unchecked_box_graphic; Fgl_putbox (x, y, 16, 16, graphic); #endif } void do_prefs_buttons (int x, int y) { int outx, outy, outh, outw; Rect* mw = &scr.main_win; if (x > mw->x + 50 && x < mw->x + 50 + 16) { if (y > mw->y + 30 && y < mw->y + 30 + 16) { hide_mouse (); overwrite_transport_flag = !overwrite_transport_flag; draw_prefs_cb (); redraw_mouse (); } else if (y > mw->y + 30 + 16 && y < mw->y + 30 + 2*16) { hide_mouse (); suppress_popups = !suppress_popups; draw_prefs_cb (); redraw_mouse (); } else if (y > mw->y + 30 + 2*16 && y < mw->y + 30 + 3*16) { hide_mouse (); time_multiplex_stats = !time_multiplex_stats; draw_prefs_cb (); redraw_mouse (); #if defined (LC_X11) } else if (y > mw->y + 30 + 3*16 && y < mw->y + 30 + 4*16) { hide_mouse (); confine_flag = !confine_flag; draw_prefs_cb (); set_pointer_confinement (); redraw_mouse (); #endif } } outx = 370; outy = 387; outh = 12; outw = 3*8 + 4; if (x > mw->x + outx && x < mw->x + outx + outw && y > mw->y + outy && y < mw->y + outy + outh) { close_prefs_screen (); refresh_main_screen (); } } void do_prefs_mouse (int x, int y, int mbutton) { Rect* mw = &scr.main_win; if (mouse_in_rect(mw, x, y)) { do_prefs_buttons (x, y); return; } /* If the user clicks outside of main window, cancel prefs?? */ close_prefs_screen (); refresh_main_screen (); } void do_prefs_screen (void) { int x,y,w,h; Rect* mw = &scr.main_win; prefs_drawn_flag = 1; hide_mouse (); Fgl_fillbox (mw->x, mw->y, mw->w, mw->h, LOAD_BG_COLOUR); Fgl_setfontcolors (LOAD_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (mw->x + 80, mw->y + 4*8, _("Transport overwrite")); Fgl_write (mw->x + 80, mw->y + 6*8, _("Popup info to dialog boxes")); Fgl_write (mw->x + 80, mw->y + 8*8, _("Time multiplexed stats windows")); #if defined (LC_X11) Fgl_write (mw->x + 80, mw->y + 10*8, _("Confine X pointer")); #endif x = 370; y = 387; h = 12; w = 3*8 + 4; Fgl_hline (mw->x + x, mw->y + y, mw->x + x + w, HELPBUTTON_COLOUR); Fgl_hline (mw->x + x, mw->y + y + h, mw->x + x + w, HELPBUTTON_COLOUR); Fgl_line (mw->x + x, mw->y + y, mw->x + x, mw->y + y + h, HELPBUTTON_COLOUR); Fgl_line (mw->x + x + w, mw->y + y, mw->x + x + w, mw->y + y + h, HELPBUTTON_COLOUR); Fgl_write (mw->x + x + 2, mw->y + y + 2, _("OUT")); draw_prefs_cb (); redraw_mouse (); } void close_prefs_screen (void) { save_lincityrc(); prefs_flag = 0; prefs_drawn_flag = 0; #ifdef USE_EXPANDED_FONT Fgl_setwritemode (WRITEMODE_OVERWRITE | FONT_EXPANDED); #else Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); #endif } #if defined (NETWORK_ENABLE) void do_network_screen (void) { Rect* mw = &scr.main_win; char s[200], t[200]; unsigned short p; hide_mouse (); Fgl_fillbox (mw->x, mw->y, mw->w, mw->h ,SAVE_BG_COLOUR); Fgl_setfontcolors (SAVE_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (mw->x + 100, mw->y + 15, "Connect to network game"); Fgl_write (mw->x + 100, mw->y + 25, "Select host and port"); #if !defined (WIN32) redraw_mouse (); #endif strcpy (s, DEFAULT_SOCK_HOST); input_network_host (s); sprintf (t, "%d", DEFAULT_SOCK_PORT); input_network_port (t); p = (unsigned short) atoi (t); join_network_game (s,p); db_flag = 0; cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); hide_mouse (); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); refresh_main_screen (); redraw_mouse (); } #endif void do_save_city () { Rect* mw = &scr.main_win; char s[200], c; hide_mouse (); Fgl_fillbox (mw->x, mw->y, mw->w, mw->h ,SAVE_BG_COLOUR); Fgl_setfontcolors (SAVE_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (mw->x + 100, mw->y + 15, _("Save a scene")); Fgl_write (mw->x + 8, mw->y + 35 ,_("Choose the number of the scene you want to save")); Fgl_write (mw->x + 110, mw->y + 210 ,_("Press space to cancel.")); draw_save_dir (SAVE_BG_COLOUR); db_flag = 1; #ifdef LC_X11 redraw_mouse (); cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); do { call_event (); c = x_key_value; } while (c == 0); x_key_value = 0; #elif defined (WIN32) while (0 == (c = GetKeystroke ())); /* Wait for keystroke */ redraw_mouse (); #else c = getchar (); redraw_mouse (); #endif if (c > '0' && c <= '9') { Fgl_write (mw->x + 40, mw->y + 300 ,_("Type comment for the saved scene")); Fgl_write (mw->x + 16, mw->y + 310 ,_("The comment may be up to 40 characters")); Fgl_write (mw->x + 40, mw->y + 320 ,_("and may contain spaces or % . - + ,")); strcpy (s, &(save_names[c - '0'][2])); input_save_filename (s); remove_scene (save_names[c - '0']); sprintf (save_names[c - '0'], "%d_", c - '0'); strcat (save_names[c - '0'], s); Fgl_fillbox (mw->x + 5, mw->y + 300 ,360, 30, SAVE_BG_COLOUR); Fgl_write (mw->x + 70, mw->y + 310 ,_("Saving city scene... please wait")); save_city (save_names[c - '0']); } db_flag = 0; cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); hide_mouse (); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); save_flag = 0; refresh_main_screen (); redraw_mouse (); } void load_opening_city (char *s) { char *cname = (char *) malloc (strlen (opening_path) + strlen (s) + 2); sprintf (cname, "%s%c%s", opening_path, PATH_SLASH, s); load_city (cname); free (cname); strcpy (given_scene, s); db_flag = 0; cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); /* GCS: Should I hide_mouse() here, as is done in do_load_city above? */ hide_mouse (); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); refresh_main_screen (); suppress_ok_buttons = 1; update_avail_modules (0); suppress_ok_buttons = 0; /* GCS: ?? */ redraw_mouse (); } void do_load_city (void) { Rect* mw = &scr.main_win; char c; hide_mouse (); Fgl_fillbox (mw->x, mw->y, mw->w, mw->h ,LOAD_BG_COLOUR); Fgl_setfontcolors (LOAD_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (mw->x + 140, mw->y + 15, _("Load a file")); Fgl_write (mw->x + 40, mw->y + 35 ,_("Choose the number of the scene you want")); Fgl_write (mw->x + 40, mw->y + 50 ,_("Entries coloured red are either not there,")); Fgl_write (mw->x + 44, mw->y + 60 ,_("or they are from an earlier version, they")); Fgl_write (mw->x + 110, mw->y + 70 ,_("might not load properly.")); Fgl_write (mw->x + 110, mw->y + 210 ,_("Press space to cancel.")); draw_save_dir (LOAD_BG_COLOUR); db_flag = 1; do { #ifdef LC_X11 redraw_mouse (); cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); do { call_event (); c = x_key_value; } while (c == 0); x_key_value = 0; #elif defined (WIN32) while (0 == (c = GetKeystroke ())); /* Wait for keystroke */ redraw_mouse (); #else c = getchar (); redraw_mouse (); #endif if (c > '0' && c <= '9') { if (strlen (save_names[c - '0']) < 1) { redraw_mouse (); if (yn_dial_box (_("No scene."), _("There is no save scene with this number."), _("Do you want to"), _("try again?")) != 0) c = 0; else c = ' '; hide_mouse (); } } } while (c==0); redraw_mouse (); if (c > '0' && c <= '9') { if (yn_dial_box (_("Loading Scene") ,_("Do you want to load the scene") ,save_names[c - '0'] ,_("and forget the current game?")) != 0) { Fgl_write (mw->x + 70, mw->y + 310 ,_("Loading scene... please wait")); load_saved_city (save_names[c - '0']); refresh_pbars(); } } db_flag = 0; cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); hide_mouse (); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); load_flag = 0; refresh_main_screen (); suppress_ok_buttons = 1; update_avail_modules (0); suppress_ok_buttons = 0; redraw_mouse (); } void draw_save_dir (int bg_colour) { Rect* mw = &scr.main_win; char *s, s2[200]; int i, j, l; #if defined (WIN32) char filespec[4]; #if defined(_MSC_VER) struct _finddata_t fileinfo; #elif defined (__BORLANDC__) struct ffblk fileinfo; #endif long fh; #else struct dirent *ep; DIR *dp; #endif if ((s = (char *) malloc (lc_save_dir_len + strlen (LC_SAVE_DIR) + 64)) == 0) malloc_failure (); strcpy (s, lc_save_dir); if (!directory_exists (s)) { printf (_("Couldn't find the save directory %s\n"), s); free (s); return; } /* GCS FIX: Technically speaking, there is a race condition here. */ #if defined (WIN32) _chdir (s); #else dp = opendir (s); #endif for (i = 1; i < 10; i++) { save_names[i][0] = 0; #if defined (WIN32) sprintf (filespec, "%d_*", i); #if defined (_MSC_VER) fh = _findfirst (filespec, &fileinfo); #elif defined (__BORLANDC__) fh = findfirst (filespec, &fileinfo, FA_ARCH); #endif if (fh != -1) { #else while ((ep = readdir (dp))) /* extra brackets to stop warning */ { if (*(ep->d_name) == (i + '0') && *((ep->d_name) + 1) == '_') { #endif sprintf (s2, "%2d ", i); #if defined (WIN32) #if defined (_MSC_VER) strncpy (save_names[i], fileinfo.name, 40); #elif defined (__BORLANDC__) strncpy (save_names[i], fileinfo.ff_name, 40); #endif #else /* UNIX */ strncpy (save_names[i], ep->d_name, 40); #endif if (strlen (save_names[i]) > 2) strncat (s2, &(save_names[i][2]), 40); else strcat (s2, "???"); #if defined (WIN32) #if defined (_MSC_VER) _findclose (fh); #elif defined (__BORLANDC__) findclose(&fileinfo); #endif } #else } } #endif if (strlen (save_names[i]) < 1) sprintf (s2, " %d .....", i); else { l = strlen (s2); for (j = 0; j < l; j++) if (s2[j] == '_') s2[j] = ' '; } if (verify_city (save_names[i]) == 0) Fgl_setfontcolors (bg_colour, red (28)); else Fgl_setfontcolors (bg_colour, green (28)); Fgl_write (mw->x + 24, mw->y + 10 * (10 + i), s2); #if !defined (WIN32) rewinddir (dp); #endif } #if defined (WIN32) _chdir (LIBDIR); /* go back... */ #else closedir (dp); #endif Fgl_setfontcolors (bg_colour, TEXT_FG_COLOUR); free (s); } void edit_string (char* s, unsigned int maxlen, int xpos, int ypos) { char c; int i, t, on; c = 0; s[maxlen+1] = 0; t = strlen (s); for (i = 0; i < t; i++) if (s[i] == '_') s[i] = ' '; while (c != 0xd && c != 0xa) { Fgl_write (xpos, ypos, s); Fgl_write (xpos + (strlen (s) * 8), ypos, "_"); on = 1; get_real_time (); t = real_time; #ifdef LC_X11 call_event (); while ((c = x_key_value) == 0) #elif defined (WIN32) while ((c = GetKeystroke ()) == 0) #else while ((c = vga_getkey ()) == 0) #endif { #ifdef LC_X11 call_event (); #endif get_real_time (); if (real_time > t + 200) { if (on == 1) { Fgl_write (xpos + (strlen (s) * 8), ypos, " "); on = 0; } else { Fgl_write (xpos + (strlen (s) * 8), ypos, "_"); on = 1; } get_real_time (); t = real_time; } } #ifdef LC_X11 x_key_value = 0; #endif if ((isalnum (c) || c == ' ' || c == '.' || c == '%' || c == ',' || c == '-' || c == '+') && strlen (s) < maxlen) { t = strlen (s); s[t] = c; s[t + 1] = 0; } else if (c == 0x7f && strlen (s) > 0) { Fgl_write (xpos + (strlen (s) * 8), ypos, " "); s[strlen (s) - 1] = 0; } } t = strlen (s); for (i = 0; i < t; i++) if (s[i] == ' ') s[i] = '_'; } void input_save_filename (char *s) { Rect* mw = &scr.main_win; edit_string (s, 40, mw->x + 24, mw->y + 340); } void input_network_host (char *s) { Rect* mw = &scr.main_win; Fgl_write (mw->x + 50, mw->y + 240, "Host:"); edit_string (s, 40, mw->x + 124, mw->y + 240); } void input_network_port (char *s) { Rect* mw = &scr.main_win; Fgl_write (mw->x + 50, mw->y + 280, "Port:"); edit_string (s, 40, mw->x + 124, mw->y + 280); } void do_get_nw_server (void) { Rect* mw = &scr.main_win; char c; hide_mouse (); Fgl_fillbox (mw->x, mw->y, mw->w, mw->h, NW_BG_COLOUR); Fgl_setfontcolors (LOAD_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (mw->x + 140, mw->y + 15, _("Choose network server")); Fgl_write (mw->x + 40, mw->y + 35 ,_("Please enter the address and port of the server")); Fgl_write (mw->x + 110, mw->y + 210 ,_("Press space to cancel.")); draw_save_dir (NW_BG_COLOUR); do { #ifdef LC_X11 db_flag = 1; redraw_mouse (); cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); do { call_event (); c = x_key_value; } while (c == 0); x_key_value = 0; #elif defined (WIN32) while (0 == (c = GetKeystroke ())); /* Wait for keystroke */ #else c = getchar (); #endif if (c > '0' && c <= '9') if (strlen (save_names[c - '0']) < 1) { redraw_mouse (); if (yn_dial_box (_("No scene.") ,_("There is no save scene with this number.") ,_("Do you want to") ,_("try again?")) != 0) c = 0; else c = ' '; hide_mouse (); } } while ((c <= '0' || c > '9') && c != ' '); redraw_mouse (); if (c > '0' && c <= '9') { if (yn_dial_box (_("Loading Scene") ,_("Do you want to load the scene") ,save_names[c - '0'] ,_("and forget the current game?")) != 0) { Fgl_write (mw->x + 70, mw->y + 310 ,_("Loading scene... please wait")); load_saved_city (save_names[c - '0']); } } db_flag = 0; cs_mouse_handler (0, -1, 0); cs_mouse_handler (0, 1, 0); hide_mouse (); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); refresh_main_screen (); suppress_ok_buttons = 1; update_avail_modules (0); suppress_ok_buttons = 0; redraw_mouse (); } lincity-1.13.1/splash.c0000644000175000017500000001522307744312243011640 00000000000000/* ---------------------------------------------------------------------- * * splash.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #if defined (WIN32) #include #include #include #include #endif #include "common.h" #ifdef LC_X11 #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "screen.h" #include "fileutil.h" #define SI_BLACK 252 #define SI_RED 253 #define SI_GREEN 254 #define SI_YELLOW 255 /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ void load_start_image (void) { #ifdef LC_X11 XColor pal[256]; XEvent xev; #endif long x, y, l, r, g, b; FILE *fp; fp = fopen_read_gzipped (opening_pic); if (fp == NULL) { return; } for (x = 0; x < 7; x++) l = fgetc (fp); l &= 0xff; if (l == 0) l = 256; for (x = 0; x < l; x++) { r = fgetc (fp); g = fgetc (fp); b = fgetc (fp); #ifdef LC_X11 pal[x].red = r; pal[x].green = g; pal[x].blue = b; pal[x].flags = DoRed | DoGreen | DoBlue; #else gl_setpalettecolor (x, r, g, b); #endif } /* use last 4 colours for text */ #ifdef LC_X11 pal[SI_BLACK].red = 0; pal[SI_BLACK].green = 0; pal[SI_BLACK].blue = 0; pal[SI_BLACK].flags = DoRed | DoGreen | DoBlue; pal[SI_RED].red = 60; pal[SI_RED].green = 0; pal[SI_RED].blue = 0; pal[SI_RED].flags = DoRed | DoGreen | DoBlue; pal[SI_GREEN].red = 0; pal[SI_GREEN].green = 60; pal[SI_GREEN].blue = 0; pal[SI_GREEN].flags = DoRed | DoGreen | DoBlue; pal[SI_YELLOW].red = 60; pal[SI_YELLOW].green = 60; pal[SI_YELLOW].blue = 0; pal[SI_YELLOW].flags = DoRed | DoGreen | DoBlue; open_setcustompalette (pal); suppress_next_expose = 1; do { while (XPending (display.dpy) == 0); XNextEvent (display.dpy, &xev); HandleEvent (&xev); } while (xev.type != MapNotify); #else gl_setpalettecolor (SI_BLACK, 0, 0, 0); gl_setpalettecolor (SI_RED, 60, 0, 0); gl_setpalettecolor (SI_GREEN, 0, 60, 0); gl_setpalettecolor (SI_YELLOW, 60, 60, 0); #endif #if defined (WIN32) UpdatePalette (); #endif for (y = 0; y < 480; y++) for (x = 0; x < 640; x++) { l = fgetc (fp); /* // printf("l=%d x=%d y=%d ",l,x,y); // octree doesn't seem to want to generate images with 252 colours! // So the next best thing (well the easyest) is to just map the pixels // coloured as the last 4 colours to the 4 before that. // If it looks OK, leave it. */ if (l == SI_BLACK) l = SI_BLACK - 4; if (l == SI_RED) l = SI_RED - 4; if (l == SI_GREEN) l = SI_GREEN - 4; if (l == SI_YELLOW) l = SI_YELLOW - 4; Fgl_setpixel (x, y, l); } fclose_read_gzipped (fp); #if defined (WIN32) RefreshScreen (); #endif start_image_text (); } void start_image_text (void) { #if defined (SVGALIB) gl_setwritemode (FONT_COMPRESSED); #endif Fgl_setfont (8, 8, start_font1); #if defined (SVGALIB) gl_setwritemode (FONT_COMPRESSED); #endif Fgl_setfontcolors (SI_BLACK, SI_RED); si_scroll_text (); } void si_scroll_text (void) { char s[LC_PATH_MAX], line1[100], line2[100], line3[100], c; int i, t, l1c = 0, l2c = 0, l3c = 0; FILE *inf1, *inf2, *inf3; #ifdef LC_X11 XEvent xev; #endif Fgl_enableclipping (); sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "text1"); if ((inf1 = fopen (s, "rb")) == NULL) do_error ("Can't open opening/text1"); for (i = 0; i < 52; i++) line1[i] = si_next_char (inf1); line1[52] = 0; sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "text2"); if ((inf2 = fopen (s, "rb")) == NULL) do_error ("Can't open opening/text2"); for (i = 0; i < 52; i++) line2[i] = si_next_char (inf2); line2[52] = 0; sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "text3"); if ((inf3 = fopen (s, "rb")) == NULL) do_error ("Can't open opening/text3"); for (i = 0; i < 52; i++) line3[i] = si_next_char (inf3); line3[52] = 0; do { get_real_time (); t = real_time + SPLASH_SCROLL_DELAY; #ifdef LC_X11 if (XPending (display.dpy)) { XNextEvent (display.dpy, &xev); HandleEvent (&xev); } c = x_key_value; #elif defined (WIN32) c = GetKeystroke (); #else c = vga_getkey (); #endif if (l1c >= 8) { for (i = 0; i < 51; i++) line1[i] = line1[i + 1]; line1[51] = si_next_char (inf1); l1c = 0; } Fgl_setfont (8, 8, start_font1); Fgl_setclippingwindow (120, 30, 520, 40); Fgl_setfontcolors (SI_BLACK, SI_RED); #if defined (LC_X11) || defined (WIN32) open_write (120 - l1c, 31, line1); #else Fgl_write (120 - l1c, 31, line1); #endif l1c++; if (l2c >= 8) { for (i = 0; i < 51; i++) line2[i] = line2[i + 1]; line2[51] = si_next_char (inf2); l2c = 0; } Fgl_setfont (8, 16, start_font2); Fgl_setclippingwindow (120, 55, 520, 73); Fgl_setfontcolors (SI_BLACK, SI_GREEN); #if defined (LC_X11) || defined (WIN32) open_write (120 - l2c, 57, line2); #else Fgl_write (120 - l2c, 57, line2); #endif l2c += 2; if (l3c >= 8) { for (i = 0; i < 51; i++) line3[i] = line3[i + 1]; line3[51] = si_next_char (inf3); l3c = 0; } Fgl_setfont (8, 16, start_font3); Fgl_setclippingwindow (120, 88, 520, 106); Fgl_setfontcolors (SI_BLACK, SI_YELLOW); #if defined (LC_X11) || defined (WIN32) open_write (120 - l3c, 90, line3); #else Fgl_write (120 - l3c, 90, line3); #endif l3c += 2; #if defined (WIN32) /* Scroll a little faster for WIN32 */ if (pix_double) { l1c += 10; l2c += 10; l3c += 10; } else { l1c += 2; l2c += 4; l3c += 4; } #endif while (real_time < t) { lc_usleep (1); get_real_time (); } } while (c == 0); fclose (inf1); fclose (inf2); fclose (inf3); Fgl_disableclipping (); } char si_next_char (FILE * inf) { char c; if (feof (inf) != 0) fseek (inf, 0L, SEEK_SET); c = fgetc (inf); if (c == 0xa || c == 0xd) c = ' '; return (c); } lincity-1.13.1/lchelp.c0000644000175000017500000004002707744312243011615 00000000000000/* ---------------------------------------------------------------------- * * lchelp.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include #include "common.h" #include "lctypes.h" #include "fileutil.h" #include "lin-city.h" #include "lchelp.h" #include "mouse.h" #include "geometry.h" #include "lcintl.h" #include "module_buttons.h" #include "screen.h" /* About help history: History count starts at 0, but is immediately incremented to 1. Current page is stored at help_button_history[help_history_count-1], which is the top of the stack. When "back" is clicked, history count is decremented by 2, and then incremented by one. */ void activate_help (char *hp) { help_flag = 1; help_history_count = 0; help_return_val = 0; #ifdef USE_EXPANDED_FONT Fgl_setwritemode (WRITEMODE_MASKED | FONT_EXPANDED); #else Fgl_setfontcolors (HELPBACKGROUNDCOLOUR, TEXT_FG_COLOUR); #endif draw_help_page (hp); } void do_help_mouse (int x, int y, int mbutton) { Rect* mw = &scr.main_win; if (mouse_in_rect(mw, x, y)) { do_help_buttons (x, y); return; } if (block_help_exit) return; help_flag = 0; #ifdef USE_EXPANDED_FONT Fgl_setwritemode (WRITEMODE_OVERWRITE | FONT_EXPANDED); #else Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); #endif refresh_main_screen (); } void draw_help_page (char *helppage) { Rect* mw = &scr.main_win; char *helppage_full, *helppage_short; int i, y; FILE *inf; char help_line[MAX_HELP_LINE]; /* In ask-dir page if user presses "yes" create directory in main loop */ #if defined (commentout) if ((strcmp (helppage, "opening.hlp") == 0) && (strcmp (help_button_history[help_history_count - 1], "ask-dir.hlp") == 0)) { make_dir_ok_flag = 1; } #endif /* Return pages have arguments. It is always true that "-2" means "Out" and "-1" means "Back". Semantics for other arguments depend upon the name of the source page (e.g. load game or choose residence). Most of the times (except "Back"), this will exit the help system. */ if (strncmp (helppage, "return", 6) == 0) { sscanf (&(helppage[6]), "%d", &help_return_val); /* If "Back" was clicked */ if (help_return_val == -1 && help_history_count > 1) { strcpy (helppage, help_button_history[help_history_count - 2]); help_history_count -= 2; goto continue_with_help; } /* XXX: WCK: residential selection is really ugly */ if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "res.tmp") == 0) { switch (help_return_val) { case (-2): case (-1): case (0): #if defined (commentout) case (1): selected_module_type = CST_RESIDENCE_LL; selected_module_cost = get_group_cost (GROUP_RESIDENCE_LL); break; case (2): selected_module_type = CST_RESIDENCE_ML; selected_module_cost = get_group_cost (GROUP_RESIDENCE_ML); break; case (3): selected_module_type = CST_RESIDENCE_HL; selected_module_cost = get_group_cost (GROUP_RESIDENCE_HL); break; case (4): selected_module_type = CST_RESIDENCE_LH; selected_module_cost = get_group_cost (GROUP_RESIDENCE_LH); break; case (5): selected_module_type = CST_RESIDENCE_MH; selected_module_cost = get_group_cost (GROUP_RESIDENCE_MH); break; case (6): selected_module_type = CST_RESIDENCE_HH; selected_module_cost = get_group_cost (GROUP_RESIDENCE_HH); break; #endif case (1): set_selected_module (CST_RESIDENCE_LL); break; case (2): set_selected_module (CST_RESIDENCE_ML); break; case (3): set_selected_module (CST_RESIDENCE_HL); break; case (4): set_selected_module (CST_RESIDENCE_LH); break; case (5): set_selected_module (CST_RESIDENCE_MH); break; case (6): set_selected_module (CST_RESIDENCE_HH); break; } } else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "menu.hlp") == 0) { switch (help_return_val) { case 1: save_flag = 1; break; case 2: prefs_flag = 1; break; case 3: quit_flag = 1; break; } } else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "opening.hlp") == 0) { switch (help_return_val) { case (-2): case (-1): case (0): /* Random villiage */ new_city (&main_screen_originx, &main_screen_originy, 1); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (1): /* Bare board */ new_city (&main_screen_originx, &main_screen_originy, 0); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (2): /* Network start */ network_flag = 1; break; } } else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "newgame.hlp") == 0) { switch (help_return_val) { case (0): /* Random villiage */ new_city (&main_screen_originx, &main_screen_originy, 1); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (1): /* Bare board */ new_city (&main_screen_originx, &main_screen_originy, 0); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (2): /* Network start */ network_flag = 1; break; } } else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "openload.hlp") == 0) { switch (help_return_val) { case (-2): case (-1): case (0): new_city (&main_screen_originx, &main_screen_originy, 1); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (1): redraw_mouse (); load_opening_city ("good_times.scn"); adjust_main_origin (main_screen_originx,main_screen_originy,0); hide_mouse (); break; case (2): load_opening_city ("bad_times.scn"); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (9): load_flag = 1; break; } } else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "loadgame.hlp") == 0) { switch (help_return_val) { case (1): redraw_mouse (); load_opening_city ("good_times.scn"); adjust_main_origin (main_screen_originx,main_screen_originy,0); hide_mouse (); break; case (2): load_opening_city ("bad_times.scn"); adjust_main_origin (main_screen_originx,main_screen_originy,0); break; case (9): load_flag = 1; break; } } #if defined (commentout) else if (help_history_count > 0 && strcmp (help_button_history[help_history_count - 1], "ask-dir.hlp") == 0) { if (help_return_val == 1) { /* Clicking "no" means no directory is created */ do_error (_("Sorry, lincity cannot run without this directory. Exiting.")); } else if (help_return_val == -2) { /* Clicking "out" means we want to create directory, and then go to opening screen. */ /* Warning: Note that "opening.hlp" is the same length as "ask-dir.hlp". */ make_dir_ok_flag = 1; strcpy (helppage, "opening.hlp"); goto continue_with_help; } } #endif block_help_exit = 0; help_flag = 0; /* GCS Remove overlay */ if (main_screen_flag == MAIN_SCREEN_EQUALS_MINI) { main_screen_flag = MAIN_SCREEN_NORMAL_FLAG; } /* Fix origin */ #ifdef USE_EXPANDED_FONT Fgl_setwritemode (WRITEMODE_OVERWRITE | FONT_EXPANDED); #else Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); #endif refresh_main_screen (); return; } continue_with_help: /* This buffer is just a copy of helppage. Sometimes helppage is an entry within help_button_s[], which gets overwritten when the page is parsed. */ if ((helppage_short = (char*) malloc (strlen(helppage) + 1)) == 0) { malloc_failure (); } strcpy (helppage_short, helppage); /* Right click on mini-screen */ if (strncmp (helppage, "mini-screen.hlp", 15) == 0) { draw_big_mini_screen (); } else if (strncmp (helppage, "mini-in-main.hlp", 17) == 0) { /* do nothing */ } else { /* This buffer is for the full path of the help file. The file might be either in the help directory (most cases), or in the temp directory (dynamically created pages). */ if ((helppage_full = (char *) malloc (lc_save_dir_len + strlen (help_path) + strlen(helppage) + 2)) == 0) { malloc_failure (); } /* Open the file */ sprintf (helppage_full, "%s%s", help_path, helppage); if ((inf = fopen (helppage_full, "r")) == 0) { sprintf (helppage_full, "%s%c%s", lc_save_dir, PATH_SLASH, helppage); if ((inf = fopen (helppage_full, "r")) == 0) { sprintf (helppage_full, "%s%s", help_path, HELPERRORPAGE); if ((inf = fopen (helppage_full, "r")) == 0) do_error ("Help error"); } } /* Parse and render help file */ numof_help_buttons = 0; Fgl_fillbox (mw->x, mw->y, mw->w, mw->h, HELPBACKGROUNDCOLOUR); while (feof (inf) == 0) { if (fgets (help_line, MAX_HELP_LINE, inf) == 0) break; undosify_string (help_line); /* GCS testing... */ parse_helpline (help_line); } fclose (inf); /* For ask-dir, we add path info */ if (strncmp (helppage_short, "ask-dir.hlp", 11) == 0) { parse_helpline ("tcolour 0 255"); y = 100; for (i = 0; i < askdir_lines; i++) { sprintf (help_line, "text -1 %d %s", y, askdir_path[i]); parse_helpline (help_line); y += 14; } } free (helppage_full); } /* At this point, most of the page has been rendered. Now we have to draw in the "BACK" and "OUT" buttons. */ if (help_history_count > 0) { parse_helpline ("tcolour 122 153"); /* TRANSLATOR: Only translate "BACK" */ parse_helpline (_("tbutton 4 387 return-1 BACK")); } parse_helpline ("tcolour 188 153"); /* TRANSLATOR: Only translate "OUT" */ parse_helpline (_("tbutton 370 387 return-2 OUT")); parse_helpline ("tcolour -1 -1"); /* Add help page to history. If history is going to overflow, throw out oldest page. */ strcpy (help_button_history[help_history_count], helppage_short); help_history_count++; if (help_history_count >= MAX_HELP_HISTORY) { for (i = 0; i < (MAX_HELP_HISTORY - 1); i++) strcpy (help_button_history[i], help_button_history[i + 1]); help_history_count--; } free (helppage_short); } void refresh_help_page (void) { help_history_count -= 1; draw_help_page (help_button_history[help_history_count]); } void parse_helpline (char *s) { if (strncmp (s, "text", 4) == 0) parse_textline (s); else if (strncmp (s, "icon", 4) == 0) parse_iconline (s); else if (strncmp (s, "button", 6) == 0) parse_buttonline (s); else if (strncmp (s, "tbutton", 7) == 0) parse_tbuttonline (s); else if (strncmp (s, "tcolour", 7) == 0) parse_tcolourline (s); } void parse_tcolourline (char *st) { char s[100]; int f, b; strcpy (s, st); /* hpux fix? we can live with this. */ sscanf (s, "tcolour %d %d", &f, &b); if (f < 0 || b < 0) Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); else Fgl_setfontcolors (b, f); } void parse_textline (char *st) { Rect* mw = &scr.main_win; int i, j, x, y; sscanf (st, "text %d %d", &x, &y); /* find start of string */ i = 0; for (j = 0; j < 3; j++) { while (isspace (st[i]) == 0) { if (st[i] == 0) return; /* just silently ignore */ i++; } while (isspace (st[i]) != 0) { if (st[i] == 0) return; i++; } } st += i; /* get rid of the newline */ if (st[strlen (st) - 1] == 0xa) st[strlen (st) - 1] = 0; if (x < 0) { /* centre text if x is negative */ x = (mw->w / 2) - (strlen (st) * 4); if (x < 0) return; /* line was too long */ } else { /* otherwise adjust x location to within center zone */ x = x + (mw->w - 440) / 2; } /* check to see if text runs off the end */ if ((int) (strlen (st) * 8) > (mw->w - x)) return; Fgl_write (mw->x + x, mw->y + y, st); } void parse_iconline (char *st) { int i, j, x, y; sscanf (st, "icon %d %d", &x, &y); /* find start of string */ i = 0; for (j = 0; j < 3; j++) { while (isspace (st[i]) == 0) { if (st[i] == 0) return; /* just silently ignore */ i++; } while (isspace (st[i]) != 0) { if (st[i] == 0) return; i++; } } st += i; /* get rid of the newline */ if (st[strlen (st) - 1] == 0xa) st[strlen (st) - 1] = 0; draw_help_icon (x, y, st); } void draw_help_icon (int x, int y, char *icon) { Rect* mw = &scr.main_win; int i, l, w, h; char ss[LC_PATH_MAX]; FILE *inf; strcpy (ss, graphic_path); strcat (ss, icon); if ((inf = fopen (ss, "rb")) == NULL) { return; } fseek (inf, 0L, SEEK_END); l = ftell (inf); fseek (inf, 0L, SEEK_SET); if (l == 256) w = h = 16; else if (l == 1024) w = h = 32; else if (l == 2304) w = h = 48; else if (l == 4096) w = h = 64; else { fclose (inf); return; } for (i = 0; i < l; i++) *(help_graphic + i) = fgetc (inf); fclose (inf); /* Adjust x location to within center zone */ x = x + (mw->w - 440) / 2; if (x > 0 && y > 0 && ((x + w) < mw->w) && ((y + h) < mw->h)) Fgl_putbox (mw->x + x, mw->y + y, w, h, help_graphic); return; } void parse_buttonline (char *st) { Rect* mw = &scr.main_win; int i, j, x, y, w, h; sscanf (st, "button %d %d %d %d", &x, &y, &w, &h); /* find start of string */ i = 0; for (j = 0; j < 5; j++) { while (isspace (st[i]) == 0) { if (st[i] == 0) return; /* just silently ignore */ i++; } while (isspace (st[i]) != 0) { if (st[i] == 0) return; i++; } } st += i; /* get rid of the newline */ if (st[strlen (st) - 1] == 0xa) st[strlen (st) - 1] = 0; if (x < 0) { /* centre x of box if x is negative */ x = (mw->w / 2) - (w / 2); if (x < 0) return; /* line was too long */ } else { /* otherwise adjust x location to within center zone */ x = x + (mw->w - 440) / 2; } /* see if the button runs off the end */ if ((x + w) > mw->w) return; if (numof_help_buttons >= MAX_NUMOF_HELP_BUTTONS) return; help_button_x[numof_help_buttons] = x + mw->x; help_button_y[numof_help_buttons] = y + mw->y; help_button_w[numof_help_buttons] = w; help_button_h[numof_help_buttons] = h; if (strlen (st) >= MAX_LENOF_HELP_FILENAME) return; strcpy (help_button_s[numof_help_buttons], st); numof_help_buttons++; /* draw the box */ Fgl_hline (mw->x + x, mw->y + y, mw->x + x + w, HELPBUTTON_COLOUR); Fgl_hline (mw->x + x, mw->y + y + h, mw->x + x + w, HELPBUTTON_COLOUR); Fgl_line (mw->x + x, mw->y + y, mw->x + x, mw->y + y + h, HELPBUTTON_COLOUR); Fgl_line (mw->x + x + w, mw->y + y, mw->x + x + w, mw->y + y + h, HELPBUTTON_COLOUR); } void do_help_buttons (int x, int y) { int i; if (numof_help_buttons <= 0) return; for (i = 0; i < numof_help_buttons; i++) if (x > help_button_x[i] && x < (help_button_x[i] + help_button_w[i]) && y > help_button_y[i] && y < (help_button_y[i] + help_button_h[i])) { hide_mouse (); draw_help_page (help_button_s[i]); redraw_mouse (); break; } } void parse_tbuttonline (char *st) { char s[100], ss[120], s1[100]; int i, j, x, y; strcpy (s1, st); /* hpux fix? we can live with this. */ sscanf (s1, "tbutton %d %d %s", &x, &y, s); /* find start of string */ i = 0; for (j = 0; j < 4; j++) { while (isspace (st[i]) == 0) { if (st[i] == 0) return; /* just silently ignore */ i++; } while (isspace (st[i]) != 0) { if (st[i] == 0) return; i++; } } st += i; /* get rid of the newline */ if (st[strlen (st) - 1] == 0xa) st[strlen (st) - 1] = 0; if (x < 0) x -= 2; /* needed to keep text centred */ sprintf (ss, "text %d %d ", x + 2, y + 2); strcat (ss, st); parse_textline (ss); sprintf (ss, "button %d %d %d %d %s", x, y, (strlen (st) * 8) + 4, 12, s); parse_buttonline (ss); } lincity-1.13.1/main.c0000644000175000017500000004674510071463511011277 00000000000000/* ---------------------------------------------------------------------- * * main.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #include "cliglobs.h" #include "lchelp.h" #include "dialbox.h" #include /* this is for OS/2 - RVI */ #ifdef __EMX__ #include #include /* required for __XOS2RedirRoot */ #define chown(x,y,z) /* #define OS2_DEFAULT_LIBDIR "/XFree86/lib/X11/lincity" */ /* This was moved to fileutil.c */ #endif #include #include #if defined (WIN32) #include #include #include #include #endif #include #include #include "common.h" #ifdef LC_X11 #include #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "timer.h" #include "ldsvgui.h" #include "simulate.h" #include "mouse.h" #include "pixmap.h" #include "screen.h" #include "lcintl.h" #include "engine.h" #include "module_buttons.h" #include "fileutil.h" #if defined (WIN32) && !defined (NDEBUG) #define START_FAST_SPEED 1 //#define SKIP_OPENING_SCENE 1 #endif #define SI_BLACK 252 #define SI_RED 253 #define SI_GREEN 254 #define SI_YELLOW 255 #define DEBUG_KEYS 1 /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ void dump_screen (void); void verify_package (void); char* current_month (int current_time); int current_year (int current_time); void process_keystrokes (int key); int execute_timestep (void); /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ #if defined (commentout) /* Moved to fileutil.c */ #if defined (WIN32) char LIBDIR[_MAX_PATH]; #elif defined (__EMX__) #ifdef LIBDIR #undef LIBDIR /* yes, I know I shouldn't ;-) */ #endif /* GCS: Presumably I can do this, right? */ #if defined (commentout) char LIBDIR[256]; #endif char LIBDIR[LC_PATH_MAX]; #endif #endif char *lc_save_dir; char *lc_temp_file; char save_names[10][42]; #ifdef CS_PROFILE int prof_countdown = PROFILE_COUNTDOWN; #endif /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ #if !defined (WIN32) int main (int argc, char *argv[]) { return lincity_main (argc, argv); } #endif void lincity_set_locale (void) { char* locale = NULL; char* localem = NULL; #if defined (WIN32) #define MAX_LANG_BUF 1024 char* language = NULL; char language_buf[MAX_LANG_BUF]; #endif #if defined (ENABLE_NLS) #if defined (WIN32) /* Some special stoopid way of setting locale for microsoft gettext */ language = getenv ("LANGUAGE"); if (language) { debug_printf ("Environment variable LANGUAGE is %s\n", language); snprintf (language_buf, MAX_LANG_BUF, "LANGUAGE=%s", language); gettext_putenv(language_buf); } else { debug_printf ("Environment variable LANGUAGE not set.\n"); } #else locale = setlocale (LC_ALL, ""); debug_printf ("Setting entire locale to %s\n", locale); locale = setlocale (LC_MESSAGES, ""); debug_printf ("Setting messages locale to %s\n", locale); localem = setlocale (LC_MESSAGES, NULL); debug_printf ("Query locale is %s\n", localem); #endif #endif /* ENABLE_NLS */ return; } int lincity_main (int argc, char *argv[]) { #if defined (LC_X11) char *geometry = NULL; #endif #if defined (SVGALIB) int q; vga_init (); #endif #if !defined (WIN32) signal (SIGPIPE, SIG_IGN); /* broken pipes are ignored. */ #endif /* Initialize some global variables */ //make_dir_ok_flag = 1; main_screen_originx = 1; main_screen_originy = 1; given_scene[0] = 0; quit_flag = network_flag = load_flag = save_flag = prefs_flag = cheat_flag = monument_bul_flag = river_bul_flag = shanty_bul_flag; prefs_drawn_flag = 0; kmouse_val = 8; #ifdef LC_X11 borderx = 0; bordery = 0; parse_xargs (argc, argv, &geometry); #endif /* I18n */ lincity_set_locale (); /* Set up the paths to certain files and directories */ init_path_strings (); /* Make sure that things are installed where they should be */ verify_package (); /* Make sure the save directory exists */ check_savedir (); /* Load preferences */ load_lincityrc (); #ifndef CS_PROFILE #ifdef SEED_RAND srand (time (0)); #endif #endif #ifdef LC_X11 #if defined (commentout) borderx = 0; bordery = 0; parse_xargs (argc, argv, &geometry); #endif Create_Window (geometry); pirate_cursor = XCreateFontCursor (display.dpy, XC_pirate); #elif defined (WIN32) /* Deal with all outstanding messages */ ProcessPendingEvents (); #else parse_args (argc, argv); q = vga_setmode (G640x480x256); gl_setcontextvga (G640x480x256); #endif #if defined (WIN32) || defined (LC_X11) initialize_pixmap (); #endif init_fonts (); #if defined (SKIP_OPENING_SCENE) skip_splash_screen = 1; #endif if (!skip_splash_screen) { load_start_image (); } #ifdef LC_X11 unlock_window_size (); #endif Fgl_setfont (8, 8, main_font); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); initialize_geometry (&scr); #if defined (SVGALIB) set_vga_mode (); #endif initialize_monthgraph (); init_mouse_registry (); init_mini_map_mouse (); mps_init(); #ifdef LC_X11 x_key_value = 0; #elif defined (WIN32) RefreshScreen (); #endif setcustompalette (); draw_background (); prog_box (_("Loading the game"), 1); init_types (); init_modules(); init_mappoint_array (); initialize_tax_rates (); prog_box ("", 95); mouse_hide_count = 0; suppress_ok_buttons = 0; prog_box ("", 100); #ifdef USE_PIXMAPS prog_box (_("Creating pixmaps"), 1); init_pixmaps (); prog_box ("", 100); #endif //draw_normal_mouse (1, 1); #if defined (LC_X11) init_x_mouse (); #endif init_timer_buttons(); mouse_initialized = 1; //set_selected_module (CST_TRACK_LR); screen_setup (); /* Main loop! */ client_main_loop (); #if defined (SVGALIB) mouse_close (); vga_setmode (TEXT); #endif print_results (); #if defined (WIN32) || defined (LC_X11) free_pixmap (); #endif #if defined (WIN32) return 0; #else exit (0); #endif } void client_main_loop (void) { int quit = 0; /* Set up the game */ reset_start_time (); update_avail_modules (0); screen_full_refresh (); if (no_init_help == 0) { block_help_exit = 1; help_flag = 1; #if defined (commentout) if (make_dir_ok_flag) { activate_help ("ask-dir.hlp"); make_dir_ok_flag = 0; } else { activate_help ("opening.hlp"); } #endif activate_help ("opening.hlp"); } /* Set speed */ #if defined (CS_PROFILE) || defined (START_FAST_SPEED) select_fast (); #else select_medium (); #endif /* Main Loop */ do { int key; /* Get timestamp for this iteration */ get_real_time(); /* Process events */ #if defined (LC_X11) call_event (); key = x_key_value; x_key_value = 0; #elif defined (WIN32) call_event (); key = GetKeystroke (); #else mouse_update (); key = vga_getkey (); #endif /* nothing happened if key == 0 XXX: right? */ /* GCS: I'm not sure */ if (key != 0) { process_keystrokes (key); } /* Simulate the timestep */ quit = execute_timestep (); } while (quit == 0); } void process_keystrokes (int key) { #if defined (commentout) /* KBR 10/14/2002 - Cleanup MSVC warning */ int retval; #endif switch (key) { case 0: printf("dead!"); return; case ' ': /* Space */ case 10: /* Linefeed/Return */ case 13: /* Enter */ case 127: /* Backspace */ if (key == 127) { cs_mouse_handler (LC_MOUSE_RIGHTBUTTON | LC_MOUSE_PRESS, 0, 0); cs_mouse_handler (LC_MOUSE_RIGHTBUTTON | LC_MOUSE_RELEASE, 0, 0); } else { cs_mouse_handler (LC_MOUSE_LEFTBUTTON | LC_MOUSE_PRESS, 0, 0); cs_mouse_handler (LC_MOUSE_LEFTBUTTON | LC_MOUSE_RELEASE, 0, 0); } if (help_flag) { draw_help_page ("return-2"); } if (prefs_flag) { close_prefs_screen (); refresh_main_screen (); } break; #if defined (SVGALIB) case 91: { int w = vga_getkey (); switch (w) { case ('A'): cs_mouse_handler (0, 0, -kmouse_val); break; case ('B'): cs_mouse_handler (0, 0, kmouse_val); break; case ('C'): cs_mouse_handler (0, kmouse_val, 0); break; case ('D'): cs_mouse_handler (0, -kmouse_val, 0); break; } } break; #endif #if defined (WIN32) || defined (LC_X11) case 1: /* Scroll left */ if (x_key_shifted) { adjust_main_origin (main_screen_originx - RIGHT_MOUSE_MOVE_VAL, main_screen_originy, TRUE); } else { adjust_main_origin (main_screen_originx - 1, main_screen_originy, TRUE); } break; case 2: /* Scroll down */ if (x_key_shifted) { adjust_main_origin (main_screen_originx, main_screen_originy + RIGHT_MOUSE_MOVE_VAL, TRUE); } else { adjust_main_origin (main_screen_originx, main_screen_originy + 1, TRUE); } break; case 3: /* Scroll up */ if (x_key_shifted) { adjust_main_origin (main_screen_originx, main_screen_originy - RIGHT_MOUSE_MOVE_VAL, TRUE); } else { adjust_main_origin (main_screen_originx, main_screen_originy - 1, TRUE); } break; case 4: /* Scroll right */ if (x_key_shifted) { adjust_main_origin (main_screen_originx + RIGHT_MOUSE_MOVE_VAL, main_screen_originy, TRUE); } else { adjust_main_origin (main_screen_originx + 1, main_screen_originy, TRUE); } break; #endif case 'P': case 'p': select_pause (); break; #ifdef DEBUG_KEYS case 'e': if (cheat () != 0) people_pool += 100; break; case 'd': if (cheat () != 0) dump_screen (); break; case 'D': /* dump_tcore (); */ break; case 't': if (cheat () != 0) tech_level += 1000; break; case 'T': if (cheat () != 0) tech_level += 10000; break; case 'm': if (cheat () != 0) adjust_money(1000000); break; #endif case 'f': do_random_fire (-1, -1, 1); break; case 'L': case 'l': load_flag = 1; break; case 'H': case 'h': activate_help ("index.hlp"); break; /* Escape Key */ #ifdef LC_X11 case 27: #else case 5: #endif if (help_flag) { /* exit help */ draw_help_page("return-2"); } else if (prefs_flag) { close_prefs_screen(); refresh_main_screen (); } else { activate_help ("menu.hlp"); } break; case 'S': case 's': save_flag = 1; break; case 'v': case 'V': /* Toggle overlay */ rotate_main_screen(); break; case 'o': case 'O': prefs_flag = 1; break; case 'r': window_results(); break; case 'q': case 'Q': quit_flag = 1; break; } /* end switch on keystroke */ } /* The "guts" of main loop is here. */ int execute_timestep (void) { static int next_time_step = 0; int real_quit_flag = 0; if (market_cb_flag == 0 && help_flag == 0 && port_cb_flag == 0 && prefs_flag == 0) { if ((real_time < next_time_step || pause_flag || mt_flag) && save_flag == 0 && load_flag == 0) { if ((let_one_through == 0) || mt_flag) { lc_usleep (1); return 0; } else let_one_through = 0; } if (slow_flag) next_time_step = real_time + (SLOW_TIME_FOR_YEAR * 1000 / NUMOF_DAYS_IN_YEAR); else if (fast_flag) next_time_step = real_time + (FAST_TIME_FOR_YEAR * 1000 / NUMOF_DAYS_IN_YEAR); else if (med_flag) next_time_step = real_time + (MED_TIME_FOR_YEAR * 1000 / NUMOF_DAYS_IN_YEAR); do_time_step (); #ifdef CS_PROFILE if (--prof_countdown <= 0) real_quit_flag = 1; #endif update_main_screen (0); /* XXX: Shouldn't the rest be handled in update_main_screen()? */ /* GCS: No, I don't think so. These remaining items are outside of the main screen */ print_stats (); if (market_cb_flag) draw_market_cb (); else if (port_cb_flag) /* else- can't have both */ draw_port_cb (); } else /* if game is "stalled" */ { if (market_cb_flag != 0 && market_cb_drawn_flag == 0) draw_market_cb (); if (port_cb_flag != 0 && port_cb_drawn_flag == 0) draw_port_cb (); #if defined (SVGALIB) mouse_update (); #endif } #if defined (NETWORK_ENABLE) if (network_flag != 0) { do_network_screen (); network_flag = 0; let_one_through = 1; /* if we are paused we need */ } /* this to redraw the screen */ #endif if (prefs_flag != 0 && prefs_drawn_flag == 0) { do_prefs_screen (); let_one_through = 1; /* if we are paused we need */ } /* this to redraw the screen */ if (load_flag != 0) { #if defined (WIN32) DisableWindowsMenuItems (); #endif if (help_flag == 0) /* block loading when in help */ do_load_city (); load_flag = 0; let_one_through = 1; /* if we are paused we need */ } /* this to redraw the screen */ else if (save_flag != 0) { #if defined (WIN32) DisableWindowsMenuItems (); #endif if (help_flag == 0) do_save_city (); save_flag = 0; let_one_through = 1; } else if (quit_flag != 0) { #if defined (WIN32) DisableWindowsMenuItems (); #endif if (yn_dial_box (_("Quit The Game?") ,_("Do you really want to quit?") ,_("If you want to save the game select NO.") ,"" /* GCS: This can't be translated!. */ ) != 0) real_quit_flag = 1; else quit_flag = 0; } if (help_flag != 0) lc_usleep (1); #if defined (commentout) if (make_dir_ok_flag) make_savedir (); /* sorry a bit crude :( */ #endif return real_quit_flag; } void do_error (char *s) { #if defined (LC_X11) || defined (WIN32) HandleError (s, FATAL); #else vga_setmode (TEXT); printf ("%s\n", s); exit (1); #endif } int cheat (void) { if (cheat_flag != 0) return (1); /* TRANSLATORS: Test mode is like using "cheat codes" */ if (yn_dial_box (_("TEST"), _("You have pressed a test key"), _("You will only see this message once"), _("Do you really want to play in test mode..."))!= 0) { cheat_flag = 1; print_time_for_year(); /* Displays TEST MODE or not */ return (1); } return (0); } int compile_results (void) { char *s; FILE *outf; int group_count[NUM_OF_GROUPS]; if ((s = (char *) malloc (lc_save_dir_len + strlen (LC_SAVE_DIR) + strlen (RESULTS_FILENAME) + 64)) == 0) malloc_failure (); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, RESULTS_FILENAME); count_all_groups (group_count); if ((outf = fopen (s, "w")) == 0) { printf (_("Unable to open %s\n"), RESULTS_FILENAME); free (s); return (0); } if (cheat_flag) fprintf (outf, _("----- IN TEST MODE -------\n")); fprintf (outf, _("Game statistics from LinCity Version %s\n"), VERSION); if (strlen (given_scene) > 3) fprintf (outf, _("Initial loaded scene - %s\n"), given_scene); if (sustain_flag) fprintf (outf, _("Economy is sustainable\n")); fprintf (outf, _("Population %d of which %d are not housed.\n") ,housed_population + people_pool, people_pool); fprintf (outf, _("Max population %d Number evacuated %d Total births %d\n") ,max_pop_ever, total_evacuated, total_births); fprintf (outf, _(" Date %s %04d Money %8d Tech-level %5.1f (%5.1f)\n"), current_month(total_time), current_year(total_time), total_money, (float) tech_level * 100.0 / MAX_TECH_LEVEL, (float) highest_tech_level * 100.0 / MAX_TECH_LEVEL); fprintf (outf, _(" Deaths by starvation %7d History %8.3f\n"), total_starve_deaths, starve_deaths_history); fprintf (outf, _("Deaths from pollution %7d History %8.3f\n"), total_pollution_deaths, pollution_deaths_history); fprintf (outf, _("Years of unemployment %7d History %8.3f\n"), total_unemployed_years, unemployed_history); fprintf (outf, _("Rockets launched %2d Successful launches %2d\n"), rockets_launched, rockets_launched_success); fprintf (outf, "\n"); fprintf (outf, _(" Residences %4d Markets %4d Farms %4d\n"), group_count[GROUP_RESIDENCE_LL] + group_count[GROUP_RESIDENCE_ML] + group_count[GROUP_RESIDENCE_HL] + group_count[GROUP_RESIDENCE_LH] + group_count[GROUP_RESIDENCE_MH] + group_count[GROUP_RESIDENCE_HH], group_count[GROUP_MARKET], group_count[GROUP_ORGANIC_FARM]); fprintf (outf, _(" Tracks %4d Roads %4d Rail %4d\n") ,group_count[GROUP_TRACK], group_count[GROUP_ROAD] ,group_count[GROUP_RAIL]); fprintf (outf, _(" Potteries %4d Blacksmiths %4d Mills %4d\n") ,group_count[GROUP_POTTERY], group_count[GROUP_BLACKSMITH] ,group_count[GROUP_MILL]); fprintf (outf, _(" Monuments %4d Schools %4d Universities %4d\n") ,group_count[GROUP_MONUMENT], group_count[GROUP_SCHOOL] ,group_count[GROUP_UNIVERSITY]); fprintf (outf, _(" Fire stations %4d Parks %4d Cricket gnds %4d\n") ,group_count[GROUP_FIRESTATION], group_count[GROUP_PARKLAND] ,group_count[GROUP_CRICKET]); fprintf (outf, _(" Coal mines %4d Ore mines %4d Communes %4d\n") ,group_count[GROUP_COALMINE], group_count[GROUP_OREMINE] ,group_count[GROUP_COMMUNE]); fprintf (outf, _(" Windmills %4d Coal powers %4d Solar powers %4d\n"), group_count[GROUP_WINDMILL], group_count[GROUP_COAL_POWER], group_count[GROUP_SOLAR_POWER]); fprintf (outf, _(" Substations %4d Power lines %4d Ports %4d\n") ,group_count[GROUP_SUBSTATION], group_count[GROUP_POWER_LINE] ,group_count[GROUP_PORT]); fprintf (outf, _(" Light inds %4d Heavy inds %4d Recyclers %4d\n") ,group_count[GROUP_INDUSTRY_L], group_count[GROUP_INDUSTRY_H] ,group_count[GROUP_RECYCLE]); fprintf (outf, _("Health centres %4d Tips %4d Shanties %4d\n"), group_count[GROUP_HEALTH], group_count[GROUP_TIP], group_count[GROUP_SHANTY]); fclose (outf); free (s); return (1); } void print_results (void) { #if !defined (WIN32) /* GCS FIX: How should I do this? */ char *s; if (compile_results () == 0) return; if ((s = (char *) malloc (lc_save_dir_len + strlen (LC_SAVE_DIR) + strlen (RESULTS_FILENAME) + 64)) == 0) malloc_failure (); strcpy (s, "cat "); strcat (s, lc_save_dir); strcat (s, "/"); strcat (s, RESULTS_FILENAME); printf ("\n"); system (s); printf ("\n"); #endif } #if defined (commentout) void mail_results(void) { char s[256]; if (compile_results()==0) return; strcpy(s,"mail -s 'LinCity results' lc-results@floot.demon.co.uk < "); strcat(s,getenv("HOME")); strcat(s,"/"); strcat(s,LC_SAVE_DIR); strcat(s,"/"); strcat(s,RESULTS_FILENAME); system(s); } #endif void window_results (void) { char *s; if (compile_results () == 0) return; if ((s = (char *) malloc (lc_save_dir_len + strlen (LC_SAVE_DIR) + strlen (RESULTS_FILENAME) + 64)) == 0) malloc_failure (); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, RESULTS_FILENAME); ok_dial_box (s, RESULTS, 0L); } lincity-1.13.1/mouse.c0000644000175000017500000011017310071464105011466 00000000000000/* ---------------------------------------------------------------------- * * mouse.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include "common.h" #include "lctypes.h" #include "lcintl.h" #include "lin-city.h" #include "mouse.h" #include "engglobs.h" #include "cliglobs.h" #include "engine.h" #include "screen.h" #include "mps.h" #include "fileutil.h" #include "lchelp.h" #include "pbar.h" #include "lclib.h" #include "module_buttons.h" #define DEBUG_MT_CODE 1 extern Update_Scoreboard update_scoreboard; /* ---------------------------------------------------------------------- * * Private global variables * ---------------------------------------------------------------------- */ static struct mouse_button_struct buttons[NUM_BUTTONS]; static int mt_length; static int mt_grp; static char mt_name[20]; static short mouse_buffer_fresh = 0; void check_bulldoze_area (int x, int y); /* Mouse registry */ static int mhandle_count; static Mouse_Handle * mhandle_first; static Mouse_Handle * mhandle_last; static Mouse_Handle * mhandle_current; /* ---------------------------------------------------------------------- * * cs_mouse_handler * -- * If the event was a mouse click or mouse release, enc_button contains * the button identifier (e.g. LC_MOUSE_LEFTBUTTON) or'd with the * action identifier (e.g. LC_MOUSE_RELEASE). If the event was just a * mouse move, then enc_button is 0. You cannot specify multiple * mouse buttons clicked at the same time using this interface. * ---------------------------------------------------------------------- */ void cs_mouse_handler (int enc_button, int dx, int dy) { int x, y; int button = enc_button & ~LC_MOUSE_RELEASE & ~LC_MOUSE_PRESS; int button_pressed = enc_button & LC_MOUSE_PRESS; int button_released = enc_button & LC_MOUSE_RELEASE; int button_idx = button - 1; x = cs_mouse_x; y = cs_mouse_y; #if defined (SVGALIB) cs_mouse_x += dx * MOUSE_SENSITIVITY; cs_mouse_y += dy * MOUSE_SENSITIVITY; #else cs_mouse_x += dx; cs_mouse_y += dy; #endif #if defined (SVGALIB) if (cs_mouse_x >= cs_mouse_xmax) cs_mouse_x = cs_mouse_xmax; if (cs_mouse_y >= cs_mouse_ymax) cs_mouse_y = cs_mouse_ymax; if (cs_mouse_x < 0) cs_mouse_x = 0; if (cs_mouse_y < 0) cs_mouse_y = 0; #endif if (cs_mouse_x != x || cs_mouse_y != y) move_mouse (cs_mouse_x, cs_mouse_y); x = cs_mouse_x; y = cs_mouse_y; /* see if we are all the way up */ if (!mouse_initialized) return; /* button press */ if (button_pressed) { /* maintain button press status */ pixel_to_mappoint(cs_mouse_x, cs_mouse_y, &buttons[button_idx].mappoint_x, &buttons[button_idx].mappoint_y); buttons[button_idx].x = cs_mouse_x; buttons[button_idx].y = cs_mouse_y; buttons[button_idx].pressed = 1; /* Try the event list before moving on to special cases */ if (!mouse_handle_click(x, y, button)) { switch (button) { case LC_MOUSE_LEFTBUTTON: if (market_cb_flag) { do_market_cb_mouse (x, y); break; } else if (port_cb_flag) { do_port_cb_mouse (x, y); break; } else if (help_flag) { do_help_mouse (x, y, button); break; } else if (prefs_flag) { do_prefs_mouse (x, y, button); break; } else if (load_flag || save_flag) return; /* This is the main screen */ if (mouse_in_rect(&scr.main_win,x,y)) { do_mouse_main_win(x, y, button); refresh_main_screen (); break; } /* GCS Remove overlay */ /* This use of mouse clicks seems to contradict Corey's mouse handler code */ if (main_screen_flag == MAIN_SCREEN_EQUALS_MINI) { main_screen_flag = MAIN_SCREEN_NORMAL_FLAG; refresh_main_screen (); } /* Other points too */ do_mouse_other_buttons(x, y, button); break; case LC_MOUSE_RIGHTBUTTON: case LC_MOUSE_MIDDLEBUTTON: /* GCS FIX: This is my fix for right clicks on main screen during yn_dialogs causing dialog to be overwritten by screen content (similar effect for market_cb overwritten by mps). This fix could be better, but will be better to confirm behavior for X version before deciding final fix. */ if (market_cb_flag) { // should dismiss cb? break; } else if (port_cb_flag) { // should dismiss cb? break; } else if (help_flag) { // do_help_mouse (x, y, button); maybe should?? break; } else if (prefs_flag) { break; } else if (db_flag) { break; } else if (db_okflag) { break; } else if (load_flag || save_flag) return; /* GCS Remove overlay */ if (main_screen_flag == MAIN_SCREEN_EQUALS_MINI) { main_screen_flag = MAIN_SCREEN_NORMAL_FLAG; refresh_main_screen (); } /* This is the main screen */ if (mouse_in_rect(&scr.main_win,x,y)) { do_mouse_main_win(x, y, button); refresh_main_screen (); break; } /* Other points too */ do_mouse_other_buttons(x, y, button); break; default: printf("Unknown mouse button in cs_mouse_handler\n"); } } /* mouse_handle_click couldn't. */ } else if (button_released) { button = enc_button - 16; /* probably shouldn't use this temporarily */ pixel_to_mappoint(cs_mouse_x, cs_mouse_y, &buttons[button_idx].r_mappoint_x, &buttons[button_idx].r_mappoint_y); buttons[button_idx].r_x = cs_mouse_x; buttons[button_idx].r_y = cs_mouse_y; buttons[button_idx].pressed = 0; switch (button) { case LC_MOUSE_LEFTBUTTON: mt_draw(cs_mouse_x, cs_mouse_y, MT_SUCCESS); break; case LC_MOUSE_RIGHTBUTTON: break; case LC_MOUSE_MIDDLEBUTTON: break; default: break; }; button = 0; /* backwards compatibility */ /* mouse moved */ } else { if (buttons[LC_MOUSE_LEFTBUTTON-1].pressed && GROUP_IS_TRANSPORT(selected_module_group)) { mt_draw(cs_mouse_x, cs_mouse_y, MT_CONTINUE); } } cs_mouse_button = button; } void move_mouse (int x, int y) { Rect* mw = &scr.main_win; int size; size = (main_groups[selected_module_group].size) * 16; /* GCS: we don't check for load_flag/save_flag because these guys set db_flag = 1 */ if (mouse_in_rect(&scr.main_win,x,y) && market_cb_flag == 0 && port_cb_flag == 0 && prefs_flag == 0 && help_flag == 0 && db_flag == 0 && db_okflag == 0) { int mwoffset_x; int mwoffset_y; if (x > (mw->x + mw->w) - size) x = (mw->x + mw->w) - size; if (y > (mw->y + mw->h) - size) y = (mw->y + mw->h) - size; mwoffset_x = mw->x % 16; mwoffset_y = mw->y % 16; x -= mwoffset_x; y -= mwoffset_y; x &= 0xff0; y &= 0xff0; x += mwoffset_x; y += mwoffset_y; hide_mouse (); mouse_hide_count--; draw_square_mouse (x, y, size); } else { hide_mouse (); mouse_hide_count--; draw_normal_mouse (x, y); if (mappoint_stats_flag != 0 && market_cb_flag == 0 && port_cb_flag == 0) { mappoint_stats_flag = 0; update_scoreboard.mps = 1; } } } void hide_mouse (void) { mouse_hide_count++; if (mouse_hide_count == 1) { if (mouse_type == MOUSE_TYPE_SQUARE) hide_square_mouse (); else hide_normal_mouse (); } } void redraw_mouse (void) { mouse_hide_count--; if (mouse_hide_count > 0) return; mouse_hide_count = 0; if (mouse_type == MOUSE_TYPE_SQUARE) redraw_square_mouse (); else redraw_normal_mouse (); } void draw_square_mouse (int x, int y, int size) /* size is pixels */ { if (mouse_type == MOUSE_TYPE_NORMAL) { hide_normal_mouse (); mouse_type = MOUSE_TYPE_SQUARE; kmouse_val = 16; } omx = x; omy = y; #if defined (WIN32) cs_square_mouse_visible = 1; RefreshArea (omx - 2, omy - 2, omx + size + 1, omy + size + 1); #else Fgl_getbox (x - 2, y - 2, size + 4, 2, under_square_mouse_pointer_top); Fgl_getbox (x - 2, y, 2, size, under_square_mouse_pointer_left); Fgl_getbox (x + size, y, 2, size, under_square_mouse_pointer_right); Fgl_getbox (x - 2, y + size, size + 4, 2, under_square_mouse_pointer_bottom); mouse_buffer_fresh = 1; Fgl_hline (x - 2, y - 2, x + size + 1, yellow (31)); Fgl_hline (x - 1, y - 1, x + size, blue (31)); Fgl_hline (x - 2, y + size + 1, x + size + 1, yellow (31)); Fgl_hline (x - 1, y + size, x + size, blue (31)); Fgl_line (x - 2, y - 1, x - 2, y + size + 1, yellow (31)); Fgl_line (x - 1, y, x - 1, y + size, blue (31)); Fgl_line (x + size + 1, y - 1, x + size + 1, y + size + 1, yellow (31)); Fgl_line (x + size, y, x + size, y + size, blue (31)); #endif } void hide_square_mouse (void) { int size; size = (main_groups[selected_module_group].size) * 16; #if defined (WIN32) cs_square_mouse_visible = 0; RefreshArea (omx - 3, omy - 3, omx + size + 2, omy + size + 2); #else if (mouse_buffer_fresh) { Fgl_putbox (omx - 2, omy - 2, size + 4, 2, under_square_mouse_pointer_top); Fgl_putbox (omx - 2, omy, 2, size, under_square_mouse_pointer_left); Fgl_putbox (omx + size, omy, 2, size, under_square_mouse_pointer_right); Fgl_putbox (omx - 2, omy + size, size + 4, 2, under_square_mouse_pointer_bottom); mouse_buffer_fresh = 0; } else { // printf ("Mouse buffer stale in hide_mouse! Not putting back!\n"); } #endif } void redraw_square_mouse (void) { int size; size = (main_groups[selected_module_group].size) * 16; #if defined (WIN32) cs_square_mouse_visible = 1; RefreshArea (omx - 2, omy - 2, omx + size + 1, omy + size + 1); #else Fgl_getbox (omx - 2, omy - 2, size + 4, 2, under_square_mouse_pointer_top); Fgl_getbox (omx - 2, omy, 2, size, under_square_mouse_pointer_left); Fgl_getbox (omx + size, omy, 2, size, under_square_mouse_pointer_right); Fgl_getbox (omx - 2, omy + size, size + 4, 2, under_square_mouse_pointer_bottom); mouse_buffer_fresh = 1; Fgl_hline (omx - 2, omy - 2, omx + size + 1, yellow (31)); Fgl_hline (omx - 1, omy - 1, omx + size, blue (31)); Fgl_hline (omx - 2, omy + size + 1, omx + size + 1, yellow (31)); Fgl_hline (omx - 1, omy + size, omx + size, blue (31)); Fgl_line (omx - 2, omy - 1, omx - 2, omy + size + 1, yellow (31)); Fgl_line (omx - 1, omy, omx - 1, omy + size, blue (31)); Fgl_line (omx + size + 1, omy - 1, omx + size + 1, omy + size + 1, yellow (31)); Fgl_line (omx + size, omy, omx + size, omy + size, blue (31)); #endif } void draw_normal_mouse (int x, int y) { if (mouse_type == MOUSE_TYPE_SQUARE) { hide_square_mouse (); mouse_type = MOUSE_TYPE_NORMAL; kmouse_val = 8; } #if defined (SVGALIB) Fgl_getbox (x, y, 8, 8, under_mouse_pointer); if (x > cs_mouse_xmax - 8 || y > cs_mouse_ymax - 8) { Fgl_enableclipping (); Fgl_setclippingwindow (0, 0, cs_mouse_xmax, cs_mouse_ymax); Fgl_putbox (x, y, 8, 8, mouse_pointer); Fgl_disableclipping (); } else { Fgl_putbox (x, y, 8, 8, mouse_pointer); } #endif mox = x; moy = y; } void hide_normal_mouse (void) { #if defined (SVGALIB) if (mox > cs_mouse_xmax - 8 || moy > cs_mouse_ymax - 8) { Fgl_enableclipping (); Fgl_setclippingwindow (0, 0, cs_mouse_xmax, cs_mouse_ymax); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_disableclipping (); } else { Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); } #endif } void redraw_normal_mouse (void) { #if defined (SVGALIB) if (mox > cs_mouse_xmax - 8 || moy > cs_mouse_ymax - 8) { Fgl_enableclipping (); Fgl_setclippingwindow (0, 0, cs_mouse_xmax, cs_mouse_ymax); Fgl_getbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_putbox (mox, moy, 8, 8, mouse_pointer); Fgl_disableclipping (); } else { /* may have changed */ Fgl_getbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_putbox (mox, moy, 8, 8, mouse_pointer); } #endif } void do_mouse_main_win (int px, int py, int button) { Rect* mw = &scr.main_win; int size; int x, y; /* mappoint */ int mod_x, mod_y; /* upper left coords of module clicked on */ int mps_result; if (button == LC_MOUSE_MIDDLEBUTTON) return; pixel_to_mappoint(px, py, &x, &y); if (MP_TYPE(x,y) == CST_USED) { mod_x = MP_INFO(x,y).int_1; mod_y = MP_INFO(x,y).int_2; } else { mod_x = x; mod_y = y; } /* Bring up mappoint_stats for any right mouse click */ /* XXX: Environmental (right click) MPS should show the clicked square, not the master square */ if (button == LC_MOUSE_RIGHTBUTTON) { mps_set(mod_x, mod_y, MPS_ENV); return; } /* Check rocket launches */ /* XXX: put this in modules/rocket.c */ /* XXX: wait for second click to ask for launch */ if (button == LC_MOUSE_LEFTBUTTON) { if (MP_TYPE(mod_x,mod_y) >= CST_ROCKET_5 && MP_TYPE(mod_x,mod_y) <= CST_ROCKET_7) { if (ask_launch_rocket_click (mod_x,mod_y)) { launch_rocket (mod_x, mod_y); } } } /* Handle multitransport */ if (button == LC_MOUSE_LEFTBUTTON && GROUP_IS_TRANSPORT(selected_module_group)) { if (mt_draw (px, py, MT_START)) { /* We need to set mps to current location, since the user might click on the transport to see the mps */ mps_set(mod_x, mod_y, MPS_MAP); return; } } /* Handle bulldozing */ if (selected_module_type == CST_GREEN && button != LC_MOUSE_RIGHTBUTTON) { check_bulldoze_area (x, y); return; } /* Bring up mappoint_stats for certain left mouse clicks */ /* XXX: Need to check market and port double-clicks here */ if (MP_TYPE(x,y) != CST_GREEN) { mps_result = mps_set(mod_x, mod_y, MPS_MAP); if (mps_result >= 1) { if (MP_GROUP(mod_x,mod_y) == GROUP_MARKET) { clicked_market_cb (mod_x, mod_y); return; } else if (MP_GROUP(mod_x,mod_y) == GROUP_PORT) { clicked_port_cb (mod_x, mod_y); return; } } return; } /* OK, by now we are certain that the user wants to place the item. Set the origin based on the size of the selected_module_type, and see if the selected item will fit. */ size = main_groups[selected_module_group].size; if (px > (mw->x + mw->w) - size*16) px = (mw->x + mw->w) - size*16; if (py > (mw->y + mw->h) - size*16) py = (mw->y + mw->h) - size*16; pixel_to_mappoint(px, py, &x, &y); if (size >= 2) { if (MP_TYPE(x + 1,y) != CST_GREEN || MP_TYPE(x,y + 1) != CST_GREEN || MP_TYPE(x + 1,y + 1) != CST_GREEN) return; } if (size >= 3) { if (MP_TYPE(x + 2,y) != CST_GREEN || MP_TYPE(x + 2,y + 1) != CST_GREEN || MP_TYPE(x + 2,y + 2) != CST_GREEN || MP_TYPE(x + 1,y + 2) != CST_GREEN || MP_TYPE(x,y + 2) != CST_GREEN) return; } if (size == 4) { if (MP_TYPE(x + 3,y) != CST_GREEN || MP_TYPE(x + 3,y + 1) != CST_GREEN || MP_TYPE(x + 3,y + 2) != CST_GREEN || MP_TYPE(x + 3,y + 3) != CST_GREEN || MP_TYPE(x + 2,y + 3) != CST_GREEN || MP_TYPE(x + 1,y + 3) != CST_GREEN || MP_TYPE(x,y + 3) != CST_GREEN) return; } /* Place the selected item */ switch (place_item (x, y, selected_module_type)) { case 0: /* Success */ break; case -1: /* Not enough money */ no_credit_build_msg (selected_module_group); break; case -2: /* Improper port placement */ /* TRANSLATORS: The part about the cup of tea is one of Ian's jokes, but the part about ports needing to be connected to rivers is true. */ if (yn_dial_box (_("WARNING"), _("Ports need to be"), _("connected to rivers!"), _("Want to make a cup of tea?")) != 0) while (yn_dial_box (_("TEA BREAK"), _("Boil->pour->wait->stir"), _("stir->pour->stir->wait->drink...ahhh"), _("Have you finished yet?")) == 0); break; } } void do_mouse_other_buttons (int x, int y, int button) { Rect* mw = &scr.main_win; if (0) {} /* XXX: Cute, very cute */ /* main screen border scroll areas */ /* up */ else if (x >= (mw->x - 8) && x < (mw->x + mw->w + 8) && y >= (mw->y - 8) && y < mw->y) { int new_origin_y; if (button == LC_MOUSE_RIGHTBUTTON) { new_origin_y = main_screen_originy - RIGHT_MOUSE_MOVE_VAL; } else { new_origin_y = main_screen_originy - 1; } adjust_main_origin (main_screen_originx, new_origin_y, 1); } /* down */ else if (x >= (mw->x - 8) && x < (mw->x + mw->w + 8) && y > (mw->y + mw->h) && y < (mw->y + mw->h + 16)) { /* 16 for bigger area */ int new_origin_y; if (button == LC_MOUSE_RIGHTBUTTON) { new_origin_y = main_screen_originy + RIGHT_MOUSE_MOVE_VAL; } else { new_origin_y = main_screen_originy + 1; } adjust_main_origin (main_screen_originx, new_origin_y, 1); } /* left */ else if (x >= (mw->x - 16) && x < mw->x && y >= (mw->y - 8) && y < (mw->y + mw->h + 8)) { int new_origin_x; if (button == LC_MOUSE_RIGHTBUTTON) { new_origin_x = main_screen_originx - RIGHT_MOUSE_MOVE_VAL; } else { new_origin_x = main_screen_originx - 1; } adjust_main_origin (new_origin_x, main_screen_originy, 1); } /* right */ else if (x > (mw->x + mw->w) && x < (mw->x + mw->w + 8) && y > (mw->y - 8) && y < (mw->y + mw->w + 8)) { int new_origin_x; if (button == LC_MOUSE_RIGHTBUTTON) { new_origin_x = main_screen_originx + RIGHT_MOUSE_MOVE_VAL; } else { new_origin_x = main_screen_originx + 1; } adjust_main_origin (new_origin_x, main_screen_originy, 1); } /* This is the mini window. Clicking here move the main window to this point */ /*** Miniscreen selector buttons removed in CVS Revision 1.24 ***/ /* this is the menu button */ else if (mouse_in_rect (&scr.menu_button,x,y)) { activate_help ("menu.hlp"); } /* this is the help button */ else if (mouse_in_rect (&scr.help_button,x,y)) { activate_help ("index.hlp"); } /* this is the results (stats) button */ else if (mouse_in_rect (&scr.results_button,x,y)) { if (button == LC_MOUSE_RIGHTBUTTON) return; window_results (); } /* XXX: WCK: This is broken; should be a mouse handler in mps.c anyway */ /* Advance mps screen if clicked on */ else if (mouse_in_rect (&scr.mappoint_stats,x,y)) { if (button == LC_MOUSE_RIGHTBUTTON) { switch (mps_global_style) { case MPS_GLOBAL_FINANCE: activate_help ("finance.hlp"); break; case MPS_GLOBAL_OTHER_COSTS: activate_help ("other-costs.hlp"); break; case MPS_GLOBAL_HOUSING: activate_help ("housing.hlp"); break; } return; } mps_global_advance(); } /* Advance monthgraph screen if clicked on */ else if (mouse_in_rect (&scr.monthgraph,x,y)) { if (button == LC_MOUSE_RIGHTBUTTON) { if (monthgraph_style == MONTHGRAPH_STYLE_ECONOMY) { activate_help ("economy.hlp"); } else { activate_help ("sustain.hlp"); } return; } advance_monthgraph_style (); refresh_monthgraph (); } /* // no more buttons to click on, see if it's help for somewhere else. // *************************** */ if (mouse_in_rect (&scr.pbar_area,x,y)) { pbar_mouse(x, y, button); return; } if (button == LC_MOUSE_RIGHTBUTTON) { #if defined (FINANCE_WINDOW) /* now check for finance window */ if (x >= FINANCE_X && x <= (FINANCE_X + FINANCE_W) && y >= FINANCE_Y && y <= (FINANCE_Y + FINANCE_H)) { activate_help ("finance.hlp"); return; } #endif #if defined (commentout) /* GCS FIX -- This is obsolete, right??? */ /* -- If so, can delete scr.sust from geometry.c */ /* now check for the sustain window */ else if (mouse_in_rect (&scr.sust,x,y)) { activate_help ("sustain.hlp"); return; } #endif } } void check_bulldoze_area (int x, int y) { int xx, yy, g; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } else { xx = x; yy = y; } g = MP_GROUP(xx,yy); /* GCS: Free bulldozing of most recently placed item is disabled. Still not sure how this can be done w/ multiplayer. */ if (g == GROUP_MONUMENT && monument_bul_flag == 0) { if (yn_dial_box (_("WARNING"), _("Bulldozing a monument costs"), _("a lot of money."), _("Want to bulldoze?")) == 0) return; monument_bul_flag = 1; } else if (g == GROUP_RIVER && river_bul_flag == 0) { if (yn_dial_box (_("WARNING"), _("Bulldozing a section of river"), _("costs a lot of money."), _("Want to bulldoze?")) == 0) return; river_bul_flag = 1; } else if (g == GROUP_SHANTY && shanty_bul_flag == 0) { if (yn_dial_box (_("WARNING"), _("Bulldozing a shanty town costs a"), _("lot of money and may cause a fire."), _("Want to bulldoze?")) == 0) return; shanty_bul_flag = 1; } else if (g == GROUP_TIP) { ok_dial_box ("nobull-tip.mes", BAD, 0L); return; } bulldoze_item (xx,yy); } /* XXX: mouse.c? wtf! */ void fire_area (int x, int y) { do_bulldoze_area (CST_FIRE_1, x, y); refresh_main_screen (); /* // update transport or we get stuff put in // the area from connected tracks etc. */ } /* Called from event handler when middle button is held while moving the mouse. Will probably handle multi-transport eventually */ /* XXX: Need to put this in a header somewhere */ void drag_screen (void) { int cur_mappoint_x = 0; int cur_mappoint_y = 0; int cur_winpoint_x = 0; int cur_winpoint_y = 0; int origin_x = 0; int origin_y = 0; int in_main_window; if (buttons[LC_MOUSE_MIDDLEBUTTON-1].mappoint_x == 0) return; /* Not pressed in main window */ in_main_window = pixel_to_mappoint(cs_mouse_x, cs_mouse_y, &cur_mappoint_x, &cur_mappoint_y); pixel_to_winpoint(cs_mouse_x, cs_mouse_y, &cur_winpoint_x, &cur_winpoint_y); origin_x = buttons[LC_MOUSE_MIDDLEBUTTON-1].mappoint_x - cur_winpoint_x; origin_y = buttons[LC_MOUSE_MIDDLEBUTTON-1].mappoint_y - cur_winpoint_y; adjust_main_origin (origin_x, origin_y, 1); } void do_market_cb_template (int x, int y, int is_market_cb) { Rect* mcb = &scr.market_cb; int is_sell; hide_mouse (); if (!mouse_in_rect(mcb,x,y)) { if (is_market_cb) { close_market_cb (); } else { close_port_cb (); } redraw_mouse (); return; } if (x >= mcb->x + 8 && x <= mcb->x + 6 * 8) { is_sell = 0; } else if (x >= mcb->x + 10 * 8 && x <= mcb->x + mcb->w - 8) { is_sell = 1; } else { redraw_mouse (); return; } /* jobs */ if (is_market_cb && y >= mcb->y + 36 + (CB_SPACE * 0) && y <= mcb->y + 52 + (CB_SPACE * 0)) { int flag = is_sell ? FLAG_MS_JOBS : FLAG_MB_JOBS; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (0, is_sell, MP_INFO(mcbx,mcby).flags & flag); } /* food */ else if (y >= mcb->y + 36 + (CB_SPACE * 1) && y <= mcb->y + 52 + (CB_SPACE * 1)) { int flag = is_sell ? FLAG_MS_FOOD : FLAG_MB_FOOD; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (1, is_sell, MP_INFO(mcbx,mcby).flags & flag); } /* coal */ else if (y >= mcb->y + 36 + (CB_SPACE * 2) && y <= mcb->y + 52 + (CB_SPACE * 2)) { int flag = is_sell ? FLAG_MS_COAL : FLAG_MB_COAL; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (2, is_sell, MP_INFO(mcbx,mcby).flags & flag); } /* ore */ else if (y >= mcb->y + 36 + (CB_SPACE * 3) && y <= mcb->y + 52 + (CB_SPACE * 3)) { int flag = is_sell ? FLAG_MS_ORE : FLAG_MB_ORE; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (3, is_sell, MP_INFO(mcbx,mcby).flags & flag); } /* goods */ else if (y >= mcb->y + 36 + (CB_SPACE * 4) && y <= mcb->y + 52 + (CB_SPACE * 4)) { int flag = is_sell ? FLAG_MS_GOODS : FLAG_MB_GOODS; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (4, is_sell, MP_INFO(mcbx,mcby).flags & flag); } /* steel */ else if (y >= mcb->y + 36 + (CB_SPACE * 5) && y <= mcb->y + 52 + (CB_SPACE * 5)) { int flag = is_sell ? FLAG_MS_STEEL : FLAG_MB_STEEL; MP_INFO(mcbx,mcby).flags ^= flag; draw_cb_box (5, is_sell, MP_INFO(mcbx,mcby).flags & flag); } redraw_mouse (); #if defined (NETWORK_ENABLE) if (MP_INFO(mcbx,mcby).flags != old_flags) { send_flags (mcbx,mcby); } #endif } void do_market_cb_mouse (int x, int y) { do_market_cb_template (x, y, 1); } void do_port_cb_mouse (int x, int y) { do_market_cb_template (x, y, 0); } void no_credit_build_msg (int selected_group) { #ifdef GROUP_POWER_SOURCE_NO_CREDIT if (selected_group == GROUP_POWER_SOURCE) { ok_dial_box ("no-credit-solar-power.mes", BAD, 0L); return; } #endif #ifdef GROUP_UNIVERSITY_NO_CREDIT if (selected_group == GROUP_UNIVERSITY) { ok_dial_box ("no-credit-university.mes", BAD, 0L); return; } #endif #ifdef GROUP_PARKLAND_NO_CREDIT if (selected_group == GROUP_PARKLAND) { ok_dial_box ("no-credit-parkland.mes", BAD, 0L); return; } #endif #ifdef GROUP_RECYCLE_NO_CREDIT if (selected_group == GROUP_RECYCLE) { ok_dial_box ("no-credit-recycle.mes", BAD, 0L); return; } #endif #ifdef GROUP_ROCKET if (selected_group == GROUP_ROCKET) { ok_dial_box ("no-credit-rocket.mes", BAD, 0L); return; } #endif return; } void choose_residence (void) { int cost; FILE* tempfile; char* s = (char*) malloc (lc_save_dir_len + 9); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, "res.tmp"); if ((tempfile = fopen (s, "w")) == 0) do_error ("Can't write res.tmp"); free (s); fprintf (tempfile, /* TRANSLATORS: Don't translate the leading "text" */ _("text -1 20 Choose the type of residence you want\n")); fprintf (tempfile, "text -1 30 =====================================\n"); fprintf (tempfile, _("text -1 45 (LB=Low Birthrate HB=High Birthrate)\n")); fprintf (tempfile, _("text -1 55 (LD=Low Deathrate HD=High Deathrate)\n")); fprintf (tempfile, _("text -1 85 Low Tech\n")); cost = get_group_cost(GROUP_RESIDENCE_LL); fprintf (tempfile, _("text 68 106 Cost %4d\n"), cost); fprintf (tempfile, "icon 85 120 reslowlow.csi\n"); fprintf (tempfile, "button 83 118 52 52 return1\n"); /* TRANSLATORS: Only translate "pop" <> */ fprintf (tempfile, _("tbutton 82 180 return1 pop 50\n")); /* TRANSLATORS: Only translate LB, HD (low birth, high death) */ fprintf (tempfile, _("text 89 195 LB HD\n")); cost = get_group_cost(GROUP_RESIDENCE_ML); fprintf (tempfile, _("text 155 106 Cost %4d\n"), cost); fprintf (tempfile, "icon 170 120 resmedlow.csi\n"); fprintf (tempfile, "button 168 118 52 52 return2\n"); fprintf (tempfile, _("tbutton 164 180 return2 pop 100\n")); fprintf (tempfile, _("text 175 195 HB LD\n")); cost = get_group_cost(GROUP_RESIDENCE_HL); fprintf (tempfile, _("text 238 106 Cost %4d\n"), cost); fprintf (tempfile, "icon 255 120 reshilow.csi\n"); fprintf (tempfile, "button 253 118 52 52 return3\n"); fprintf (tempfile, _("tbutton 250 180 return3 pop 200\n")); fprintf (tempfile, _("text 261 195 HB HD\n")); fprintf (tempfile, _("text -1 215 Click on one to select\n")); fprintf (tempfile, "text -1 225 ======================\n"); if (((tech_level * 10) / MAX_TECH_LEVEL) > 2) { fprintf (tempfile, _("text -1 255 High Tech\n")); cost = get_group_cost(GROUP_RESIDENCE_LH); fprintf (tempfile, _("text 68 276 Cost %4d\n"), cost); fprintf (tempfile, "icon 85 290 reslowhi.csi\n"); fprintf (tempfile, "button 83 288 52 52 return4\n"); fprintf (tempfile, _("tbutton 78 350 return4 pop 100\n")); fprintf (tempfile, _("text 89 365 LB HD\n")); cost = get_group_cost(GROUP_RESIDENCE_MH); fprintf (tempfile, _("text 155 276 Cost %4d\n"), cost); fprintf (tempfile, "icon 170 290 resmedhi.csi\n"); fprintf (tempfile, "button 168 288 52 52 return5\n"); fprintf (tempfile, _("tbutton 164 350 return5 pop 200\n")); fprintf (tempfile, _("text 175 365 HB LD\n")); cost = get_group_cost(GROUP_RESIDENCE_HH); fprintf (tempfile, _("text 238 276 Cost %4d\n"), cost); fprintf (tempfile, "icon 255 290 reshihi.csi\n"); fprintf (tempfile, "button 253 288 52 52 return6\n"); fprintf (tempfile, _("tbutton 250 350 return6 pop 400\n")); fprintf (tempfile, _("text 261 365 HB HD\n")); } fclose (tempfile); block_help_exit = 1; activate_help ("res.tmp"); } /* We can only draw temporary transport on GROUP_TRACK, GROUP_ROAD, GROUP_RAIL, or GROUP_BARE. For temporary draws over GROUP_BARE, FLAG_IS_TRANSPORT is not set. For temporary draws over existing transport of a different type, FLAG_IS_TRANSPORT is set, and FLAG_MULTI_TRANSPORT_PREV will be set to 0 if the existing transport is of the cheaper sort (e.g. GROUP_TRACK when overwriting with GROUP_ROAD), and set to 1 if the existing transport if the more expensive sort (e.g. GROUP_RAIL when overwriting GROUP_ROAD). */ inline int mt_erase(int x, int y) { if (x < 0 || y < 0 || x >= WORLD_SIDE_LEN || y >= WORLD_SIDE_LEN) return 1; if (MP_INFO(x,y).flags & FLAG_MULTI_TRANSPORT) { if (MP_INFO(x,y).flags & FLAG_IS_TRANSPORT) { if (!(MP_INFO(x,y).flags & FLAG_MULTI_TRANS_PREV)) { if (mt_grp == GROUP_TRACK) { MP_TYPE(x,y) = CST_ROAD_LR; MP_GROUP(x,y) = GROUP_ROAD; } else { MP_TYPE(x,y) = CST_TRACK_LR; MP_GROUP(x,y) = GROUP_TRACK; } } else { if (mt_grp == GROUP_RAIL) { MP_TYPE(x,y) = CST_ROAD_LR; MP_GROUP(x,y) = GROUP_ROAD; } else { MP_TYPE(x,y) = CST_RAIL_LR; MP_GROUP(x,y) = GROUP_RAIL; } } } else { MP_TYPE(x,y) = CST_GREEN; MP_GROUP(x,y) = GROUP_BARE; } MP_INFO(x,y).flags &= ~FLAG_MULTI_TRANSPORT; return 1; } else if ((MP_INFO(x,y).flags & FLAG_IS_TRANSPORT) && (mt_grp == MP_GROUP(x,y))) { return 1; } return 0; } inline int mt_temp(int x, int y) { if (x < 0 || y < 0 || x >= WORLD_SIDE_LEN || y >= WORLD_SIDE_LEN) return 1; if (MP_INFO(x,y).flags & FLAG_IS_TRANSPORT) { if (MP_GROUP(x,y) == mt_grp) { return 1; } else if (!overwrite_transport_flag) { return 0; } else { if ((MP_GROUP(x,y) == GROUP_TRACK) || ((MP_GROUP(x,y) == GROUP_ROAD) && (mt_grp == GROUP_TRACK))) { MP_INFO(x,y).flags &= ~FLAG_MULTI_TRANS_PREV; } else { MP_INFO(x,y).flags |= FLAG_MULTI_TRANS_PREV; } mt_length++; MP_TYPE(x,y) = selected_module_type; MP_GROUP(x,y) = mt_grp; MP_INFO(x,y).flags |= FLAG_MULTI_TRANSPORT; return 1; } } else if (MP_GROUP(x,y) == GROUP_BARE) { mt_length++; MP_TYPE(x,y) = selected_module_type; MP_GROUP(x,y) = mt_grp; MP_INFO(x,y).flags |= FLAG_MULTI_TRANSPORT; return 1; } return 0; } inline int mt_perm(int x, int y) { /* By now, it has already been mt_erase()'d */ if (x < 0 || y < 0 || x >= WORLD_SIDE_LEN || y >= WORLD_SIDE_LEN) return 1; if (MP_INFO(x,y).flags & FLAG_IS_TRANSPORT) { if (MP_GROUP(x,y) == mt_grp) { return 1; } else if (!overwrite_transport_flag) { return 0; } else { bulldoze_item(x,y); place_item (x,y,selected_module_type); return 1; } } else if (MP_GROUP(x,y) == GROUP_BARE) { place_item (x,y,selected_module_type); return 1; } return 0; } int do_mt_draw (int x1, int x2, int y1, int y2, int (*mode)()) { int dir = 1; int horiz = 1; int vert = 2; int x_dir = cmp(x1, x2); int y_dir = cmp(y1, y2); int ix = x1; int iy = y1; mt_length = 0; if (!mode(ix, iy)) return 0; while ((ix != x2 || iy != y2) && dir) { /* try horizontal, unless already vertical */ if (dir == 1) { if (ix == x2) { horiz = 0; dir = vert; } else if (mode(ix+x_dir, iy)) { horiz = 1; vert = 2; ix += x_dir; } else { horiz = 0; dir = vert; } } else if (dir == 2) { if (iy == y2) { vert = 0; dir = horiz; } else if (mode(ix, iy+y_dir)) { horiz = 1; vert = 2; iy += y_dir; } else { vert = 0; dir = horiz; } } } if (dir) { /* still had one direction to pick from, must have succeeded */ return 1; } else { return 0; } } int mt_draw (int cxp, int cyp, int flag) /* c[xy]p are pixel coordinates */ { #define STATUS_MESSAGE_LENGTH 80 static int dx, dy; /* old current point; drawn point */ static int ox, oy; /* coordinates for original button press */ int cx, cy; /* current mappoint coordinates */ int draw_ret; char s[STATUS_MESSAGE_LENGTH]; if (flag != MT_START && !mt_flag) return 0; pixel_to_mappoint(cxp, cyp, &cx, &cy); switch(flag) { case MT_SUCCESS: if (ox == 0) return 0; draw_ret = do_mt_draw(ox, dx, oy, dy, mt_erase); if (!draw_ret) { /* If mt_erase failed it is because we don't have clearance to build the road. So clean up and exit. */ mt_flag = 0; draw_main_window_box (green (8)); status_message(0,0); } else if ((draw_ret = do_mt_draw(ox, cx, oy, cy, mt_perm))) { print_total_money (); mt_flag = 0; draw_main_window_box (green (8)); status_message(0,0); } else { /* This shouldn't happen. Clean up and continue anyway. */ mt_flag = 0; status_message(0,0); draw_main_window_box (green (8)); } dx = 0; dy = 0; ox = 0; oy = 0; break; case MT_FAIL: mt_flag = 0; draw_main_window_box (green (8)); draw_ret = do_mt_draw(ox, dx, oy, dy, mt_erase); status_message(0,0); dx = 0; dy = 0; ox = 0; oy = 0; break; case MT_CONTINUE: if ((dx == cx && dy == cy) || ox == 0) return 0; draw_ret = do_mt_draw(ox, dx, oy, dy, mt_erase); draw_ret = do_mt_draw(ox, cx, oy, cy, mt_temp); if (!draw_ret) { draw_ret = do_mt_draw(ox, cx, oy, cy, mt_erase); snprintf(s,STATUS_MESSAGE_LENGTH-1, _("Can't build %s over that!"), mt_name); } else { snprintf(s,STATUS_MESSAGE_LENGTH-1, _("%d sections of %s will cost %3d to build"), mt_length, mt_name, mt_length * get_type_cost(selected_module_type)); } status_message(0,s); dx = cx; dy = cy; break; case MT_START: /* XXX: we assume that a transport type is selected. */ if ((mt_grp = get_group_of_type(selected_module_type)) < 0 ) return 0; get_type_name(selected_module_type,mt_name); dx = dy = 0; ox = buttons[LC_MOUSE_LEFTBUTTON-1].mappoint_x; oy = buttons[LC_MOUSE_LEFTBUTTON-1].mappoint_y; draw_ret = do_mt_draw(ox, cx, oy, cy, mt_temp); if (!draw_ret) { draw_ret = do_mt_draw(ox, cx, oy, cy, mt_erase); return 0; } dx = cx; dy = cy; mt_flag = 1; draw_main_window_box (cyan (20)); break; default: ; } connect_transport_main_screen (); update_main_screen (0); return (1); } int cmp(int n1, int n2) { if (n1 != n2) return (n1 < n2) ? 1 : -1; else return 0; } void init_mouse_registry() { mhandle_first = NULL; mhandle_last = NULL; mhandle_current = NULL; mhandle_count = 0; } /* Add and return an entry in the registry. Add it at the beginning, so it supercedes earlier entries in mouse_handle_click() */ Mouse_Handle * mouse_register(Rect * r, void (*function)(int, int, int)) { mhandle_current = (Mouse_Handle *)lcalloc(sizeof(Mouse_Handle)); mhandle_count++; if (mhandle_first == NULL) { mhandle_current->next = NULL; mhandle_current->prev = NULL; } else { mhandle_current->next = mhandle_first; mhandle_first->prev = mhandle_current; mhandle_current->prev = NULL; } mhandle_first = mhandle_current; mhandle_current->r = r; mhandle_current->handler = function; return mhandle_current; } /* Remove an entry from the registry */ void mouse_unregister(Mouse_Handle * mhandle) { if (mhandle->prev == NULL) { if (mhandle_first != mhandle) printf("debug: mhandle_first != mhandle\n"); if (mhandle->next != NULL) { mhandle_first = mhandle->next; mhandle_first->prev = NULL; } else { mhandle_first = NULL; } } else if (mhandle->next == NULL) { mhandle->prev->next = NULL; } else { mhandle->prev->next = mhandle->next; mhandle->next->prev = mhandle->prev; } free(mhandle); mhandle_count--; } /* Loop through the registry until we find a handler for an area. BEWARE!!! Some handlers unregister themselves when called. Assume mhandle_current is undefined after calling mhandle_current->handler() */ int mouse_handle_click(int x, int y, int button) { mhandle_current = mhandle_first; while (mhandle_current != NULL) { if (mouse_in_rect(mhandle_current->r,x,y)) { mhandle_current->handler(x - mhandle_current->r->x, y - mhandle_current->r->y, button); return 1; } mhandle_current = mhandle_current->next; } return 0; } lincity-1.13.1/mps.c0000644000175000017500000003312010071450153011127 00000000000000/* ---------------------------------------------------------------------- * * mps.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "mps.h" #include "engglobs.h" #include "mouse.h" #include "screen.h" #include "power.h" #include "engine.h" #include "lclib.h" #include "lcintl.h" #include "stats.h" #include #include #include char mps_info[MAPPOINT_STATS_LINES][MPS_INFO_CHARS]; int mps_global_style; static int mps_style; static int mps_x; static int mps_y; static Mouse_Handle * mps_handle; /* * ---------------------------------------------------------------------- * * New, simplified mps routines. All drawing is offloaded to * mps_refresh and mps_redraw, with the various mps_module routines - * called from mps_update - merely updating an array of strings: * mps_info (see above) * ---------------------------------------------------------------------- * */ void mps_handler(int x, int y, int button) { if (button == LC_MOUSE_LEFTBUTTON) { if (mps_style == MPS_GLOBAL) { mps_global_advance(); } else { mps_set(0,0,MPS_GLOBAL); } } else if (button == LC_MOUSE_RIGHTBUTTON) { /* XXX: Pop help here, depending on selected style */ } } /* mps_init(): Initialize mps vars and mouse handles */ void mps_init() { mps_style = MPS_GLOBAL; mps_global_style = MPS_GLOBAL_FINANCE; mps_x = 0; mps_y = 0; mps_handle = mouse_register(&scr.mappoint_stats,&mps_handler); } /* mps_set(): Main entry to mps system. Sets mps to display status for a square or global information. If we are setting mps to the same square it was set for, return 1, otherwise 0. */ int mps_set(int x, int y, int style) { int same_square = 0; mps_style = style; switch(style) { case MPS_MAP: case MPS_ENV: if (mps_x == x && mps_y == y) { same_square = 1; } mps_x = x; mps_y = y; break; default: mps_x = 0; mps_y = 0; } mps_update(); mps_refresh(); return same_square; } void mps_redraw(void) { Rect* mps = &scr.mappoint_stats; draw_small_bezel (mps->x, mps->y, mps->w, mps->h, yellow(0)); mps_refresh(); } void mps_refresh(void) { int i; Rect * mps = &scr.mappoint_stats; Fgl_fillbox (mps->x, mps->y, mps->w + 1, mps->h + 1, 14); Fgl_setfontcolors (14, TEXT_FG_COLOUR); for (i = 0; i < MAPPOINT_STATS_LINES; i++) { Fgl_write (mps->x + 4, mps->y + (i * 8) + 4, mps_info[i]); } Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } void mps_update(void) { int i; for (i = 0; i < MAPPOINT_STATS_LINES; i++) { strcpy(mps_info[i],""); } switch (mps_style) { case MPS_MAP: { switch(MP_GROUP(mps_x, mps_y)) { case (GROUP_BLACKSMITH): mps_blacksmith (mps_x, mps_y); break; case (GROUP_COALMINE): mps_coalmine (mps_x, mps_y); break; case GROUP_COAL_POWER: mps_coal_power (mps_x, mps_y); break; case (GROUP_COMMUNE): mps_commune (mps_x, mps_y); break; case (GROUP_CRICKET): mps_cricket (mps_x, mps_y); break; case (GROUP_FIRESTATION): mps_firestation (mps_x, mps_y); break; case (GROUP_HEALTH): mps_health_centre (mps_x, mps_y); break; case (GROUP_INDUSTRY_H): mps_heavy_industry (mps_x, mps_y); break; case (GROUP_INDUSTRY_L): mps_light_industry (mps_x, mps_y); break; case (GROUP_MILL): mps_mill (mps_x, mps_y); break; case (GROUP_MONUMENT): mps_monument (mps_x, mps_y); break; case (GROUP_OREMINE): mps_oremine (mps_x, mps_y); break; case GROUP_ORGANIC_FARM: mps_organic_farm(mps_x, mps_y); break; case (GROUP_PORT): mps_port (mps_x, mps_y); break; case (GROUP_POTTERY): mps_pottery (mps_x, mps_y); break; case GROUP_POWER_LINE: mps_power_line (mps_x, mps_y); break; case (GROUP_RAIL): mps_rail (mps_x, mps_y); break; case (GROUP_RECYCLE): mps_recycle (mps_x, mps_y); break; case GROUP_RESIDENCE_LL: case GROUP_RESIDENCE_ML: case GROUP_RESIDENCE_HL: case GROUP_RESIDENCE_LH: case GROUP_RESIDENCE_MH: case GROUP_RESIDENCE_HH: mps_residence(mps_x, mps_y); break; case (GROUP_ROAD): mps_road (mps_x, mps_y); break; case (GROUP_ROCKET): mps_rocket (mps_x, mps_y); break; case (GROUP_SCHOOL): mps_school (mps_x, mps_y); break; case GROUP_SOLAR_POWER: mps_solar_power (mps_x, mps_y); break; case (GROUP_SUBSTATION): mps_substation (mps_x, mps_y); break; case (GROUP_TIP): mps_tip (mps_x, mps_y); break; case (GROUP_TRACK): mps_track(mps_x, mps_y); break; case (GROUP_MARKET): mps_market (mps_x, mps_y); break; case (GROUP_UNIVERSITY): mps_university (mps_x, mps_y); break; case (GROUP_WATER): mps_water (mps_x, mps_y); break; case (GROUP_WINDMILL): mps_windmill (mps_x, mps_y); break; default: printf("MPS unimplemented for that module\n"); } } break; case MPS_ENV: mps_right (mps_x, mps_y); break; case MPS_GLOBAL: { switch (mps_global_style) { case MPS_GLOBAL_FINANCE: mps_global_finance(); break; case MPS_GLOBAL_OTHER_COSTS: mps_global_other_costs(); break; case MPS_GLOBAL_HOUSING: mps_global_housing(); break; default: printf("MPS unimplemented for global display\n"); break; } } break; } mps_refresh(); } /* Cycle through the various global styles, but only update and display if global info display is active */ void mps_global_advance(void) { mps_global_style++; mps_global_style %= MPS_GLOBAL_STYLES; if (mps_style == MPS_GLOBAL) { mps_update(); } } /* MPS String storage routines. These handle the tedium of formatting strings for mps display. Single argument forms center that argument. Double arg forms offset them. Triple arg forms divide the space into three columns. */ void mps_store_title(int i, char * t) { int c; int l; l = strlen(t); c = (int)((MPS_INFO_CHARS - l) / 2) + l; snprintf(mps_info[i],MPS_INFO_CHARS,"%*s", c, t); } void mps_store_fp(int i, double f) { int c; int l; char s[12]; snprintf(s, sizeof(s), "%.1f%%",f); l = strlen(s); c = (int)((MPS_INFO_CHARS - l) / 2) + l; snprintf(mps_info[i],MPS_INFO_CHARS,"%*s", c, s); } void mps_store_f(int i, double f) { int c; int l; char s[12]; snprintf(s, sizeof(s), "%.1f",f); l = strlen(s); c = (int)((MPS_INFO_CHARS - l) / 2) + l; snprintf(mps_info[i],MPS_INFO_CHARS,"%*s", c, s); } void mps_store_d(int i, int d) { int c; int l; char s[12]; snprintf(s, sizeof(s), "%d",d); l = strlen(s); c = (int)((MPS_INFO_CHARS - l) / 2) + l; snprintf(mps_info[i],MPS_INFO_CHARS,"%*s", c, s); } void mps_store_ss(int i, char * s1, char * s2) { int l; l = snprintf(mps_info[i], MPS_INFO_CHARS, "%s", s1); snprintf(&mps_info[i][l], MPS_INFO_CHARS - l, "%*s", (MPS_INFO_CHARS - l - 1), s2); } void mps_store_sss(int i, char * s1, char * s2, char * s3) { int l, e; /* Length and End of the strings */ int c = (MPS_INFO_CHARS) / 3; int m = (MPS_INFO_CHARS) % 3; if (i > MAPPOINT_STATS_LINES) { return; } l = snprintf(mps_info[i], c + m, "%s", s1); e = l; l = snprintf(&mps_info[i][e], (c * 2) + m - e, "%*s", (c * 2) + m - e - 1, s2); e += l; snprintf(&mps_info[i][e], (c * 3) + m - e, "%*s", (c * 3) + m - e - 1, s3); } void mps_store_sd(int i, char * s, int d) { int l; if (i > MAPPOINT_STATS_LINES) { return; } l = snprintf(mps_info[i], MPS_INFO_CHARS, "%s", s); snprintf(&mps_info[i][l], MPS_INFO_CHARS, "%*d", (MPS_INFO_CHARS - 1 - l), d); } void mps_store_sfp(int i, char * s, double fl) { int l; l = snprintf(mps_info[i], MPS_INFO_CHARS, "%s", s); snprintf(&mps_info[i][l], MPS_INFO_CHARS, "%*.1f%%", MPS_INFO_CHARS - 2 - l, fl); } /* MPS Global routines */ void mps_right (int x, int y) { int i = 0; char s[12]; char * p; int g; snprintf(s,sizeof(s),"%d,%d",x,y); mps_store_title(i++,s); i++; mps_store_title(i++,_("Coverage")); p = (MP_INFO(x,y).flags & FLAG_FIRE_COVER) ? _("Yes") : _("No"); mps_store_ss(i++,_("Fire"),p); p = (MP_INFO(x,y).flags & FLAG_HEALTH_COVER) ? _("Yes") : _("No"); mps_store_ss(i++,_("Health"),p); p = (MP_INFO(x,y).flags & FLAG_CRICKET_COVER) ? _("Yes") : _("No"); mps_store_ss(i++,_("Cricket"),p); i++; mps_store_title(i++,_("Pollution")); if (MP_POL(x,y) < 10) p = _("clear"); else if (MP_POL(x,y) < 25) p = _("good"); else if (MP_POL(x,y) < 70) p = _("fair"); else if (MP_POL(x,y) < 190) p = _("smelly"); else if (MP_POL(x,y) < 450) p = _("smokey"); else if (MP_POL(x,y) < 1000) p = _("smoggy"); else if (MP_POL(x,y) < 1700) p = _("bad"); else if (MP_POL(x,y) < 3000) p = _("very bad"); else p = _("death!"); mps_store_sd(i++,p,MP_POL(x,y)); i++; mps_store_title(i++,_("Bulldoze Cost")); g = MP_GROUP(x,y); if (g == 0) { /* Can't bulldoze grass. */ mps_store_title(i++,_("N/A")); } else { if (g < 7) g--; /* translate into button type */ mps_store_d(i++,main_groups[g].bul_cost); } } void mps_global_finance(void) { int i = 0; char s[12]; int cashflow = 0; mps_store_title(i++,_("Tax Income")); cashflow += ly_income_tax; num_to_ansi (s, 12, ly_income_tax); mps_store_ss(i++,_("Income"), s); cashflow += ly_coal_tax; num_to_ansi(s, 12, ly_coal_tax); mps_store_ss(i++,_("Coal"), s); cashflow += ly_goods_tax; num_to_ansi(s, 12, ly_goods_tax); mps_store_ss(i++,_("Goods"), s); cashflow += ly_export_tax; num_to_ansi(s, 12, ly_export_tax); mps_store_ss(i++,_("Export"), s); i++; mps_store_title(i++,_("Expenses")); cashflow -= ly_unemployment_cost; num_to_ansi(s, 12, ly_unemployment_cost); mps_store_ss(i++,_("Unemp."), s); cashflow -= ly_transport_cost; num_to_ansi(s, 12, ly_transport_cost); mps_store_ss(i++,_("Transport"), s); cashflow -= ly_import_cost; num_to_ansi(s, 12, ly_import_cost); mps_store_ss(i++,_("Imports"), s); cashflow -= ly_other_cost; num_to_ansi(s, 12, ly_other_cost); mps_store_ss(i++,_("Others"), s); i++; num_to_ansi(s, 12, cashflow); mps_store_ss(i++,_("Net"), s); } void mps_global_other_costs (void) { int i = 0; int year; char s[12]; mps_store_title(i++,_("Other Costs")); /* Don't write year if it's negative. */ year = (total_time / NUMOF_DAYS_IN_YEAR) - 1; if (year >= 0) { mps_store_sd(i++, _("For year"), year); } i++; num_to_ansi(s,sizeof(s),ly_interest); mps_store_ss(i++,_("Interest"),s); num_to_ansi(s,sizeof(s),ly_school_cost); mps_store_ss(i++,_("Schools"),s); num_to_ansi(s,sizeof(s),ly_university_cost); mps_store_ss(i++,_("Univers."),s); num_to_ansi(s,sizeof(s),ly_deaths_cost); mps_store_ss(i++,_("Deaths"),s); num_to_ansi(s,sizeof(s),ly_windmill_cost); mps_store_ss(i++,_("Windmill"),s); num_to_ansi(s,sizeof(s),ly_health_cost); mps_store_ss(i++,_("Hospital"),s); num_to_ansi(s,sizeof(s),ly_rocket_pad_cost); mps_store_ss(i++,_("Rockets"),s); num_to_ansi(s,sizeof(s),ly_fire_cost); mps_store_ss(i++,_("Fire Stn"),s); num_to_ansi(s,sizeof(s),ly_cricket_cost); mps_store_ss(i++,_("Cricket"),s); num_to_ansi(s,sizeof(s),ly_recycle_cost); mps_store_ss(i++,_("Recycle"),s); } void mps_global_housing (void) { int i = 0; int tp = housed_population + people_pool; mps_store_title(i++,_("Population")); i++; mps_store_sd(i++,_("Total"),tp); mps_store_sd(i++,_("Housed"),housed_population); mps_store_sd(i++,_("Homeless"),people_pool); mps_store_sd(i++,_("Shanties"),numof_shanties); mps_store_sd(i++,_("Unn Dths"),unnat_deaths); mps_store_title(i++,_("Unemployment")); mps_store_sd(i++,_("Claims"),tunemployed_population); mps_store_sfp(i++,_("Rate"), ((tunemployed_population * 100.0) / tp)); mps_store_title(i++,_("Starvation")); mps_store_sd(i++,_("Cases"),tstarving_population); mps_store_sfp(i++,_("Rate"), ((tstarving_population * 100.0) / tp)); } #ifdef old_mps void mps_global_pop_setup (void) { Rect* mps = &scr.mappoint_stats; Fgl_write (mps->x + 32, mps->y + 2, _("PEOPLE")); Fgl_write (mps->x + 4, mps->y + 14, _("Pop")); Fgl_write (mps->x + 4, mps->y + 30, _("Unnat death")); } void mps_global_tech_setup (void) { Rect* mps = &scr.mappoint_stats; Fgl_write (mps->x + 32, mps->y + 2, "TECH"); Fgl_write (mps->x + 4, mps->y + 14, "Tech lvl"); Fgl_write (mps->x + 4, mps->y + 22, "Schools"); Fgl_write (mps->x + 4, mps->y + 30, "Univers"); Fgl_write (mps->x + 4, mps->y + 38, "Rockets"); } void mps_global_food_setup (void) { Rect* mps = &scr.mappoint_stats; Fgl_write (mps->x + 32, mps->y + 2, "FOOD"); Fgl_write (mps->x + 4, mps->y + 14, "Foodstore"); Fgl_write (mps->x + 4, mps->y + 22, "Farms"); Fgl_write (mps->x + 4, mps->y + 30, "Starv %"); } void mps_global_jobs_setup (void) { Rect* mps = &scr.mappoint_stats; Fgl_write (mps->x + 32, mps->y + 2, "JOBS"); Fgl_write (mps->x + 4, mps->y + 14, "Jobs"); Fgl_write (mps->x + 4, mps->y + 22, "% Unemp"); } #endif lincity-1.13.1/screen.c0000644000175000017500000021045410071464465011631 00000000000000/* ---------------------------------------------------------------------- * * screen.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include #include #if defined (HAVE_UNISTD_H) #include #endif #include "lcstring.h" #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "screen.h" #include "engglobs.h" #include "cliglobs.h" #include "pixmap.h" #include "lchelp.h" #include "mouse.h" #include "mps.h" #include "lcintl.h" #include "ldsvgui.h" #include "pbar.h" #include "dialbox.h" #include "lclib.h" #include "module_buttons.h" #include "stats.h" #include "engine.h" #include "fileutil.h" /* ---------------------------------------------------------------------- * * External Global Variables * ---------------------------------------------------------------------- */ extern int network_game; /* ---------------------------------------------------------------------- * * Public Global Variables * ---------------------------------------------------------------------- */ unsigned char main_font[2048]; unsigned char start_font1[2048]; unsigned char start_font2[4096]; unsigned char start_font3[4096]; Update_Scoreboard update_scoreboard; int monthgraph_style = MONTHGRAPH_STYLE_MIN; char screen_refreshing = 0; /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ static int monthgraph_style_timeout = 1; static int mps_global_style_timeout = 1; static float time_for_year; /* ---------------------------------------------------------------------- * * Private Function Prototypes * ---------------------------------------------------------------------- */ void draw_yellow_bezel (int x, int y, int h, int w); void draw_small_yellow_bezel (int x, int y, int h, int w); void print_time_for_year (void); void calculate_time_for_year (void); void clear_monthgraph (void); void draw_ms_buttons (void); static void do_monthgraph (int full_refresh); static void do_history_linegraph (int draw); static void do_sust_barchart (int draw); static void draw_sustline (int yoffset, int count, int max, int col); void monthgraph_full_refresh (void); void draw_mini_pol_in_main_win (); void mini_full_refresh (void); void update_main_screen_normal (int full_refresh); void update_main_screen_pollution (void); void update_main_screen_ub40 (void); void update_main_screen_starve (void); void update_main_screen_power (void); void update_main_screen_fire_cover (void); void update_main_screen_cricket_cover (void); void update_main_screen_health_cover (void); void update_main_screen_coal (void); /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ void draw_background (void) { /* XXX: we don't need to draw the whole background! */ /* GCS: but this routine is only called on a full refresh, so it's OK */ #if defined (LC_X11) || defined (WIN32) /* Draw border region, but don't put into pixmap */ draw_border (); /* Draw main area */ Fgl_fillbox (0, 0, pixmap_width, pixmap_height, TEXT_BG_COLOUR); #else /* SVGALIB */ Fgl_fillbox (0, 0, display.winW, display.winH, TEXT_BG_COLOUR); #endif } void connect_transport_main_screen (void) { Rect* b = &scr.main_win; connect_transport (main_screen_originx, main_screen_originy, b->w / 16, b->h / 16); } void refresh_main_screen (void) { connect_transport_main_screen (); update_main_screen (1); update_mini_screen (); dialog_refresh(); } void clip_main_window () { Rect* b = &scr.main_win; Fgl_enableclipping (); Fgl_setclippingwindow (b->x, b->y, b->x + b->w - 1, b->y + b->h - 1); } void unclip_main_window () { Fgl_disableclipping (); } void rotate_main_screen (void) { if (main_screen_flag == MAIN_SCREEN_NORMAL_FLAG) { main_screen_flag = MAIN_SCREEN_EQUALS_MINI; } else { main_screen_flag = MAIN_SCREEN_NORMAL_FLAG; } refresh_main_screen (); } void update_main_screen (int full_refresh) { if (main_screen_flag == MAIN_SCREEN_NORMAL_FLAG) { update_main_screen_normal (full_refresh); } else { switch (mini_screen_flags) { case MINI_SCREEN_NORMAL_FLAG: update_main_screen_normal (full_refresh); break; case MINI_SCREEN_POL_FLAG: update_main_screen_pollution (); break; case MINI_SCREEN_UB40_FLAG: update_main_screen_ub40 (); break; case MINI_SCREEN_STARVE_FLAG: update_main_screen_starve (); break; case MINI_SCREEN_POWER_FLAG: update_main_screen_power (); break; case MINI_SCREEN_FIRE_COVER: update_main_screen_fire_cover (); break; case MINI_SCREEN_CRICKET_COVER: update_main_screen_cricket_cover (); break; case MINI_SCREEN_HEALTH_COVER: update_main_screen_health_cover (); break; case MINI_SCREEN_COAL_FLAG: if (coal_survey_done) { update_main_screen_coal (); } else { update_main_screen_normal (full_refresh); } break; } } #if defined (WIN32) /* GCS -- I have a feeling this is wrong ... */ if (full_refresh) { UpdateWindow (display.hWnd); } #else if (mouse_type == MOUSE_TYPE_SQUARE) redraw_mouse (); #endif } void update_main_screen_normal (int full_refresh) { Rect* mw = &scr.main_win; int x, y, xm, ym; short typ, grp; #ifdef USE_PIXMAPS int sx, sy, dx, dy, x1, y1; #endif /* main_screen_origin[x|y] contain the mappoint of the top left of win */ #ifdef DEBUG_MAIN_SCREEN printf ("Updating main screen\n"); #endif if (help_flag || load_flag || save_flag) return; /* GCS: I moved the code to reset the main_screen_origin to the function load_city(), where I think is more appropriate. */ xm = main_screen_originx; if (xm > 3) xm = 3; ym = main_screen_originy; if (ym > 3) ym = 3; #if !defined (WIN32) /* For speed */ if (mouse_type == MOUSE_TYPE_SQUARE) hide_mouse (); #endif clip_main_window (); for (y = main_screen_originy - ym; y < main_screen_originy + (mw->h / 16); y++) for (x = main_screen_originx - xm; x < main_screen_originx + (mw->w / 16); x++) { typ = MP_TYPE(x,y); if (typ != mappointoldtype[x][y] || full_refresh) { mappointoldtype[x][y] = typ; if (typ == CST_USED) { continue; } grp = get_group_of_type(typ); #ifdef USE_PIXMAPS if (icon_pixmap[typ] != 0) { x1 = y1 = 0; if (x < main_screen_originx) x1 = (main_screen_originx - x) * 16; if (y < main_screen_originy) y1 = (main_screen_originy - y) * 16; sx = sy = main_groups[grp].size; if ((sx + x) > (main_screen_originx + (mw->w / 16))) sx = (main_screen_originx + (mw->w / 16)) - x; if ((sy + y) > (main_screen_originy + (mw->h / 16))) sy = (main_screen_originy + (mw->h / 16)) - y; sx = (sx << 4) - x1; sy = (sy << 4) - y1; dx = mw->x + (x - main_screen_originx) * 16 + x1; dy = mw->y + (y - main_screen_originy) * 16 + y1; if (sx > 0 && sy > 0) { #if defined (LC_X11) #ifdef ALLOW_PIX_DOUBLING if (pix_double) XCopyArea (display.dpy ,icon_pixmap[typ] ,display.win ,display.pixcolour_gc[0] ,x1 * 2, y1 * 2, sx * 2, sy * 2 ,dx * 2, dy * 2); else #endif /* ALLOW_PIX_DOUBLING */ XCopyArea (display.dpy ,icon_pixmap[typ] ,display.win ,display.pixcolour_gc[0] ,x1, y1, sx, sy ,dx + borderx, dy + bordery); #elif defined (WIN32) CopyPixmapToScreen (typ, x1, y1, sx, sy, dx, dy); #endif /* LC_X11 or WIN32 */ update_pixmap (x1, y1, sx, sy, dx, dy, main_groups[grp].size, main_types[typ].graphic); } } else #endif /* USE_PIXMAPS */ Fgl_putbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16 * main_groups[grp].size, 16 * main_groups[grp].size, main_types[typ].graphic); } } unclip_main_window (); } void update_main_screen_pollution (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { if (MP_POL(x,y) < 4) { col = green (24); } else if (MP_POL(x,y) < 600) { col = green (23 - (MP_POL(x,y) / 45)); } else { col = (int) sqrt ((float) (MP_POL(x,y) - 600)) / 9; if (col > 20) col = 20; col += red (11); } Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_ub40 (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if (MP_GROUP_IS_RESIDENCE(xx,yy)) { if (MP_INFO(xx,yy).int_1 < -20) col = red (28); else if (MP_INFO(xx,yy).int_1 < 10) col = red (14); else col = green (20); } else { col = green (14); } Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_starve (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if (MP_GROUP_IS_RESIDENCE(xx,yy)) { if ((total_time - MP_INFO(x,y).int_2) < 20) col = red (28); else if ((total_time - MP_INFO(x,y).int_2) < 100) col = red (14); else col = green (20); } else { col = green (14); } Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_power (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if (get_power (xx, yy, 1, 1) != 0) { col = green (14); } else if (get_power (xx, yy, 1, 0) != 0) { col = green (10); } else { // col = MP_COLOR(xx,yy); col = green (20); } Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_fire_cover (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if ((MP_INFO(xx,yy).flags & FLAG_FIRE_COVER) == 0) // col = MP_COLOR(xx,yy); col = green (20); else col = green (10); Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_health_cover (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if ((MP_INFO(xx,yy).flags & FLAG_HEALTH_COVER) == 0) // col = MP_COLOR(xx,yy); col = green (20); else col = green (10); Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_cricket_cover (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { int xx = x; int yy = y; if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; } if ((MP_INFO(xx,yy).flags & FLAG_CRICKET_COVER) == 0) // col = MP_COLOR(xx,yy); col = green (20); else col = green (10); Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } void update_main_screen_coal (void) { Rect* mw = &scr.main_win; int x, y, col; for (y = main_screen_originy; y < main_screen_originy + (mw->h / 16); y++) { for (x = main_screen_originx; x < main_screen_originx + (mw->w / 16); x++) { if (MP_INFO(x,y).coal_reserve == 0) col = white (4); else if (MP_INFO(x,y).coal_reserve >= COAL_RESERVE_SIZE / 2) col = white (18); else if (MP_INFO(x,y).coal_reserve < COAL_RESERVE_SIZE / 2) col = white (28); Fgl_fillbox (mw->x + (x - main_screen_originx) * 16, mw->y + (y - main_screen_originy) * 16, 16, 16, col); } } } /* ******************* SCREEN SETUP ******************* */ /* XXX: WCK: All of the drawing should be done already in screen_full_refresh; Why do it here? */ /* GCS: Actually, this function loads the graphics from disk */ /* WCK: Yes, but it used to refresh everything after doing that. */ void screen_setup (void) { /* draw the graph boxes */ monthgraph_full_refresh (); monthgraph_style_timeout = real_time + 10000; mps_redraw (); mps_global_style_timeout = real_time + 10000; /* load the pbar graphics */ /* XXX: WCK: pbar_setup? */ up_pbar1_graphic = load_graphic ("pbarup1.csi"); up_pbar2_graphic = load_graphic ("pbarup2.csi"); down_pbar1_graphic = load_graphic ("pbardown1.csi"); down_pbar2_graphic = load_graphic ("pbardown2.csi"); pop_pbar_graphic = load_graphic ("pbarpop.csi"); tech_pbar_graphic = load_graphic ("pbartech.csi"); food_pbar_graphic = load_graphic ("pbarfood.csi"); jobs_pbar_graphic = load_graphic ("pbarjobs.csi"); coal_pbar_graphic = load_graphic ("pbarcoal.csi"); goods_pbar_graphic = load_graphic ("pbargoods.csi"); ore_pbar_graphic = load_graphic ("pbarore.csi"); steel_pbar_graphic = load_graphic ("pbarsteel.csi"); money_pbar_graphic = load_graphic ("pbarmoney.csi"); init_pbars (); /* draw the box around the main window */ draw_main_window_box (green (8)); /* load the checked and unchecked box graphics */ checked_box_graphic = load_graphic ("checked_box.csi"); unchecked_box_graphic = load_graphic ("unchecked_box.csi"); /* load minimap buttons (but don't draw) */ ms_normal_button_graphic = load_graphic ("ms-normal-button.csi"); ms_pollution_button_graphic = load_graphic ("ms-pollution-button.csi"); ms_fire_cover_button_graphic = load_graphic ("ms-fire-cover-button.csi"); ms_health_cover_button_graphic = load_graphic ("ms-health-cover-button.csi"); ms_cricket_cover_button_graphic = load_graphic ("ms-cricket-cover-button.csi"); ms_ub40_button_graphic = load_graphic ("ms-ub40-button.csi"); ms_coal_button_graphic = load_graphic ("ms-coal-button.csi"); ms_starve_button_graphic = load_graphic ("ms-starve-button.csi"); ms_power_button_graphic = load_graphic ("ms-power-button.csi"); ms_ocost_button_graphic = load_graphic ("ms-ocost-button.csi"); /* draw the pause button */ pause_button1_off = load_graphic ("pause-offl.csi"); pause_button2_off = load_graphic ("pause-offr.csi"); pause_button1_on = load_graphic ("pause-onl.csi"); pause_button2_on = load_graphic ("pause-onr.csi"); draw_pause (0); /* draw the slow button */ slow_button1_off = load_graphic ("slow-offl.csi"); slow_button2_off = load_graphic ("slow-offr.csi"); slow_button1_on = load_graphic ("slow-onl.csi"); slow_button2_on = load_graphic ("slow-onr.csi"); draw_slow (0); /* draw the medium button */ med_button1_off = load_graphic ("norm-offl.csi"); med_button2_off = load_graphic ("norm-offr.csi"); med_button1_on = load_graphic ("norm-onl.csi"); med_button2_on = load_graphic ("norm-onr.csi"); draw_med (0); /* draw the fast button */ fast_button1_off = load_graphic ("fast-offl.csi"); fast_button2_off = load_graphic ("fast-offr.csi"); fast_button1_on = load_graphic ("fast-onl.csi"); fast_button2_on = load_graphic ("fast-onr.csi"); draw_fast (0); /* draw the results button */ results_button1 = load_graphic ("results-l.csi"); results_button2 = load_graphic ("results-r.csi"); draw_results (); /* draw the t-overwrite button and load 'on button' */ #if defined (commentout) toveron_button1 = load_graphic ("tover1-on.csi"); toveroff_button1 = load_graphic ("tover1-off.csi"); toveron_button2 = load_graphic ("tover2-on.csi"); toveroff_button2 = load_graphic ("tover2-off.csi"); draw_tover (0); #ifdef LC_X11 /* draw the confine mouse button */ confine_button = load_graphic ("mouse-confined.csi"); unconfine_button = load_graphic ("mouse-free.csi"); draw_confine (0); #endif #endif /* Load and draw menu buttons */ #if defined (commentout) menu_button_graphic = load_graphic ("menu-button.csi"); #endif draw_menu (); draw_help (); #if defined (commentout) load_button_graphic = load_graphic ("load-button.csi"); draw_load (); save_button_graphic = load_graphic ("save-button.csi"); draw_save (); quit_button_graphic = load_graphic ("quit-button.csi"); draw_quit (); help_button_graphic = load_graphic ("help-button.csi"); draw_help (); #endif /* GCS moved selection to here */ set_selected_module (CST_TRACK_LR); #ifdef SCREEN_SETUP_DRAWS mini_full_refresh (); redraw_mouse (); update_main_screen (); #endif } void screen_full_refresh (void) { screen_refreshing++; draw_background (); monthgraph_full_refresh (); mps_redraw (); pbars_full_refresh (); mini_full_refresh (); /* GCS FIX: what about during MT? */ if (selected_module_type == CST_GREEN) draw_main_window_box (red (8)); else draw_main_window_box (green (8)); draw_menu (); draw_help (); #if defined (commentout) draw_load (); draw_save (); draw_quit (); draw_help (); #endif draw_pause (pause_flag); draw_slow (slow_flag & !pause_flag); draw_med (med_flag & !pause_flag); draw_fast (fast_flag & !pause_flag); draw_results (); draw_modules (); /* GCS: What about resize during load/save/prefs? */ /* WCK: We could just lock resize off when we enter them. */ if (help_flag) { refresh_help_page (); } refresh_main_screen (); /* Text status area */ print_date(); print_time_for_year(); print_total_money(); draw_selected_module_cost(); refresh_pbars(); redraw_mouse(); /* screen_setup used to do this */ screen_refreshing--; } #if defined (commentout) void draw_ms_buttons (void) { draw_ms_button (&scr.ms_normal_button, ms_normal_button_graphic); draw_ms_button (&scr.ms_pollution_button, ms_pollution_button_graphic); draw_ms_button (&scr.ms_fire_cover_button, ms_fire_cover_button_graphic); draw_ms_button (&scr.ms_health_cover_button, ms_health_cover_button_graphic); draw_ms_button (&scr.ms_cricket_cover_button, ms_cricket_cover_button_graphic); draw_ms_button (&scr.ms_ub40_button, ms_ub40_button_graphic); draw_ms_button (&scr.ms_coal_button, ms_coal_button_graphic); draw_ms_button (&scr.ms_starve_button, ms_starve_button_graphic); draw_ms_button (&scr.ms_power_button, ms_power_button_graphic); draw_ms_button (&scr.ms_ocost_button, ms_ocost_button_graphic); } #endif void draw_main_window_box (int colour) { Rect* b = &scr.main_win; int x; for (x = 0; x < 8; x++) { Fgl_hline (b->x - 1 - x, b->y - 1 - x, b->x + b->w + x, colour + x + x); Fgl_hline (b->x - 1 - x, b->y + b->h + x, b->x + b->w + x, colour + x + x); Fgl_line (b->x - 1 - x, b->y - x, b->x - 1 - x, b->y + b->h + x, colour + x + x); Fgl_line (b->x + b->w + x, b->y - x, b->x + b->w + x, b->y + b->h + x, colour + x + x); } } void draw_yellow_bezel (int x, int y, int h, int w) { int i; for (i = 1; i < 8; i++) { Fgl_hline (x - 1 - i, y - 1 - i, x + w + 1 + i, yellow (16)); Fgl_line (x - 1 - i, y - 1 - i, x - 1 - i, y + h + 1 + i, yellow (14)); Fgl_hline (x - 1 - i, y + h + 1 + i, x + w + 1 + i, yellow (22)); Fgl_line (x + w + 1 + i, y - 1 - i, x + w + 1 + i, y + h + 1 + i, yellow (24)); } } void draw_small_yellow_bezel (int x, int y, int h, int w) { #if defined (commentout) int i; for (i = 1; i < 4; i++) { Fgl_hline (x - 1 - i, y - 1 - i, x + w + 1 + i, yellow (16)); Fgl_line (x - 1 - i, y - 1 - i, x - 1 - i, y + h + 1 + i, yellow (14)); Fgl_hline (x - 1 - i, y + h + 1 + i, x + w + 1 + i, yellow (22)); Fgl_line (x + w + 1 + i, y - 1 - i, x + w + 1 + i, y + h + 1 + i, yellow (24)); } #endif int i; for (i = 1; i < 4; i++) { Fgl_hline (x - 1 - i, y - 1 - i, x + w + i, yellow (16)); Fgl_line (x - 1 - i, y - 1 - i, x - 1 - i, y + h + i, yellow (14)); Fgl_hline (x - 1 - i, y + h + i, x + w + i, yellow (22)); Fgl_line (x + w + i, y - 1 - i, x + w + i, y + h + i, yellow (24)); } } void load_fonts() { char s[LC_PATH_MAX]; int i; FILE *inf; /* main_font */ if ((inf = fopen (fontfile, "r")) == 0) HandleError ("Can't open the font file", FATAL); for (i = 0; i < 256 * 8; i++) main_font[i] = fgetc (inf); fclose (inf); /* start_font1 */ sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "8x8thin"); if ((inf = fopen (s, "rb")) == NULL) do_error ("Can't open opening screen font 8x8thin"); for (i = 0; i < 2048; i++) start_font1[i] = fgetc (inf); fclose (inf); /* start_font2 */ sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "scrawl_w.fnt"); if ((inf = fopen (s, "rb")) == NULL) do_error ("Can't open opening screen font scrawl_w.fnt"); for (i = 0; i < 4096; i++) start_font2[i] = fgetc (inf); fclose (inf); /* start_font3 */ sprintf (s, "%s%c%s", opening_path, PATH_SLASH, "scrawl_s.fnt"); if ((inf = fopen (s, "rb")) == NULL) do_error ("Can't open opening screen font scrawl_s.fnt"); for (i = 0; i < 4096; i++) start_font3[i] = fgetc (inf); fclose (inf); } void init_fonts (void) { #if defined (WIN32) init_windows_font(); #endif load_fonts(); #if defined (SVGALIB) gl_setwritemode (FONT_COMPRESSED); #endif Fgl_setfont (8, 8, main_font); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } /* Miniscreen mouse handlers */ static Mouse_Handle * mini_map_handle; static Mouse_Handle * mini_aux_handle; void init_mini_map_mouse (void) { mini_map_handle = mouse_register(&scr.mini_map,&mini_map_handler); mini_aux_handle = mouse_register(&scr.mini_map_aux,&mini_aux_handler); } void mini_map_handler(int x, int y, int button) { if (button == LC_MOUSE_RIGHTBUTTON) { mini_screen_help (); return; } if (mini_screen_flags == MINI_SCREEN_COAL_FLAG && !coal_survey_done) { if (yn_dial_box (_("Coal survey"), _("This will cost you 1 million"), _("After that it's is free to call again"), _("Do coal survey?")) == 0) { return; } do_coal_survey (); print_total_money (); return; } adjust_main_origin (x - scr.main_win.w / 32, y - scr.main_win.h / 32, 1); if (mini_screen_flags == MINI_SCREEN_PORT_FLAG) draw_mini_screen (); } void mini_aux_handler(int x, int y, int button) { if (button == LC_MOUSE_MIDDLEBUTTON) { rotate_main_screen (); return; } else if (button == LC_MOUSE_RIGHTBUTTON) { mini_screen_help (); return; } rotate_mini_screen (); } void rotate_mini_screen (void) { switch (mini_screen_flags) { case MINI_SCREEN_NORMAL_FLAG: mini_screen_flags = MINI_SCREEN_POL_FLAG; break; case MINI_SCREEN_POL_FLAG: mini_screen_flags = MINI_SCREEN_UB40_FLAG; break; case MINI_SCREEN_UB40_FLAG: mini_screen_flags = MINI_SCREEN_STARVE_FLAG; break; case MINI_SCREEN_STARVE_FLAG: mini_screen_flags = MINI_SCREEN_POWER_FLAG; break; #if defined (commentout) case MINI_SCREEN_PORT_FLAG: /* Not in the rotation schedule */ #endif case MINI_SCREEN_POWER_FLAG: mini_screen_flags = MINI_SCREEN_FIRE_COVER; break; case MINI_SCREEN_FIRE_COVER: mini_screen_flags = MINI_SCREEN_CRICKET_COVER; break; case MINI_SCREEN_CRICKET_COVER: mini_screen_flags = MINI_SCREEN_HEALTH_COVER; break; case MINI_SCREEN_HEALTH_COVER: mini_screen_flags = MINI_SCREEN_COAL_FLAG; break; case MINI_SCREEN_COAL_FLAG: mini_screen_flags = MINI_SCREEN_NORMAL_FLAG; break; } update_mini_screen (); if (main_screen_flag == MAIN_SCREEN_EQUALS_MINI) { refresh_main_screen (); } } void update_mini_screen (void) { switch (mini_screen_flags) { case MINI_SCREEN_NORMAL_FLAG: draw_mini_screen (); break; case MINI_SCREEN_POL_FLAG: draw_mini_screen_pollution (); break; case MINI_SCREEN_UB40_FLAG: draw_mini_screen_ub40 (); break; case MINI_SCREEN_STARVE_FLAG: draw_mini_screen_starve (); break; #if defined (commentout) case MINI_SCREEN_PORT_FLAG: draw_mini_screen_port (); break; #endif case MINI_SCREEN_POWER_FLAG: draw_mini_screen_power (); break; case MINI_SCREEN_FIRE_COVER: draw_mini_screen_fire_cover (); break; case MINI_SCREEN_CRICKET_COVER: draw_mini_screen_cricket_cover (); break; case MINI_SCREEN_HEALTH_COVER: draw_mini_screen_health_cover (); break; case MINI_SCREEN_COAL_FLAG: draw_mini_screen_coal (); break; } } void mini_screen_help (void) { switch (mini_screen_flags) { case MINI_SCREEN_NORMAL_FLAG: activate_help ("msb-normal.hlp"); break; case MINI_SCREEN_POL_FLAG: activate_help ("msb-pol.hlp"); break; case MINI_SCREEN_UB40_FLAG: activate_help ("msb-ub40.hlp"); break; case MINI_SCREEN_STARVE_FLAG: activate_help ("msb-starve.hlp"); break; case MINI_SCREEN_POWER_FLAG: activate_help ("msb-power.hlp"); break; case MINI_SCREEN_FIRE_COVER: activate_help ("msb-fire.hlp"); break; case MINI_SCREEN_CRICKET_COVER: activate_help ("msb-cricket.hlp"); break; case MINI_SCREEN_HEALTH_COVER: activate_help ("msb-health.hlp"); break; case MINI_SCREEN_COAL_FLAG: activate_help ("msb-coal.hlp"); break; } } void mini_full_refresh (void) { Rect* mm = &scr.mini_map; Rect* mmaux = &scr.mini_map_aux; Rect* mmarea = &scr.mini_map_area; /* draw border around mini screen */ draw_small_yellow_bezel (mmarea->x, mmarea->y, mmarea->h, mmarea->w); /* draw line between mini_map and mini_map_aux */ Fgl_hline (mmaux->x, mmaux->y + mmaux->h, mmaux->x + mmaux->w, yellow (16)); Fgl_hline (mmaux->x, mmaux->y + mmaux->h + 1, mmaux->x + mmaux->w, yellow (16)); /* Black out area l/r of mini_map w/in mini_map_area */ Fgl_fillbox (mmarea->x, mm->y, mm->x - mmarea->x, mm->h, GRAPHS_B_COLOUR); Fgl_fillbox (mm->x + mm->w, mm->y, mmarea->x + mmarea->w - mm->x - mm->w, mm->h, GRAPHS_B_COLOUR); /* now draw the mini_screen contents */ draw_mini_screen (); } void draw_mini_screen (void) { int x, y, xx, yy; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_NORMAL_FLAG; draw_ms_button (ms_normal_button_graphic); draw_ms_text (_("Land Use ")); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; /* WCK: I think this is what is blowing up */ if ((xx < 0 || xx > WORLD_SIDE_LEN) || (yy < 0 || yy > WORLD_SIDE_LEN)) { printf("Argh! mini_screen out of range on CST_USED!\n"); printf("xx=%d,yy=%d. Continuing\n",xx,yy); } Fgl_setpixel (mm->x + x, mm->y + y, main_groups[MP_GROUP(xx,yy)].colour); } else { Fgl_setpixel (mm->x + x, mm->y + y, main_groups[MP_GROUP(x,y)].colour); } } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_big_mini_screen (void) { Rect* b = &scr.main_win; int x, y, xx, yy; for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; Fgl_fillbox (b->x + x * 4, b->y + y * 4, 4, 4 ,main_groups[MP_GROUP(xx,yy)].colour); } else { Fgl_fillbox (b->x + x * 4, b->y + y * 4, 4, 4 ,main_groups[MP_GROUP(x,y)].colour); } } } } void draw_mini_screen_pollution (void) { int x, y, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_POL_FLAG; draw_ms_text (_("Pollution ")); draw_ms_button (ms_pollution_button_graphic); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_POL(x,y) < 4) { col = green (24); } else if (MP_POL(x,y) < 600) { col = green (23 - (MP_POL(x,y) / 45)); } else { col = (int) sqrt ((float) (MP_POL(x,y) - 600)) / 9; if (col > 20) col = 20; col += red (11); } Fgl_setpixel (mm->x + x, mm->y + y, col); } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_fire_cover (void) { int x, y, xx, yy, col; Rect* mm = &scr.mini_map; /* GCS: This sort of works. Might be better to return to "normal" when user clicks on mini-screen, or else draw outline box. */ mini_screen_flags = MINI_SCREEN_FIRE_COVER; draw_ms_text (_("Fire cover ")); draw_ms_button (ms_fire_cover_button_graphic); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; if ((MP_INFO(xx,yy).flags & FLAG_FIRE_COVER) == 0) col = main_groups[MP_GROUP(xx,yy)].colour; else col = green (10); } else { if ((MP_INFO(x,y).flags & FLAG_FIRE_COVER) == 0) col = main_groups[MP_GROUP(x,y)].colour; else col = green (10); } Fgl_setpixel (mm->x + x, mm->y + y, col); } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_cricket_cover (void) { int x, y, xx, yy, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_CRICKET_COVER; draw_ms_text (_("Crickt cover")); draw_ms_button (ms_cricket_cover_button_graphic); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; if ((MP_INFO(xx,yy).flags & FLAG_CRICKET_COVER) == 0) col = main_groups[MP_GROUP(xx,yy)].colour; else col = green (10); } else { if ((MP_INFO(x,y).flags & FLAG_CRICKET_COVER) == 0) col = main_groups[MP_GROUP(x,y)].colour; else col = green (10); } Fgl_setpixel (mm->x + x, mm->y + y, col); } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_health_cover (void) { int x, y, xx, yy, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_HEALTH_COVER; draw_ms_text (_("Health cover")); draw_ms_button (ms_health_cover_button_graphic); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; if ((MP_INFO(xx,yy).flags & FLAG_HEALTH_COVER) == 0) col = main_groups[MP_GROUP(xx,yy)].colour; else col = green (10); } else { if ((MP_INFO(x,y).flags & FLAG_HEALTH_COVER) == 0) col = main_groups[MP_GROUP(x,y)].colour; else col = green (10); } Fgl_setpixel (mm->x + x, mm->y + y, col); } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_ub40 (void) { int x, y, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_UB40_FLAG; draw_ms_text (_("Unemployment")); draw_ms_button (ms_ub40_button_graphic); Fgl_fillbox (mm->x, mm->y, WORLD_SIDE_LEN, WORLD_SIDE_LEN, green (14)); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_GROUP_IS_RESIDENCE(x,y)) { if (MP_INFO(x,y).int_1 < -20) col = red (28); else if (MP_INFO(x,y).int_1 < 10) col = red (14); else col = green (20); Fgl_fillbox (mm->x + x, mm->y + y, 3, 3, col); } } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_starve (void) { int x, y, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_STARVE_FLAG; draw_ms_text (_("Starvation ")); draw_ms_button (ms_starve_button_graphic); Fgl_fillbox (mm->x, mm->y, WORLD_SIDE_LEN, WORLD_SIDE_LEN, green (14)); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_GROUP_IS_RESIDENCE(x,y)) { if ((total_time - MP_INFO(x,y).int_2) < 20) col = red (28); else if ((total_time - MP_INFO(x,y).int_2) < 100) col = red (14); else col = green (20); Fgl_fillbox (mm->x + x, mm->y + y, 3, 3, col); } } } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_coal (void) { int x, y, col; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_COAL_FLAG; draw_ms_text (_("Coal Reserve")); draw_ms_button (ms_coal_button_graphic); if (coal_survey_done) { for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_INFO(x,y).coal_reserve == 0) col = white (4); else if (MP_INFO(x,y).coal_reserve >= COAL_RESERVE_SIZE / 2) col = white (18); else if (MP_INFO(x,y).coal_reserve < COAL_RESERVE_SIZE / 2) col = white (28); Fgl_setpixel (mm->x + x, mm->y + y, col); } } draw_mini_screen_cursor (); } else { Fgl_setfontcolors (white(4), white(28)); Fgl_fillbox (mm->x, mm->y, WORLD_SIDE_LEN, WORLD_SIDE_LEN, white(4)); Fgl_write (mm->x + 4, mm->y + 20, _("Click here")); Fgl_write (mm->x + 4, mm->y + 32, _(" to do ")); Fgl_write (mm->x + 4, mm->y + 44, _("coal survey")); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } void draw_mini_screen_power (void) { int x, y, xx, yy, col; int have_power = 0; Rect* mm = &scr.mini_map; mini_screen_flags = MINI_SCREEN_POWER_FLAG; draw_ms_button (ms_power_button_graphic); for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { short grp = MP_GROUP(x,y); if (grp == GROUP_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; grp = MP_GROUP(xx,yy); } else { xx = x; yy = y; } if (get_power (xx, yy, 1, 1) != 0) { have_power = 1; col = green (14); } else if (get_power (xx, yy, 1, 0) != 0) { have_power = 1; col = green (10); } else { col = main_groups[grp].colour; } Fgl_setpixel (mm->x + x, mm->y + y, col); } } if (have_power) { draw_ms_text (_("Power ")); } else { draw_ms_text (_("Power (none)")); } draw_mini_screen_cursor (); #if defined (WIN32) RefreshArea (mm->x, mm->y, mm->x + x, mm->y + y); #endif } /* GCS -- This is obsolete, right?? */ void draw_mini_screen_ocost (void) { char s[100]; Rect* b = &scr.mini_map; mini_screen_flags = MINI_SCREEN_NORMAL_FLAG; draw_ms_text ("Other Costs"); draw_ms_button (ms_ocost_button_graphic); Fgl_fillbox (b->x, b->y, WORLD_SIDE_LEN, WORLD_SIDE_LEN, green (12)); Fgl_setfontcolors (green (12), TEXT_FG_COLOUR); sprintf (s, "OC yr %04d", (total_time / NUMOF_DAYS_IN_YEAR) - 1); Fgl_write (b->x + 10, b->y + 2, s); if (ly_interest > 19999) { sprintf (s, "Int %4dK", ly_interest / 1000); } else sprintf (s, "Int %5d", ly_interest); Fgl_write (b->x + 10, b->y + 16, s); if (ly_school_cost > 19999) { if (ly_school_cost > 1999999) sprintf (s, "Scl %4dM", ly_school_cost / 1000000); else sprintf (s, "Scl %4dK", ly_school_cost / 1000); } else sprintf (s, "Scl %5d", ly_school_cost); Fgl_write (b->x + 10, b->y + 24, s); if (ly_university_cost > 19999) { if (ly_university_cost > 1999999) sprintf (s, "Uni %4dM", ly_university_cost / 1000000); else sprintf (s, "Uni %4dK", ly_university_cost / 1000); } else sprintf (s, "Uni %5d", ly_university_cost); Fgl_write (b->x + 10, b->y + 32, s); if (ly_deaths_cost > 19999) { if (ly_deaths_cost > 1999999) sprintf (s, "UnD %4dM", ly_deaths_cost / 1000000); else sprintf (s, "UnD %4dK", ly_deaths_cost / 1000); } else sprintf (s, "UnD %5d", ly_deaths_cost); Fgl_write (b->x + 10, b->y + 40, s); if (ly_windmill_cost > 19999) { if (ly_windmill_cost > 1999999) sprintf (s, "WiM %4dM", ly_windmill_cost / 1000000); else sprintf (s, "WiM %4dK", ly_windmill_cost / 1000); } else sprintf (s, "WiM %5d", ly_windmill_cost); Fgl_write (b->x + 10, b->y + 48, s); if (ly_recycle_cost > 19999) { if (ly_recycle_cost > 1999999) sprintf (s, "Rcy %4dM", ly_recycle_cost / 1000000); else sprintf (s, "Rcy %4dK", ly_recycle_cost / 1000); } else sprintf (s, "Rcy %5d", ly_recycle_cost); Fgl_write (b->x + 10, b->y + 56, s); if (ly_health_cost > 19999) { if (ly_health_cost > 1999999) sprintf (s, "Hth %4dM", ly_health_cost / 1000000); else sprintf (s, "Hth %4dK", ly_health_cost / 1000); } else sprintf (s, "Hth %5d", ly_health_cost); Fgl_write (b->x + 10, b->y + 64, s); if (ly_rocket_pad_cost > 19999) { if (ly_rocket_pad_cost > 1999999) sprintf (s, "Rok %4dM", ly_rocket_pad_cost / 1000000); else sprintf (s, "Rok %4dK", ly_rocket_pad_cost / 1000); } else sprintf (s, "Rok %5d", ly_rocket_pad_cost); Fgl_write (b->x + 10, b->y + 72, s); if (ly_fire_cost > 19999) { if (ly_fire_cost > 1999999) sprintf (s, "Fst %4dM", ly_fire_cost / 1000000); else sprintf (s, "Fst %4dK", ly_fire_cost / 1000); } else sprintf (s, "Fst %5d", ly_fire_cost); Fgl_write (b->x + 10, b->y + 80, s); if (ly_cricket_cost > 19999) { if (ly_cricket_cost > 1999999) sprintf (s, "Ckt %4dM", ly_cricket_cost / 1000000); else sprintf (s, "Ckt %4dK", ly_cricket_cost / 1000); } else sprintf (s, "Ckt %5d", ly_cricket_cost); Fgl_write (b->x + 10, b->y + 88, s); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } #if defined (commentout) void draw_mini_screen_port (void) { char buy[256], sell[256], s[256]; int l, i, *p1, *p2; Rect* b = &scr.mini_map; mini_screen_flags = MINI_SCREEN_PORT_FLAG; /* GCS FIX: This causes flashing on my SGI, and is really not necessary, since we will completely overwrite the numbers below. */ Fgl_fillbox (b->x, b->y, WORLD_SIDE_LEN, WORLD_SIDE_LEN, green (12)); Fgl_setfontcolors (green (12), TEXT_FG_COLOUR); sprintf (s, " Port %2d %2d", mini_screen_port_x, mini_screen_port_y); Fgl_write (b->x + 4, b->y + 2, s); Fgl_write (b->x + 4, b->y + 16, " F C O G S"); Fgl_write (b->x + 4, b->y + 26, " Buy Sell"); p1 = &(MP_INFO(mini_screen_port_x,mini_screen_port_y + 1).int_3); p2 = &(MP_INFO(mini_screen_port_x,mini_screen_port_y + 2).int_3); for (i = 0; i < 5; i++) { l = *(p1++) / 100; if (l > 19999) { if (l > 1999999) sprintf (buy, "%4dM", l / 1000000); else sprintf (buy, "%4dK", l / 1000); } else sprintf (buy, "%5d", l); l = *(p2++) / 100; if (l > 19999) { if (l > 1999999) sprintf (sell, "%4dM", l / 1000000); else sprintf (sell, "%4dK", l / 1000); } else sprintf (sell, "%5d", l); sprintf (s, "%s %s", buy, sell); Fgl_write (b->x + 10, b->y + 40 + i * 8, s); } Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } #endif void draw_mini_screen_cursor (void) { Rect* mini = &scr.mini_map; Rect* mw = &scr.main_win; Fgl_hline (mini->x + main_screen_originx ,mini->y + main_screen_originy ,mini->x + main_screen_originx + mw->w / 16 - 1 ,255); Fgl_hline (mini->x + main_screen_originx ,mini->y + main_screen_originy + mw->h / 16 - 1 ,mini->x + main_screen_originx + mw->w / 16 - 1 ,255); Fgl_line (mini->x + main_screen_originx ,mini->y + main_screen_originy ,mini->x + main_screen_originx ,mini->y + main_screen_originy + mw->h / 16 - 1 ,255); Fgl_line (mini->x + main_screen_originx + mw->w / 16 - 1 ,mini->y + main_screen_originy ,mini->x + main_screen_originx + mw->w / 16 - 1 ,mini->y + main_screen_originy + mw->h / 16 - 1 ,255); } void initialize_print_stats (void) { #if !defined (WIN32) hide_mouse (); #endif update_scoreboard.mps = 0; update_scoreboard.mini = 0; update_scoreboard.date = 0; update_scoreboard.money = 0; update_scoreboard.monthly = 0; update_scoreboard.yearly_1 = 0; update_scoreboard.yearly_2 = 0; update_scoreboard.message_area = 0; #if defined (STATS_WINDOW) draw_yellow_bezel (STATS_X, STATS_Y, STATS_H, STATS_W); Fgl_write (STATS_X, STATS_Y, "Population "); Fgl_write (STATS_X, STATS_Y + 8, "% Starving "); Fgl_write (STATS_X, STATS_Y + 16, "Foodstore "); Fgl_write (STATS_X, STATS_Y + 24, "% u-ployed "); Fgl_write (STATS_X + 18 * 8, STATS_Y, "Tech level "); Fgl_write (STATS_X + 18 * 8, STATS_Y + 8, "Un-nat deaths "); Fgl_write (STATS_X + 18 * 8, STATS_Y + 16, "Rockets "); Fgl_write (STATS_X + 18 * 8, STATS_Y + 24, "Shanty towns"); #endif #if defined (FINANCE_WINDOW) draw_yellow_bezel (FINANCE_X, FINANCE_Y, FINANCE_H, FINANCE_W); Fgl_write (FINANCE_X, FINANCE_Y, "Income Expend"); Fgl_write (FINANCE_X, FINANCE_Y + 8, "IT"); Fgl_write (FINANCE_X, FINANCE_Y + 16, "CT"); Fgl_write (FINANCE_X, FINANCE_Y + 24, "GT"); Fgl_write (FINANCE_X, FINANCE_Y + 32, "XP"); Fgl_write (FINANCE_X + 64, FINANCE_Y + 8, "OC"); Fgl_write (FINANCE_X + 64, FINANCE_Y + 16, "UC"); Fgl_write (FINANCE_X + 64, FINANCE_Y + 24, "TC"); Fgl_write (FINANCE_X + 64, FINANCE_Y + 32, "IP"); Fgl_write (FINANCE_X, FINANCE_Y + 48, "Tot"); #endif #if !defined (WIN32) redraw_mouse (); #endif } void advance_monthgraph_style (void) { monthgraph_style = (monthgraph_style % 2) + 1; if (monthgraph_style == MONTHGRAPH_STYLE_ECONOMY) { monthgraph_style_timeout = real_time + 10000; } else { monthgraph_style_timeout = real_time + 4000; } } void refresh_monthgraph (void) { do_monthgraph (1); } void monthgraph_full_refresh (void) { Rect* mg = &scr.monthgraph; draw_small_yellow_bezel (mg->x, mg->y, mg->h, mg->w); do_monthgraph (1); } void print_stats (void) { static int flag = 0; int monthgraph_full_update = 0; if (flag == 0) { initialize_print_stats (); flag = 1; } #if !defined (WIN32) hide_mouse (); #endif if (total_time % NUMOF_DAYS_IN_MONTH == (NUMOF_DAYS_IN_MONTH - 1)) { update_scoreboard.monthly = 1; } if (total_time % NUMOF_DAYS_IN_YEAR == (NUMOF_DAYS_IN_YEAR - 1)) { update_scoreboard.yearly_1 = 1; update_scoreboard.money = 1; } if ((total_time % NUMOF_DAYS_IN_YEAR) == 0) { update_scoreboard.yearly_2 = 1; } if (real_time > mappoint_stats_time) { update_scoreboard.mps = 1; mappoint_stats_time = real_time + 1000; } if (mini_screen_flags != MINI_SCREEN_NORMAL_FLAG && real_time > mini_screen_time) { update_scoreboard.mini = 1; mini_screen_time = real_time + 1000; } if ((total_time % NUMOF_DAYS_IN_YEAR) == 0) { calculate_time_for_year (); print_time_for_year (); } if (total_time % NUMOF_DAYS_IN_MONTH == 1) { update_scoreboard.date = 1; } /* Decode and perform update requests according to scoreboard */ if (update_scoreboard.mps) { update_scoreboard.mps = 0; /* Update the global style if timeout has occurred */ if (help_flag || load_flag || save_flag || mappoint_stats_flag) { mps_global_style_timeout = real_time + 6000; } if (real_time > mps_global_style_timeout) { if (time_multiplex_stats) { mps_global_advance (); } } mps_update(); } if (update_scoreboard.mini) { update_scoreboard.mini = 0; update_mini_screen (); } if (update_scoreboard.date) { update_scoreboard.date = 0; print_date (); } if (update_scoreboard.money) { update_scoreboard.money = 0; print_total_money (); } if (update_scoreboard.monthly) { update_scoreboard.monthly = 0; /* Update the global style if timeout has occurred */ if (help_flag || load_flag || save_flag) { if (monthgraph_style == MONTHGRAPH_STYLE_ECONOMY) { monthgraph_style_timeout = real_time + 10000; } else { monthgraph_style_timeout = real_time + 4000; } } if (real_time > monthgraph_style_timeout) { if (time_multiplex_stats) { monthgraph_full_update = 1; monthgraph_style = (monthgraph_style % 2) + 1; } if (monthgraph_style == MONTHGRAPH_STYLE_ECONOMY) { monthgraph_style_timeout = real_time + 10000; } else { monthgraph_style_timeout = real_time + 4000; } } do_monthgraph (monthgraph_full_update); #if defined (STATS_WINDOW) sprintf (s, "%5d ", housed_population + people_pool); Fgl_write (STATS_X + 8 * 11, STATS_Y, s); i = ((tstarving_population / NUMOF_DAYS_IN_MONTH) * 1000) / ((tpopulation / NUMOF_DAYS_IN_MONTH) + 1); sprintf (s, "%3d.%1d ", i / 10, i % 10); Fgl_write (STATS_X + 8 * 11, STATS_Y + 8, s); sprintf (s, "%5d ", tfood_in_markets / NUMOF_DAYS_IN_MONTH); Fgl_write (STATS_X + 8 * 11, STATS_Y + 16, s); i = ((tunemployed_population / NUMOF_DAYS_IN_MONTH) * 1000) / ((tpopulation / NUMOF_DAYS_IN_MONTH) + 1); sprintf (s, "%3d.%1d ", i / 10, i % 10); Fgl_write (STATS_X + 8 * 11, STATS_Y + 24, s); sprintf (s, "%5d ", numof_shanties); Fgl_write (STATS_X + 8 * (12 + 20), STATS_Y + 24, s); sprintf (s, "%5.1f ", (float) tech_level * 100.0 / MAX_TECH_LEVEL); Fgl_write (STATS_X + (20 + 12) * 8, STATS_Y, s); sprintf (s, "%5d ", unnat_deaths); Fgl_write (STATS_X + (20 + 12) * 8, STATS_Y + 8, s); #endif update_pbars_monthly(); refresh_pbars(); /* GCS, May 11, 2003. Quick hack for SVGALIB. Basically, * I need to workaround the fact that a dialog box might pop * up, causing move_mouse() to nest hide_mouse() calls, * which means that the cursor will leave a trail. */ #if !defined (WIN32) redraw_mouse (); #endif update_avail_modules (1); #if !defined (WIN32) hide_mouse (); #endif } if (update_scoreboard.yearly_1) { update_scoreboard.yearly_1 = 0; } if (update_scoreboard.message_area > 0 && real_time > update_scoreboard.message_area) { reset_status_message (); } #if defined (WIN32) UpdateWindow (display.hWnd); #else redraw_mouse (); #endif } void print_total_money (void) { Rect* b = &scr.money; char str[MONEY_W / CHAR_WIDTH + 1]; size_t count; count = sprintf(str, _("Money: ")); count += commify(str + count, (MONEY_W / CHAR_WIDTH) - count, total_money); count += snprintf(str + count, (MONEY_W / CHAR_WIDTH) - count, " "); str[MONEY_W / CHAR_WIDTH] = '\0'; if (total_money < 0) Fgl_setfontcolors (TEXT_BG_COLOUR, red (30)); /* Fgl_putbox (b->x, b->y, 16, 16, money_pbar_graphic); */ //Fgl_write (b->x + 16, b->y, str); Fgl_write (b->x + 32, b->y, str); if (total_money < 0) Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } void print_date (void) { char s[50]; Rect* b = &scr.date; sprintf (s, _("Date %s %04d "), current_month(total_time), current_year(total_time)); Fgl_write (b->x, b->y, s); #if defined (WIN32) UpdateWindow (display.hWnd); #endif } void print_population (void) { draw_pbar (&scr.pbar_pop, pop_pbar_graphic); } void calculate_time_for_year (void) { static int time_last_year = 0; time_for_year = (float) (real_time - time_last_year) / 1000.0; time_last_year = real_time; } void print_time_for_year (void) { char s[100]; Rect* b = &scr.time_for_year; if (time_for_year > 3600.0) sprintf (s, _("%s%5.1f MINS/year V %s"), cheat_flag ? _("TEST MODE") : "", time_for_year / 60.0, VERSION); else sprintf (s, _("%s%5.1f secs/year V %s "), cheat_flag ? _("TEST MODE") : "", time_for_year, VERSION); Fgl_write (b->x, b->y, s); } /* Write a message in the status area of the screen */ void status_message_1 (char * message) { Rect* b = &scr.status_message_1; Fgl_fillbox(b->x, b->y, b->w, b->h, TEXT_BG_COLOUR); if (message == NULL) return; Fgl_write (b->x, b->y, message); } void status_message_2 (char * message) { Rect* b = &scr.status_message_2; Fgl_fillbox(b->x, b->y, b->w, b->h, TEXT_BG_COLOUR); if (message == NULL) return; Fgl_write (b->x, b->y, message); } void status_message (char* m1, char* m2) { status_message_1(m1); status_message_2(m2); #if defined (WIN32) UpdateWindow (display.hWnd); #endif update_scoreboard.message_area = real_time + 10000; } void reset_status_message (void) { status_message_1(0); status_message_2(0); #if defined (WIN32) UpdateWindow (display.hWnd); #endif update_scoreboard.message_area = 0; } void init_monthgraph (void) { Rect* mg = &scr.monthgraph; Fgl_fillbox (mg->x, mg->y, mg->w + 1, mg->h + 1, GRAPHS_B_COLOUR); } void clear_monthgraph (void) { Rect* mg = &scr.monthgraph; Fgl_fillbox (mg->x, mg->y, mg->w + 1, mg->h + 1, GRAPHS_B_COLOUR); } static void do_monthgraph (int full_refresh) { if (full_refresh) { clear_monthgraph(); } do_history_linegraph (monthgraph_style == MONTHGRAPH_STYLE_ECONOMY); do_sust_barchart (monthgraph_style == MONTHGRAPH_STYLE_SUSTAIN); #if defined (WIN32) { Rect* mg = &scr.monthgraph; RefreshArea (mg->x, mg->y, mg->x + mg->w, mg->y + mg->h); } #endif } /* Must be called after initialize_geometry */ void initialize_monthgraph (void) { int i; monthgraph_size = scr.monthgraph.w; monthgraph_pop = (int*) malloc (sizeof(int) * monthgraph_size); if (monthgraph_pop == 0) { malloc_failure (); } monthgraph_starve = (int*) malloc (sizeof(int) * monthgraph_size); if (monthgraph_starve == 0) { malloc_failure (); } monthgraph_nojobs = (int*) malloc (sizeof(int) * monthgraph_size); if (monthgraph_nojobs == 0) { malloc_failure (); } monthgraph_ppool = (int*) malloc (sizeof(int) * monthgraph_size); if (monthgraph_ppool == 0) { malloc_failure (); } for (i = 0; i < monthgraph_size; i++) { monthgraph_pop[i] = 0; monthgraph_starve[i] = 0; monthgraph_nojobs[i] = 0; monthgraph_ppool[i] = 0; } } static void do_history_linegraph (int draw) { Rect* mg = &scr.monthgraph; int i; float f; for (i = mg->w - 1; i > 0; i--) { if (draw) { Fgl_line (mg->x + mg->w - i, mg->y + mg->h - monthgraph_nojobs[i], mg->x + mg->w - i, mg->y + mg->h, GRAPHS_B_COLOUR); Fgl_line (mg->x + mg->w - i, mg->y + mg->h - monthgraph_nojobs[i-1], mg->x + mg->w - i, mg->y + mg->h, yellow (24)); Fgl_line (mg->x + mg->w - i, mg->y + mg->h - monthgraph_starve[i], mg->x + mg->w - i, mg->y + mg->h, GRAPHS_B_COLOUR); Fgl_line (mg->x + mg->w - i, mg->y + mg->h - monthgraph_starve[i-1], mg->x + mg->w - i, mg->y + mg->h, red (24)); Fgl_setpixel (mg->x + mg->w - i, mg->y + mg->h - monthgraph_pop[i], GRAPHS_B_COLOUR); Fgl_setpixel (mg->x + mg->w - i, mg->y + mg->h - monthgraph_pop[i-1], 7); Fgl_setpixel (mg->x + mg->w - i, mg->y + mg->h - monthgraph_ppool[i], GRAPHS_B_COLOUR); Fgl_setpixel (mg->x + mg->w - i, mg->y + mg->h - monthgraph_ppool[i-1], cyan (24)); } monthgraph_pop[i] = monthgraph_pop[i-1]; monthgraph_ppool[i] = monthgraph_ppool[i-1]; monthgraph_nojobs[i] = monthgraph_nojobs[i-1]; monthgraph_starve[i] = monthgraph_starve[i-1]; } if (tpopulation > 0) { /* Zero out old value of leftmost pixel */ if (draw) { Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_pop[0], GRAPHS_B_COLOUR); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_starve[0], GRAPHS_B_COLOUR); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_nojobs[0], GRAPHS_B_COLOUR); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_ppool[0], GRAPHS_B_COLOUR); } monthgraph_pop[0] = ((int) (log ((tpopulation / NUMOF_DAYS_IN_MONTH) + 1) * mg->h / 15)) - 5; if (monthgraph_pop[0] < 0) monthgraph_pop[0] = 0; f = ((float) tstarving_population / ((float) tpopulation + 1.0)) * 100.0; if (tpopulation > 3000) /* double the scale if pop > 3000 */ f += f; if (tpopulation > 6000) /* double it AGAIN if pop > 6000 */ f += f; monthgraph_starve[0] = (int) f; /* max out at 32 */ if (monthgraph_starve[0] >= mg->h) monthgraph_starve[0] = mg->h - 1; f = ((float) tunemployed_population / ((float) tpopulation + 1.0)) * 100.0; if (tpopulation > 3000) /* double the scale if pop > 3000 */ f += f; if (tpopulation > 6000) /* double it AGAIN if pop > 6000 */ f += f; monthgraph_nojobs[0] = (int) f; /* max out at 32 */ if (monthgraph_nojobs[0] >= mg->h) monthgraph_nojobs[0] = mg->h - 1; monthgraph_ppool[0] = ((int) (sqrt (people_pool + 1) * mg->h) / 35); if (monthgraph_ppool[0] < 0) monthgraph_ppool[0] = 0; if (monthgraph_ppool[0] >= mg->h) monthgraph_ppool[0] = mg->h - 1; if (draw) { Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_pop[0], 7); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_starve[0], red (24)); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_nojobs[0], yellow (24)); Fgl_setpixel (mg->x + mg->w, mg->y + mg->h - monthgraph_ppool[0], cyan (24)); } } } void clicked_market_cb (int x, int y) { market_cb_flag = 1; mcbx = x; mcby = y; } void draw_cb_box (int row, int col, int checked) { int x, y; char* graphic; Rect* mcb = &scr.market_cb; y = mcb->y + 4 + (4 * 8) + (row * CB_SPACE); x = mcb->x + 12 + (col * 12) * 8; graphic = checked ? checked_box_graphic : unchecked_box_graphic; Fgl_putbox (x, y, 16, 16, graphic); } void draw_cb_template (int is_market_cb) { int x, y, flags; char s[100]; Rect* mcb = &scr.market_cb; debug_printf ("In draw_cb_template...\n"); debug_printf ("Coords are %d %d %d %d\n",mcb->x,mcb->y,mcb->w,mcb->h); x = mcbx; /* x & y are the market's pos. */ y = mcby; flags = MP_INFO(x,y).flags; Fgl_getbox (mcb->x, mcb->y, mcb->w, mcb->h, market_cb_gbuf); Fgl_fillbox (mcb->x, mcb->y, mcb->w, mcb->h, 28); draw_small_bezel(mcb->x+4, mcb->y+4, mcb->w-8, mcb->h-8, blue(0)); Fgl_setfontcolors (28,TEXT_FG_COLOUR); #ifdef USE_EXPANDED_FONT gl_setwritemode (WRITEMODE_MASKED | FONT_EXPANDED); #endif if (is_market_cb) { Fgl_write (mcb->x + 1 * 8, mcb->y + 8, _("Market")); } else { Fgl_write (mcb->x + 3 * 8, mcb->y + 8, _("Port")); } sprintf (s, "%3d,%3d", x, y); Fgl_write (mcb->x + 7 * 8, mcb->y + 8, s); Fgl_hline (mcb->x + 2, mcb->y + 20, mcb->x + mcb->w - 2, TEXT_FG_COLOUR); Fgl_write (mcb->x + 1 * 8, mcb->y + 3 * 8, _("Buy")); Fgl_write (mcb->x + 12 * 8 + 4, mcb->y + 3 * 8 + 1, _("Sell")); if (is_market_cb) { Fgl_write (mcb->x + 6 * 8 + 4, mcb->y + 40 +(CB_SPACE * 0), _("JOBS")); } Fgl_write (mcb->x + 6 * 8 + 4, mcb->y + 40 + (CB_SPACE * 1), _("FOOD")); Fgl_write (mcb->x + 6 * 8 + 4, mcb->y + 40 + (CB_SPACE * 2), _("COAL")); Fgl_write (mcb->x + 7 * 8, mcb->y + 40 + (CB_SPACE * 3), _("ORE")); Fgl_write (mcb->x + 6 * 8, mcb->y + 40 + (CB_SPACE * 4), _("GOODS")); Fgl_write (mcb->x + 6 * 8, mcb->y + 40 + (CB_SPACE * 5), _("STEEL")); #ifdef USE_EXPANDED_FONT gl_setwritemode (WRITEMODE_OVERWRITE | FONT_EXPANDED); #endif if (is_market_cb) { draw_cb_box (0, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_JOBS); draw_cb_box (0, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_JOBS); } draw_cb_box (1, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_FOOD); draw_cb_box (1, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_FOOD); draw_cb_box (2, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_COAL); draw_cb_box (2, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_COAL); draw_cb_box (3, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_ORE); draw_cb_box (3, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_ORE); draw_cb_box (4, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_GOODS); draw_cb_box (4, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_GOODS); draw_cb_box (5, 0, MP_INFO(mcbx,mcby).flags & FLAG_MB_STEEL); draw_cb_box (5, 1, MP_INFO(mcbx,mcby).flags & FLAG_MS_STEEL); } void draw_market_cb (void) { market_cb_drawn_flag = 1; draw_cb_template (1); } void close_market_cb (void) { Rect* mcb = &scr.market_cb; market_cb_flag = 0; market_cb_drawn_flag = 0; Fgl_putbox (mcb->x, mcb->y, mcb->w, mcb->h ,market_cb_gbuf); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); /* when exiting market cb, stop the mouse repeating straight away */ cs_mouse_button = LC_MOUSE_LEFTBUTTON; } void clicked_port_cb (int x, int y) { port_cb_flag = 1; mcbx = x; mcby = y; } void draw_port_cb (void) { port_cb_drawn_flag = 1; draw_cb_template (0); } void close_port_cb (void) { Rect* mcb = &scr.market_cb; port_cb_flag = 0; port_cb_drawn_flag = 0; Fgl_putbox (mcb->x, mcb->y, mcb->w, mcb->h, market_cb_gbuf); /* when exiting port cb, stop the mouse repeating straight away */ cs_mouse_button = LC_MOUSE_LEFTBUTTON; } int yn_dial_box (char * s1, char * s2, char * s3, char *s4) { int result; result = dialog_box(red(10),7, 0,0,s1, 0,0,"", 0,0,s2, 0,0,s3, 0,0,s4, 1,'y',_("Yes"), 1,'n',_("No")); return (result == 'y') ? 1 : 0; } void ok_dial_box (char *fn, int good_bad, char *xs) { FILE *inf; struct stat statbuf; int colour; char * ss; char s[LC_PATH_MAX]; int retval; if (suppress_ok_buttons != 0) return; if (good_bad == GOOD || good_bad == RESULTS) colour = green (14); else if (good_bad == BAD) colour = red (12); else colour = white (12); if (good_bad == RESULTS) strcpy (s, fn); else { strcpy (s, message_path); strcat (s, fn); } if ((inf = fopen (s, "rb")) == NULL) { printf ("Can't open message <%s> for OK dialog box\n", s); strcpy (s, message_path); strcat (s, "error.mes"); if ((inf = fopen (s, "rb")) == NULL) { fprintf (stderr, "Can't open default message <%s> either\n", s); fprintf (stderr, " ...it was not displayed"); return; } } stat(s,&statbuf); ss = (char *)lcalloc(statbuf.st_size + 1); retval = fread(ss,sizeof(char),statbuf.st_size,inf); ss[statbuf.st_size] = '\0'; undosify_string (ss); #if defined (commentout) if (xs != 0) dialog_box(colour,3, 0,0,ss, 0,0,xs, 2,' ',_("OK")); else dialog_box(colour,2, 0,0,ss, 2,' ',_("OK")); #endif fclose(inf); display_info_message (colour, ss, xs); } void format_status_message (char* sm1, char* sm2, int num_char, char* ss, char* xs) { char* src = ss; char* tgt = sm1; int did_xs = 0; int did_sm2 = 0; int chars_done = 0; *sm2 = *sm1 = '\0';\ while (src) { char src_c = *src++; /* note: already undosified */ switch (src_c) { case '\0': if (did_xs || !xs) { *tgt = '\0'; return; } else { src = xs; did_xs = 1; } /* fall through */ case '\n': *tgt++ = ' '; break; default: *tgt++ = src_c; } if (++chars_done == num_char) { *tgt = '\0'; if (did_sm2) return; tgt = sm2; did_sm2 = 1; chars_done = 0; } } } /* Call this routine instead of dialog_box() */ void display_info_message (int colour, char* ss, char* xs) { if (suppress_popups) { /* display in the message area */ Rect* b = &scr.status_message_1; int num_char = b->w / 9 - 1; char *sm1, *sm2; if ((sm1 = (char *) malloc (num_char+1)) == 0) malloc_failure (); if ((sm2 = (char *) malloc (num_char+1)) == 0) malloc_failure (); format_status_message (sm1,sm2,num_char,ss,xs); status_message(sm1,sm2); free (sm1); free (sm2); } else { /* display as dialog box */ if (xs) { dialog_box(colour,3, 0,0,ss, 0,0,xs, 2,' ',_("OK")); } else { dialog_box(colour,2, 0,0,ss, 2,' ',_("OK")); } } } void prog_box (char *title, int percent) { static int flag = 0, oldpercent = 0; char s[100]; int i; if (flag == 0) { hide_mouse (); Fgl_getbox (PROGBOXX - 8, PROGBOXY - 8, PROGBOXW + 16, PROGBOXH + 16, progbox); Fgl_fillbox (PROGBOXX, PROGBOXY, PROGBOXW, PROGBOXH, PROGBOX_BG_COLOUR); for (i = 1; i < 8; i++) { Fgl_hline (PROGBOXX - i, PROGBOXY - i, PROGBOXX + PROGBOXW + i - 1, PROGBOX_BG_COLOUR + i + i); Fgl_hline (PROGBOXX - i, PROGBOXY + PROGBOXH + i - 1, PROGBOXX + PROGBOXW + i - 1, PROGBOX_BG_COLOUR + i + i); Fgl_line (PROGBOXX - i, PROGBOXY - i, PROGBOXX - i, PROGBOXY + PROGBOXH + i - 1, PROGBOX_BG_COLOUR + i + i); Fgl_line (PROGBOXX + PROGBOXW + i - 1, PROGBOXY - i, PROGBOXX + PROGBOXW + i - 1, PROGBOXY + PROGBOXH + i - 1, PROGBOX_BG_COLOUR + i + i); } Fgl_setfontcolors (PROGBOX_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write ((PROGBOXX + PROGBOXW / 2) - (strlen (title) * 4), PROGBOXY + 8, title); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); flag = 1; } if (percent != oldpercent) { Fgl_fillbox (PROGBOXX + 20, PROGBOXY + 60, ((PROGBOXW - 40) * percent) / 100, 20, PROGBOX_DONE_COL); Fgl_fillbox (PROGBOXX + 20 + (((PROGBOXW - 40) * percent) / 100), PROGBOXY + 60, PROGBOXW - 40 - (((PROGBOXW - 40) * percent) / 100), 20, PROGBOX_NOTDONE_COL); oldpercent = percent; Fgl_fillbox (PROGBOXX + (PROGBOXW / 2) - 20, PROGBOXY + 24, 40, 16, PROGBOX_BG_COLOUR); sprintf (s, "%3d%%", percent); Fgl_setfontcolors (PROGBOX_BG_COLOUR, TEXT_FG_COLOUR); Fgl_write (PROGBOXX + (PROGBOXW / 2) - 20, PROGBOXY + 24, s); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } #ifdef LC_X11 XSync (display.dpy, FALSE); #endif if (percent < 100) { #if defined (WIN32) /* GCS FIX: Do I need this ????? */ /* GCS: Fgl_putbox does a refresh; no need to refresh twice */ RefreshArea (PROGBOXX - 8, PROGBOXY - 8, PROGBOXW + 16, PROGBOXH + 16); #endif return; } Fgl_putbox (PROGBOXX - 8, PROGBOXY - 8, PROGBOXW + 16, PROGBOXH + 16, progbox); redraw_mouse (); flag = 0; } static void do_sust_barchart (int draw) { #define SUST_BAR_H 5 #define SUST_BAR_GAP_Y 5 Rect* mg = &scr.monthgraph; static int flag = 0; if (flag == 0) { /* flag = 1; */ /* draw border around the sustainable screen */ #if defined (commentout) draw_small_yellow_bezel (mg->x, mg->y, mg->h, mg->w); #endif if (draw) { /* black out the inside */ Fgl_fillbox (mg->x, mg->y, mg->w, mg->h, 0); /* write the "informative" text */ Fgl_setfontcolors (0, TEXT_FG_COLOUR); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y - 1, /* TRANSLATORS: MIN=Mining, PRT=Import/export from port, MNY=Money, POP=Population, TEC=Technology, FIR=Fire coverage */ _("MIN")); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y + (SUST_BAR_H + SUST_BAR_GAP_Y) - 1, _("PRT")); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y + 2 * (SUST_BAR_H + SUST_BAR_GAP_Y) - 1, _("MNY")); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y + 3 * (SUST_BAR_H + SUST_BAR_GAP_Y) - 1, _("POP")); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y + 4 * (SUST_BAR_H + SUST_BAR_GAP_Y) - 1, _("TEC")); Fgl_write (mg->x+3, mg->y + SUST_BAR_GAP_Y + 5 * (SUST_BAR_H + SUST_BAR_GAP_Y) - 1, _("FIR")); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); /* draw the starting line */ Fgl_line (mg->x + 38, mg->y, mg->x + 38, mg->y + mg->h, yellow (24)); /* ore coal */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y, 3, SUST_BAR_H, SUST_ORE_COAL_COL); /* import export */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y + (SUST_BAR_H + SUST_BAR_GAP_Y), 3, SUST_BAR_H, SUST_PORT_COL); /* money */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y + 2 * (SUST_BAR_H + SUST_BAR_GAP_Y), 3, SUST_BAR_H, SUST_MONEY_COL); /* population */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y + 3 * (SUST_BAR_H + SUST_BAR_GAP_Y), 3, SUST_BAR_H, SUST_POP_COL); /* tech */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y + 4 * (SUST_BAR_H + SUST_BAR_GAP_Y), 3, SUST_BAR_H, SUST_TECH_COL); /* fire */ Fgl_fillbox (mg->x + 36, mg->y + SUST_BAR_GAP_Y + 5 * (SUST_BAR_H + SUST_BAR_GAP_Y), 3, SUST_BAR_H, SUST_FIRE_COL); } } if (sust_dig_ore_coal_count >= SUST_ORE_COAL_YEARS_NEEDED && sust_port_count >= SUST_PORT_YEARS_NEEDED && sust_old_money_count >= SUST_MONEY_YEARS_NEEDED && sust_old_population_count >= SUST_POP_YEARS_NEEDED && sust_old_tech_count >= SUST_TECH_YEARS_NEEDED && sust_fire_count >= SUST_FIRE_YEARS_NEEDED) { if (sustain_flag == 0) ok_dial_box ("sustain.mes", GOOD, 0L); sustain_flag = 1; } else sustain_flag = 0; if (draw) { draw_sustline (0, sust_dig_ore_coal_count, SUST_ORE_COAL_YEARS_NEEDED, SUST_ORE_COAL_COL); draw_sustline ((SUST_BAR_H + SUST_BAR_GAP_Y), sust_port_count, SUST_PORT_YEARS_NEEDED, SUST_PORT_COL); draw_sustline (2*(SUST_BAR_H + SUST_BAR_GAP_Y), sust_old_money_count, SUST_MONEY_YEARS_NEEDED, SUST_MONEY_COL); draw_sustline (3*(SUST_BAR_H + SUST_BAR_GAP_Y), sust_old_population_count, SUST_POP_YEARS_NEEDED, SUST_POP_COL); draw_sustline (4*(SUST_BAR_H + SUST_BAR_GAP_Y), sust_old_tech_count, SUST_TECH_YEARS_NEEDED, SUST_TECH_COL); draw_sustline (5*(SUST_BAR_H + SUST_BAR_GAP_Y), sust_fire_count, SUST_FIRE_YEARS_NEEDED, SUST_FIRE_COL); } } static void draw_sustline (int yoffset, int count, int max, int col) { Rect* mg = &scr.monthgraph; int split; if (count >= max) split = 60; else split = 60 * count / max; Fgl_fillbox (mg->x + 38, mg->y + SUST_BAR_GAP_Y + yoffset, split, SUST_BAR_H, col); if (split < 60) Fgl_fillbox (mg->x + 38 + split + 1, mg->y + SUST_BAR_GAP_Y + yoffset, 60 - split, SUST_BAR_H, 0); } void dump_screen (void) { #if !defined (LC_X11) && !defined (WIN32) int x, y, r, g, b; FILE *outf; if ((outf = fopen ("screendump.raw", "wb")) == NULL) do_error ("Can't open screendump.raw"); for (y = 0; y < 480; y++) for (x = 0; x < 640; x++) { gl_getpixelrgb (x, y, &r, &g, &b); fputc (r, outf); fputc (g, outf); fputc (b, outf); } fclose (outf); #endif } void debug_writeval (int v) { char s[100]; sprintf (s, "%d ", v); Fgl_write (280, 471, s); } int ask_launch_rocket_click (int x, int y) { return yn_dial_box (_("ROCKET LAUNCH"), _("You can launch the rocket now or wait until later."), _("If you wait, it costs you *only* money to keep the"), _("rocket ready. Launch?")); } int ask_launch_rocket_now (int x, int y) { return yn_dial_box (_("Rocket ready to launch"), _("You can launch it now or wait until later."), _("If you wait it will continue costing you money."), _("Launch it later by clicking on the rocket area.")); } void display_rocket_result_dialog (int result) { switch (result) { case ROCKET_LAUNCH_BAD: ok_dial_box ("launch-fail.mes", BAD, 0L); break; case ROCKET_LAUNCH_GOOD: ok_dial_box ("launch-good.mes", GOOD, 0L); break; case ROCKET_LAUNCH_EVAC: ok_dial_box ("launch-evac.mes", GOOD, 0L); break; } } void Fgl_getrect(Rect * r, void * buffer) { Fgl_getbox(r->x,r->y,r->w,r->h,buffer); } void Fgl_putrect(Rect *r, void * buffer) { Fgl_putbox(r->x,r->y,r->w,r->h,buffer); } lincity-1.13.1/pixmap.c0000644000175000017500000003514507635175610011655 00000000000000/* ---------------------------------------------------------------------- * * pixmap.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ /* The pixmap contains only the main screen, not the border. * When pix doubled, pixmap does contain the doubled pixels. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include #include "lcstring.h" #include "lin-city.h" #include "lctypes.h" #include "cliglobs.h" #include "pixmap.h" #if defined (LC_X11) #include #include #include #include #include #include "lcx11.h" #endif #define USE_IMAGES 1 /* ---------------------------------------------------------------------- * * Private global variables * ---------------------------------------------------------------------- */ char* pixmap = NULL; int pixmap_height = 0; int pixmap_width = 0; /* ---------------------------------------------------------------------- * * Public functions * ---------------------------------------------------------------------- */ #ifdef USE_PIXMAPS void init_pixmaps () { int i; for (i = 1; i < NUM_OF_TYPES; i++) { icon_pixmap[i] = 0; } init_icon_pixmap (CST_GREEN); /* powerlines */ init_icon_pixmap (CST_POWERL_H_L); init_icon_pixmap (CST_POWERL_V_L); init_icon_pixmap (CST_POWERL_LD_L); init_icon_pixmap (CST_POWERL_RD_L); init_icon_pixmap (CST_POWERL_LU_L); init_icon_pixmap (CST_POWERL_RU_L); init_icon_pixmap (CST_POWERL_LDU_L); init_icon_pixmap (CST_POWERL_LDR_L); init_icon_pixmap (CST_POWERL_LUR_L); init_icon_pixmap (CST_POWERL_UDR_L); init_icon_pixmap (CST_POWERL_LUDR_L); prog_box ("", 6); init_icon_pixmap (CST_POWERL_H_D); init_icon_pixmap (CST_POWERL_V_D); init_icon_pixmap (CST_POWERL_LD_D); init_icon_pixmap (CST_POWERL_RD_D); init_icon_pixmap (CST_POWERL_LU_D); init_icon_pixmap (CST_POWERL_RU_D); init_icon_pixmap (CST_POWERL_LDU_D); init_icon_pixmap (CST_POWERL_LDR_D); init_icon_pixmap (CST_POWERL_LUR_D); init_icon_pixmap (CST_POWERL_UDR_D); init_icon_pixmap (CST_POWERL_LUDR_D); /* HT windmills */ init_icon_pixmap (CST_WINDMILL_1_G); init_icon_pixmap (CST_WINDMILL_2_G); init_icon_pixmap (CST_WINDMILL_3_G); prog_box ("", 12); init_icon_pixmap (CST_WINDMILL_1_RG); init_icon_pixmap (CST_WINDMILL_2_RG); init_icon_pixmap (CST_WINDMILL_3_RG); init_icon_pixmap (CST_WINDMILL_1_R); init_icon_pixmap (CST_WINDMILL_2_R); init_icon_pixmap (CST_WINDMILL_3_R); /*LT windmills */ init_icon_pixmap (CST_WINDMILL_1_W); init_icon_pixmap (CST_WINDMILL_2_W); init_icon_pixmap (CST_WINDMILL_3_W); /* communes */ init_icon_pixmap (CST_COMMUNE_1); init_icon_pixmap (CST_COMMUNE_2); init_icon_pixmap (CST_COMMUNE_3); init_icon_pixmap (CST_COMMUNE_4); init_icon_pixmap (CST_COMMUNE_5); prog_box ("", 18); init_icon_pixmap (CST_COMMUNE_6); init_icon_pixmap (CST_COMMUNE_7); init_icon_pixmap (CST_COMMUNE_8); init_icon_pixmap (CST_COMMUNE_9); init_icon_pixmap (CST_COMMUNE_10); init_icon_pixmap (CST_COMMUNE_11); init_icon_pixmap (CST_COMMUNE_12); init_icon_pixmap (CST_COMMUNE_13); init_icon_pixmap (CST_COMMUNE_14); /* farms (3 7 11 and 15 are the only ones needed) */ init_icon_pixmap (CST_FARM_O3); init_icon_pixmap (CST_FARM_O7); init_icon_pixmap (CST_FARM_O11); init_icon_pixmap (CST_FARM_O15); /* Lt. Industry */ prog_box ("", 24); init_icon_pixmap (CST_INDUSTRY_L_C); init_icon_pixmap (CST_INDUSTRY_L_Q1); init_icon_pixmap (CST_INDUSTRY_L_Q2); init_icon_pixmap (CST_INDUSTRY_L_Q3); init_icon_pixmap (CST_INDUSTRY_L_Q4); init_icon_pixmap (CST_INDUSTRY_L_L1); init_icon_pixmap (CST_INDUSTRY_L_L2); init_icon_pixmap (CST_INDUSTRY_L_L3); init_icon_pixmap (CST_INDUSTRY_L_L4); init_icon_pixmap (CST_INDUSTRY_L_M1); init_icon_pixmap (CST_INDUSTRY_L_M2); init_icon_pixmap (CST_INDUSTRY_L_M3); init_icon_pixmap (CST_INDUSTRY_L_M4); init_icon_pixmap (CST_INDUSTRY_L_H1); init_icon_pixmap (CST_INDUSTRY_L_H2); prog_box ("", 30); init_icon_pixmap (CST_INDUSTRY_L_H3); init_icon_pixmap (CST_INDUSTRY_L_H4); /* Hv. Industry */ init_icon_pixmap (CST_INDUSTRY_H_C); init_icon_pixmap (CST_INDUSTRY_H_L1); init_icon_pixmap (CST_INDUSTRY_H_L2); init_icon_pixmap (CST_INDUSTRY_H_L3); init_icon_pixmap (CST_INDUSTRY_H_L4); init_icon_pixmap (CST_INDUSTRY_H_L5); init_icon_pixmap (CST_INDUSTRY_H_L6); init_icon_pixmap (CST_INDUSTRY_H_L7); init_icon_pixmap (CST_INDUSTRY_H_L8); init_icon_pixmap (CST_INDUSTRY_H_M1); init_icon_pixmap (CST_INDUSTRY_H_M2); init_icon_pixmap (CST_INDUSTRY_H_M3); init_icon_pixmap (CST_INDUSTRY_H_M4); prog_box ("", 36); init_icon_pixmap (CST_INDUSTRY_H_M5); init_icon_pixmap (CST_INDUSTRY_H_M6); init_icon_pixmap (CST_INDUSTRY_H_M7); init_icon_pixmap (CST_INDUSTRY_H_M8); init_icon_pixmap (CST_INDUSTRY_H_H1); init_icon_pixmap (CST_INDUSTRY_H_H2); init_icon_pixmap (CST_INDUSTRY_H_H3); init_icon_pixmap (CST_INDUSTRY_H_H4); init_icon_pixmap (CST_INDUSTRY_H_H5); init_icon_pixmap (CST_INDUSTRY_H_H6); init_icon_pixmap (CST_INDUSTRY_H_H7); init_icon_pixmap (CST_INDUSTRY_H_H8); /* water */ prog_box ("", 42); init_icon_pixmap (CST_WATER); init_icon_pixmap (CST_WATER_D); init_icon_pixmap (CST_WATER_R); init_icon_pixmap (CST_WATER_U); init_icon_pixmap (CST_WATER_L); init_icon_pixmap (CST_WATER_LR); init_icon_pixmap (CST_WATER_UD); init_icon_pixmap (CST_WATER_LD); init_icon_pixmap (CST_WATER_RD); init_icon_pixmap (CST_WATER_LU); init_icon_pixmap (CST_WATER_UR); init_icon_pixmap (CST_WATER_LUD); init_icon_pixmap (CST_WATER_LRD); init_icon_pixmap (CST_WATER_LUR); init_icon_pixmap (CST_WATER_URD); init_icon_pixmap (CST_WATER_LURD); /* tracks */ init_icon_pixmap (CST_TRACK_LR); prog_box ("", 48); init_icon_pixmap (CST_TRACK_LU); init_icon_pixmap (CST_TRACK_LD); init_icon_pixmap (CST_TRACK_UD); init_icon_pixmap (CST_TRACK_UR); init_icon_pixmap (CST_TRACK_DR); init_icon_pixmap (CST_TRACK_LUR); init_icon_pixmap (CST_TRACK_LDR); init_icon_pixmap (CST_TRACK_LUD); init_icon_pixmap (CST_TRACK_UDR); init_icon_pixmap (CST_TRACK_LUDR); /* roads */ init_icon_pixmap (CST_ROAD_LR); init_icon_pixmap (CST_ROAD_LU); init_icon_pixmap (CST_ROAD_LD); init_icon_pixmap (CST_ROAD_UD); init_icon_pixmap (CST_ROAD_UR); init_icon_pixmap (CST_ROAD_DR); init_icon_pixmap (CST_ROAD_LUR); init_icon_pixmap (CST_ROAD_LDR); prog_box ("", 54); init_icon_pixmap (CST_ROAD_LUD); init_icon_pixmap (CST_ROAD_UDR); init_icon_pixmap (CST_ROAD_LUDR); /* rail */ init_icon_pixmap (CST_RAIL_LR); init_icon_pixmap (CST_RAIL_LU); init_icon_pixmap (CST_RAIL_LD); init_icon_pixmap (CST_RAIL_UD); init_icon_pixmap (CST_RAIL_UR); init_icon_pixmap (CST_RAIL_DR); init_icon_pixmap (CST_RAIL_LUR); init_icon_pixmap (CST_RAIL_LDR); init_icon_pixmap (CST_RAIL_LUD); init_icon_pixmap (CST_RAIL_UDR); init_icon_pixmap (CST_RAIL_LUDR); /* potteries */ prog_box ("", 60); init_icon_pixmap (CST_POTTERY_0); init_icon_pixmap (CST_POTTERY_1); init_icon_pixmap (CST_POTTERY_2); init_icon_pixmap (CST_POTTERY_3); init_icon_pixmap (CST_POTTERY_4); init_icon_pixmap (CST_POTTERY_5); init_icon_pixmap (CST_POTTERY_6); init_icon_pixmap (CST_POTTERY_7); init_icon_pixmap (CST_POTTERY_8); init_icon_pixmap (CST_POTTERY_9); init_icon_pixmap (CST_POTTERY_10); /* mills */ init_icon_pixmap (CST_MILL_0); init_icon_pixmap (CST_MILL_1); init_icon_pixmap (CST_MILL_2); init_icon_pixmap (CST_MILL_3); init_icon_pixmap (CST_MILL_4); prog_box ("", 66); init_icon_pixmap (CST_MILL_5); init_icon_pixmap (CST_MILL_6); /* blacksmiths */ init_icon_pixmap (CST_BLACKSMITH_0); init_icon_pixmap (CST_BLACKSMITH_1); init_icon_pixmap (CST_BLACKSMITH_2); init_icon_pixmap (CST_BLACKSMITH_3); init_icon_pixmap (CST_BLACKSMITH_4); init_icon_pixmap (CST_BLACKSMITH_5); init_icon_pixmap (CST_BLACKSMITH_6); /* residences */ init_icon_pixmap (CST_RESIDENCE_LL); init_icon_pixmap (CST_RESIDENCE_ML); init_icon_pixmap (CST_RESIDENCE_HL); init_icon_pixmap (CST_RESIDENCE_LH); init_icon_pixmap (CST_RESIDENCE_MH); init_icon_pixmap (CST_RESIDENCE_HH); /* coal power */ init_icon_pixmap (CST_POWERS_COAL_EMPTY); init_icon_pixmap (CST_POWERS_COAL_LOW); prog_box ("", 72); init_icon_pixmap (CST_POWERS_COAL_MED); init_icon_pixmap (CST_POWERS_COAL_FULL); /* substations */ init_icon_pixmap (CST_SUBSTATION_R); init_icon_pixmap (CST_SUBSTATION_G); init_icon_pixmap (CST_SUBSTATION_RG); /* markets */ init_icon_pixmap (CST_MARKET_EMPTY); init_icon_pixmap (CST_MARKET_LOW); init_icon_pixmap (CST_MARKET_MED); init_icon_pixmap (CST_MARKET_FULL); /* coal mines */ init_icon_pixmap (CST_COALMINE_EMPTY); init_icon_pixmap (CST_COALMINE_LOW); init_icon_pixmap (CST_COALMINE_MED); init_icon_pixmap (CST_COALMINE_FULL); /* ore mines */ prog_box ("", 78); init_icon_pixmap (CST_OREMINE_1); init_icon_pixmap (CST_OREMINE_2); init_icon_pixmap (CST_OREMINE_3); init_icon_pixmap (CST_OREMINE_4); init_icon_pixmap (CST_OREMINE_5); init_icon_pixmap (CST_OREMINE_6); init_icon_pixmap (CST_OREMINE_7); init_icon_pixmap (CST_OREMINE_8); /* tips */ init_icon_pixmap (CST_TIP_0); init_icon_pixmap (CST_TIP_1); init_icon_pixmap (CST_TIP_2); init_icon_pixmap (CST_TIP_3); init_icon_pixmap (CST_TIP_4); init_icon_pixmap (CST_TIP_5); init_icon_pixmap (CST_TIP_6); init_icon_pixmap (CST_TIP_7); init_icon_pixmap (CST_TIP_8); /* rockets */ prog_box ("", 84); init_icon_pixmap (CST_ROCKET_1); init_icon_pixmap (CST_ROCKET_2); init_icon_pixmap (CST_ROCKET_3); init_icon_pixmap (CST_ROCKET_4); init_icon_pixmap (CST_ROCKET_5); init_icon_pixmap (CST_ROCKET_6); init_icon_pixmap (CST_ROCKET_7); init_icon_pixmap (CST_ROCKET_FLOWN); /* fire stations */ init_icon_pixmap (CST_FIRESTATION_1); init_icon_pixmap (CST_FIRESTATION_2); init_icon_pixmap (CST_FIRESTATION_3); init_icon_pixmap (CST_FIRESTATION_4); init_icon_pixmap (CST_FIRESTATION_5); init_icon_pixmap (CST_FIRESTATION_6); init_icon_pixmap (CST_FIRESTATION_7); init_icon_pixmap (CST_FIRESTATION_8); init_icon_pixmap (CST_FIRESTATION_9); init_icon_pixmap (CST_FIRESTATION_10); /* cricket */ prog_box ("", 90); init_icon_pixmap (CST_CRICKET_1); init_icon_pixmap (CST_CRICKET_2); init_icon_pixmap (CST_CRICKET_3); init_icon_pixmap (CST_CRICKET_4); init_icon_pixmap (CST_CRICKET_5); init_icon_pixmap (CST_CRICKET_6); init_icon_pixmap (CST_CRICKET_7); /* fire */ init_icon_pixmap (CST_FIRE_1); init_icon_pixmap (CST_FIRE_2); init_icon_pixmap (CST_FIRE_3); init_icon_pixmap (CST_FIRE_4); init_icon_pixmap (CST_FIRE_5); init_icon_pixmap (CST_FIRE_DONE1); init_icon_pixmap (CST_FIRE_DONE2); init_icon_pixmap (CST_FIRE_DONE3); init_icon_pixmap (CST_FIRE_DONE4); /* others */ init_icon_pixmap (CST_PARKLAND_PLANE); init_icon_pixmap (CST_RECYCLE); init_icon_pixmap (CST_HEALTH); init_icon_pixmap (CST_BURNT); init_icon_pixmap (CST_MONUMENT_5); init_icon_pixmap (CST_SCHOOL); init_icon_pixmap (CST_SHANTY); prog_box ("", 96); init_icon_pixmap (CST_POWERS_SOLAR); init_icon_pixmap (CST_UNIVERSITY); init_icon_pixmap (CST_EX_PORT); } void initialize_pixmap (void) { int i; pixmap_height = display.winH - 2*borderx; pixmap_width = display.winW - 2*bordery; pixmap = (char*) malloc (pixmap_height * pixmap_width * sizeof(char)); for (i = 0; i < pixmap_height * pixmap_width; i++) { pixmap[i] = 0; } } void free_pixmap (void) { free (pixmap); pixmap = 0; } void resize_pixmap (int new_width, int new_height) { int i; if (new_width > pixmap_width || new_height > pixmap_height) { char* new_pixmap; if (new_width < pixmap_width) new_width = pixmap_width; if (new_height < pixmap_height) new_height = pixmap_height; new_pixmap = (char*) malloc (new_height * new_width * sizeof(char)); for (i = 0; i < pixmap_height * pixmap_width; i++) { pixmap[i] = 0; /* GCS -- Why? */ } free (pixmap); pixmap = new_pixmap; pixmap_width = new_width; pixmap_height = new_height; } } /* KBR 10/19/2002 MSVC was not happy with this being inline for release build */ /* GCS 02/02/2003 That's because of the external reference in lcwin32.c. For some reason, MSVC likes it in the header, while gcc likes it in the file. Still need to fix this in autoconf, but for now this will do. */ #if !defined (WIN32) inline int pixmap_index (int x, int y) { return y*pixmap_width + x; } #endif int pixmap_getpixel (int x, int y) { return (int) pixmap[pixmap_index(x,y)]; } void pixmap_setpixel (int x, int y, int col) { pixmap[pixmap_index(x,y)] = col; } void pixmap_hline (int x1, int y1, int x2, int col) { int i, j; i = pixmap_index (x1, y1); for (j = 0; j <= x2 - x1; j++) pixmap[i+j] = col; } void pixmap_vline (int x1, int y1, int y2, int col) { int i, j; i = pixmap_index (x1, y1); for (j = 0; j <= y2 - y1; j++) pixmap[i+j*pixmap_width] = col; } void pixmap_fillbox (int x, int y, int w, int h, int col) { int xx, yy; int i = pixmap_index (x, y); for (yy = y; yy < y + h; yy++) { for (xx = x; xx < x + w; xx++) { pixmap[i++] = col; } i += pixmap_width - w; } } void pixmap_putbox (char* src, int src_x, int src_y, int src_w, int dst_x, int dst_y, int w, int h) { int x, y; int i = pixmap_index (dst_x, dst_y); int j = src_x + src_y * src_w; for (y = src_y; y < src_y + h; y++) { for (x = src_x; x < src_x + w; x++) { pixmap[i++] = src[j++]; } i += pixmap_width - w; j += src_w - w; } } void update_pixmap (int x1, int y1, int sizex, int sizey, int dx, int dy, int real_size, char *g) { /* Copy graphic from g into pixmap */ char *i, *j; int x, y; for (y = 0; y < sizey; y++) { i = pixmap + pixmap_index (dx, dy + y); j = (g + ((y1 + y) * real_size * 16 + x1)); for (x = 0; x < sizex; x++) *(i++) = *(j++); } } #endif /* USE_PIXMAPS */ lincity-1.13.1/cliglobs.c0000644000175000017500000001356507744312243012153 00000000000000/* ---------------------------------------------------------------------- * * cliglobs.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "cliglobs.h" #include "common.h" #include "geometry.h" #include "lcintl.h" Screen_Geometry scr; short mappointoldtype[WORLD_SIDE_LEN][WORLD_SIDE_LEN]; int lc_mouse_type; char progbox[(PROGBOXW + 16) * (PROGBOXH + 16)]; /* Preferences */ int overwrite_transport_flag = 0; int suppress_popups = 0; int time_multiplex_stats = 0; int no_init_help = 0; int confine_flag = 0; /* Only used for X11 */ int skip_splash_screen = 0; int suppress_firsttime_module_help = 0; int main_screen_flag = MAIN_SCREEN_NORMAL_FLAG; int mappoint_stats_flag = 0, mappoint_stats_time = 0; int mini_screen_flags = MINI_SCREEN_NORMAL_FLAG; int mini_screen_time = 0; int mini_screen_port_x, mini_screen_port_y; float gamma_correct_red = 0.0, gamma_correct_green = 0.0, gamma_correct_blue = 0.0; int mouse_initialized = 0; int cs_mouse_x, cs_mouse_y, cs_mouse_button; /* current mouse status */ int cs_mouse_shifted = 0; /* shift key pressed with mouse. */ int cs_mouse_xmax, cs_mouse_ymax, omx, omy, mox = 10, moy = 10; int mouse_hide_count; #if defined (WIN32) /* int cs_current_mouse_x, cs_current_mouse_y, cs_current_mouse_button; */ int cs_square_mouse_visible = 0; #endif int kmousex, kmousey, kmouse_val, reset_mouse_flag, mt_flag = 0; char under_square_mouse_pointer_top[20 * 2 * 4]; char under_square_mouse_pointer_left[18 * 2 * 4]; char under_square_mouse_pointer_right[18 * 2 * 4]; char under_square_mouse_pointer_bottom[20 * 2 * 4]; int mouse_type = MOUSE_TYPE_NORMAL; int mt_start_posx, mt_start_posy, mt_current_posx, mt_current_posy; char *months[] = {N_("Jan"), N_("Feb"), N_("Mar"), N_("Apr"), N_("May"), N_("Jun"), N_("Jul"), N_("Aug"), N_("Sep"), N_("Oct"), N_("Nov"), N_("Dec")}; char *up_pbar1_graphic, *up_pbar2_graphic; char *down_pbar1_graphic, *down_pbar2_graphic, *pop_pbar_graphic; char *tech_pbar_graphic, *food_pbar_graphic, *jobs_pbar_graphic; char *money_pbar_graphic, *coal_pbar_graphic, *goods_pbar_graphic; char *ore_pbar_graphic, *steel_pbar_graphic; char *pause_button1_off, *pause_button2_off; char *pause_button1_on, *pause_button2_on; char *fast_button1_off, *fast_button2_off; char *fast_button1_on, *fast_button2_on; char *med_button1_off, *med_button2_off; char *med_button1_on, *med_button2_on; char *slow_button1_off, *slow_button2_off; char *slow_button1_on, *slow_button2_on; char *results_button1, *results_button2; char *toveron_button1, *toveron_button2; char *toveroff_button1, *toveroff_button2; #ifdef LC_X11 char *confine_button, *unconfine_button; #endif int pause_flag = 0, slow_flag = 0, med_flag = 0, fast_flag = 0; char *ms_pollution_button_graphic, *ms_normal_button_graphic; char *ms_fire_cover_button_graphic, *ms_health_cover_button_graphic; char *ms_cricket_cover_button_graphic; char *ms_ub40_button_graphic, *ms_coal_button_graphic; char *ms_starve_button_graphic, *ms_ocost_button_graphic; char *ms_power_button_graphic; char *checked_box_graphic, *unchecked_box_graphic; char market_cb_gbuf[MARKET_CB_W * MARKET_CB_H]; int market_cb_flag = 0, mcbx, mcby, market_cb_drawn_flag = 0; int port_cb_flag = 0, port_cb_drawn_flag = 0; /* GCS -- this one is difficult to deal with. LinCity will give your money back if you bulldoze the most recently constructed building (i.e. if you make a mistake. How does this fit into a multiplayer game? Not at all, I suppose... */ int help_flag, numof_help_buttons, help_history_count, help_return_val; int block_help_exit; int help_button_x[MAX_NUMOF_HELP_BUTTONS]; int help_button_y[MAX_NUMOF_HELP_BUTTONS]; int help_button_w[MAX_NUMOF_HELP_BUTTONS]; int help_button_h[MAX_NUMOF_HELP_BUTTONS]; char help_button_s[MAX_NUMOF_HELP_BUTTONS][MAX_LENOF_HELP_FILENAME]; char help_button_history[MAX_HELP_HISTORY][MAX_LENOF_HELP_FILENAME]; char *help_button_graphic, help_graphic[MAX_ICON_LEN]; char *quit_button_graphic, *load_button_graphic, *save_button_graphic; char *menu_button_graphic; int quit_flag, network_flag, load_flag, save_flag; int prefs_flag = 0, prefs_drawn_flag = 0; int monument_bul_flag, river_bul_flag, shanty_bul_flag; int must_release_button = 0, let_one_through = 0; int db_yesbox_x1, db_yesbox_x2, db_yesbox_y1, db_yesbox_y2; int db_nobox_x1, db_nobox_x2, db_nobox_y1, db_nobox_y2; int db_flag, db_yesbox_clicked, db_nobox_clicked; char okmessage[22][74]; int db_okbox_x1, db_okbox_x2, db_okbox_y1, db_okbox_y2, db_okflag, db_okbox_clicked; int suppress_ok_buttons; disp display; int borderx, bordery; int command_line_debug = 0; #ifdef LC_X11 int winX, winY, mouse_button; char *bg_color = NULL; int verbose = FALSE; /* display settings if TRUE */ int stay_in_front = FALSE; /* Try to stay in clear area of the screen. */ int text_bg = 0; int text_fg = 255; int x_key_value; int x_key_shifted = 0; /* Is the key shifted? */ int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag = 0; long unsigned int colour_table[256]; unsigned char *open_font; int open_font_height, suppress_next_expose = 0; Cursor pirate_cursor; #ifdef USE_PIXMAPS Pixmap icon_pixmap[NUM_OF_TYPES]; char icon_pixmap_flag[NUM_OF_TYPES]; #endif #endif #ifdef WIN32 int mouse_button; char *bg_color = NULL; char dummy1[1024]; char dummy2[1024]; int verbose = FALSE; /* display settings if TRUE */ int stay_in_front = FALSE; /* Try to stay in clear area of the screen. */ int text_bg = 0; int text_fg = 255; int x_key_value = 0; /* GCS: Add initialization value */ BOOL x_key_shifted = FALSE; /* Is the key shifted? */ int xclip_x1, xclip_y1, xclip_x2, xclip_y2, clipping_flag = 0; long unsigned int colour_table[256]; unsigned char *open_font; int open_font_height, suppress_next_expose = 0; #if defined (USE_PIXMAPS) HBITMAP icon_pixmap[NUM_OF_TYPES]; char icon_pixmap_flag[NUM_OF_TYPES]; #endif #endif /* WIN32 */ lincity-1.13.1/geometry.c0000644000175000017500000004727310071446501012203 00000000000000/* ---------------------------------------------------------------------- * * geometry.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #include "lin-city.h" #include "common.h" #include "geometry.h" #include "cliglobs.h" #include "pixmap.h" #include "screen.h" #include "lcintl.h" #include "pbar.h" #include "mouse.h" /* ---------------------------------------------------------------------- * * Private function prototypes * ---------------------------------------------------------------------- */ void resize_main_win (int new_width, int new_height); /* ---------------------------------------------------------------------- * * General functions * ---------------------------------------------------------------------- */ void initialize_geometry (Screen_Geometry* scr) { scr->border_x = 0; scr->border_y = 0; scr->client_w = 640; scr->client_h = 480; scr->client_win.x = 0; scr->client_win.y = 0; scr->client_win.w = 640; scr->client_win.h = 480; scr->main_win.x = MAIN_WIN_X; scr->main_win.y = MAIN_WIN_Y; scr->main_win.h = MAIN_WIN_H; scr->main_win.w = MAIN_WIN_W; scr->pause_button.x = PAUSE_BUTTON_X; scr->pause_button.y = PAUSE_BUTTON_Y; scr->pause_button.h = PAUSE_BUTTON_H; scr->pause_button.w = PAUSE_BUTTON_W; scr->slow_button.x = SLOW_BUTTON_X; scr->slow_button.y = SLOW_BUTTON_Y; scr->slow_button.h = SLOW_BUTTON_H; scr->slow_button.w = SLOW_BUTTON_W; scr->med_button.x = MED_BUTTON_X; scr->med_button.y = MED_BUTTON_Y; scr->med_button.h = MED_BUTTON_H; scr->med_button.w = MED_BUTTON_W; scr->fast_button.x = FAST_BUTTON_X; scr->fast_button.y = FAST_BUTTON_Y; scr->fast_button.h = FAST_BUTTON_H; scr->fast_button.w = FAST_BUTTON_W; scr->menu_button.x = MENU_BUTTON_X; scr->menu_button.y = MENU_BUTTON_Y; scr->menu_button.h = MENU_BUTTON_H; scr->menu_button.w = MENU_BUTTON_W; scr->load_button.x = LOAD_BUTTON_X; scr->load_button.y = LOAD_BUTTON_Y; scr->load_button.h = LOAD_BUTTON_H; scr->load_button.w = LOAD_BUTTON_W; scr->save_button.x = SAVE_BUTTON_X; scr->save_button.y = SAVE_BUTTON_Y; scr->save_button.h = SAVE_BUTTON_H; scr->save_button.w = SAVE_BUTTON_W; scr->quit_button.x = QUIT_BUTTON_X; scr->quit_button.y = QUIT_BUTTON_Y; scr->quit_button.h = QUIT_BUTTON_H; scr->quit_button.w = QUIT_BUTTON_W; scr->help_button.x = HELP_BUTTON_X; scr->help_button.y = HELP_BUTTON_Y; scr->help_button.h = HELP_BUTTON_H; scr->help_button.w = HELP_BUTTON_W; scr->results_button.x = RESULTS_BUTTON_X; scr->results_button.y = RESULTS_BUTTON_Y; scr->results_button.h = RESULTS_BUTTON_H; scr->results_button.w = RESULTS_BUTTON_W; scr->tover_button.x = TOVER_BUTTON_X; scr->tover_button.y = TOVER_BUTTON_Y; scr->tover_button.h = TOVER_BUTTON_H; scr->tover_button.w = TOVER_BUTTON_W; scr->confine_button.x = CONFINE_BUTTON_X; scr->confine_button.y = CONFINE_BUTTON_Y; scr->confine_button.h = CONFINE_BUTTON_H; scr->confine_button.w = CONFINE_BUTTON_W; scr->module_buttons.x = SELECT_BUTTON_WIN_X; scr->module_buttons.y = SELECT_BUTTON_WIN_Y; scr->module_buttons.h = SELECT_BUTTON_WIN_H; scr->module_buttons.w = SELECT_BUTTON_WIN_W; scr->pbar_area.x = PBAR_AREA_X; scr->pbar_area.y = PBAR_AREA_Y; scr->pbar_area.h = PBAR_AREA_H; scr->pbar_area.w = PBAR_AREA_W; scr->pbar_pop.x = PBAR_POP_X; scr->pbar_pop.y = PBAR_POP_Y; scr->pbar_pop.h = PBAR_H; scr->pbar_pop.w = PBAR_W; scr->pbar_tech.x = PBAR_TECH_X; scr->pbar_tech.y = PBAR_TECH_Y; scr->pbar_tech.h = PBAR_H; scr->pbar_tech.w = PBAR_W; scr->pbar_food.x = PBAR_FOOD_X; scr->pbar_food.y = PBAR_FOOD_Y; scr->pbar_food.h = PBAR_H; scr->pbar_food.w = PBAR_W; scr->pbar_jobs.x = PBAR_JOBS_X; scr->pbar_jobs.y = PBAR_JOBS_Y; scr->pbar_jobs.h = PBAR_H; scr->pbar_jobs.w = PBAR_W; scr->pbar_money.x = PBAR_MONEY_X; scr->pbar_money.y = PBAR_MONEY_Y; scr->pbar_money.h = PBAR_H; scr->pbar_money.w = PBAR_W; scr->pbar_coal.x = PBAR_COAL_X; scr->pbar_coal.y = PBAR_COAL_Y; scr->pbar_coal.h = PBAR_H; scr->pbar_coal.w = PBAR_W; scr->pbar_goods.x = PBAR_GOODS_X; scr->pbar_goods.y = PBAR_GOODS_Y; scr->pbar_goods.h = PBAR_H; scr->pbar_goods.w = PBAR_W; scr->pbar_ore.x = PBAR_ORE_X; scr->pbar_ore.y = PBAR_ORE_Y; scr->pbar_ore.h = PBAR_H; scr->pbar_ore.w = PBAR_W; scr->pbar_steel.x = PBAR_STEEL_X; scr->pbar_steel.y = PBAR_STEEL_Y; scr->pbar_steel.h = PBAR_H; scr->pbar_steel.w = PBAR_W; scr->sust.x = SUST_SCREEN_X; scr->sust.y = SUST_SCREEN_Y; scr->sust.h = SUST_SCREEN_H; scr->sust.w = SUST_SCREEN_W; scr->select_message.x = SELECT_BUTTON_MESSAGE_X; scr->select_message.y = SELECT_BUTTON_MESSAGE_Y; scr->select_message.h = 0; /* unused */ scr->select_message.w = 0; /* unused */ scr->date.w = DATE_W; scr->date.x = scr->main_win.x + scr->main_win.w - scr->date.w; scr->date.y = scr->main_win.y + scr->main_win.h + 16; scr->date.h = 16; scr->money.w = MONEY_W; scr->money.x = scr->main_win.x; scr->money.y = scr->main_win.y + scr->main_win.h + 16; scr->money.h = 16; scr->time_for_year.x = TIME_FOR_YEAR_X; scr->time_for_year.y = TIME_FOR_YEAR_Y; scr->time_for_year.h = 0; /* unused */ scr->time_for_year.w = 0; /* unused */ scr->status_message_1.x = scr->main_win.x; scr->status_message_1.y = STATUS_MESSAGE_1_Y; scr->status_message_1.h = 8; scr->status_message_1.w = scr->main_win.w; scr->status_message_2.x = scr->main_win.x; scr->status_message_2.y = STATUS_MESSAGE_2_Y; scr->status_message_2.h = 8; scr->status_message_2.w = scr->main_win.w; scr->mini_map.x = MINI_SCREEN_X; scr->mini_map.y = MINI_SCREEN_Y; scr->mini_map.h = MINI_SCREEN_H; scr->mini_map.w = MINI_SCREEN_W; scr->mini_map_aux.x = MINI_MAP_AUX_X; scr->mini_map_aux.y = MINI_MAP_AUX_Y; scr->mini_map_aux.h = MINI_MAP_AUX_H; scr->mini_map_aux.w = MINI_MAP_AUX_W; scr->mini_map_area.x = MINI_MAP_AREA_X; scr->mini_map_area.y = MINI_MAP_AREA_Y; scr->mini_map_area.h = MINI_MAP_AREA_H; scr->mini_map_area.w = MINI_MAP_AREA_W; #if defined (commentout) scr->ms_normal_button.x = MS_NORMAL_BUTTON_X; scr->ms_normal_button.y = MS_NORMAL_BUTTON_Y; scr->ms_normal_button.h = MS_BUTTON_H; scr->ms_normal_button.w = MS_BUTTON_W; scr->ms_pollution_button.x = MS_POLLUTION_BUTTON_X; scr->ms_pollution_button.y = MS_POLLUTION_BUTTON_Y; scr->ms_pollution_button.h = MS_BUTTON_H; scr->ms_pollution_button.w = MS_BUTTON_W; scr->ms_fire_cover_button.x = MS_FIRE_COVER_BUTTON_X; scr->ms_fire_cover_button.y = MS_FIRE_COVER_BUTTON_Y; scr->ms_fire_cover_button.h = MS_BUTTON_H; scr->ms_fire_cover_button.w = MS_BUTTON_W; scr->ms_ub40_button.x = MS_UB40_BUTTON_X; scr->ms_ub40_button.y = MS_UB40_BUTTON_Y; scr->ms_ub40_button.h = MS_BUTTON_H; scr->ms_ub40_button.w = MS_BUTTON_W; scr->ms_coal_button.x = MS_COAL_BUTTON_X; scr->ms_coal_button.y = MS_COAL_BUTTON_Y; scr->ms_coal_button.h = MS_BUTTON_H; scr->ms_coal_button.w = MS_BUTTON_W; scr->ms_health_cover_button.x = MS_HEALTH_COVER_BUTTON_X; scr->ms_health_cover_button.y = MS_HEALTH_COVER_BUTTON_Y; scr->ms_health_cover_button.h = MS_BUTTON_H; scr->ms_health_cover_button.w = MS_BUTTON_W; scr->ms_cricket_cover_button.x = MS_CRICKET_COVER_BUTTON_X; scr->ms_cricket_cover_button.y = MS_CRICKET_COVER_BUTTON_Y; scr->ms_cricket_cover_button.h = MS_BUTTON_H; scr->ms_cricket_cover_button.w = MS_BUTTON_W; scr->ms_power_button.x = MS_POWER_BUTTON_X; scr->ms_power_button.y = MS_POWER_BUTTON_Y; scr->ms_power_button.h = MS_BUTTON_H; scr->ms_power_button.w = MS_BUTTON_W; scr->ms_starve_button.x = MS_STARVE_BUTTON_X; scr->ms_starve_button.y = MS_STARVE_BUTTON_Y; scr->ms_starve_button.h = MS_BUTTON_H; scr->ms_starve_button.w = MS_BUTTON_W; scr->ms_ocost_button.x = MS_OCOST_BUTTON_X; scr->ms_ocost_button.y = MS_OCOST_BUTTON_Y; scr->ms_ocost_button.h = MS_BUTTON_H; scr->ms_ocost_button.w = MS_BUTTON_W; #endif scr->monthgraph.x = MONTHGRAPH_X; scr->monthgraph.y = MONTHGRAPH_Y; scr->monthgraph.h = MONTHGRAPH_H; scr->monthgraph.w = MONTHGRAPH_W; scr->mappoint_stats.x = MAPPOINT_STATS_X; scr->mappoint_stats.y = MAPPOINT_STATS_Y; scr->mappoint_stats.h = MAPPOINT_STATS_H; scr->mappoint_stats.w = MAPPOINT_STATS_W; scr->market_cb = scr->pbar_area; /* scr->market_cb.x = MARKET_CB_X; scr->market_cb.y = MARKET_CB_Y; scr->market_cb.h = MARKET_CB_H; scr->market_cb.w = MARKET_CB_W; */ } void resize_geometry (int new_width, int new_height) { if (display.winW == new_width && display.winH == new_height) { /* Not a resize event. */ return; } /* Reset geometry back to default */ initialize_geometry (&scr); scr.client_win.w = new_width; scr.client_win.h = new_height; if (pix_double) { new_width = new_width / 2; new_height = new_height / 2; } /* Update display info */ display.winW = new_width; display.winH = new_height; /* Expand pixmap if necessary */ scr.client_w = new_width - 2*borderx; scr.client_h = new_height - 2*bordery; #if !defined (SVGALIB) resize_pixmap (scr.client_w, scr.client_h); #endif /* Adjust items that need adjusting */ resize_main_win (scr.client_w, scr.client_h); scr.select_message.y = SELECT_BUTTON_MESSAGE_Y + (scr.client_h - 480); scr.time_for_year.y = TIME_FOR_YEAR_Y + (scr.client_h - 480); scr.status_message_1.y = STATUS_MESSAGE_1_Y + (scr.client_h - 480); scr.status_message_1.w = scr.main_win.w; scr.status_message_2.y = STATUS_MESSAGE_2_Y + (scr.client_h - 480); scr.status_message_2.w = scr.main_win.w; scr.date.y = scr.main_win.y + scr.main_win.h + 16; scr.date.x = scr.main_win.x + scr.main_win.w - scr.date.w; scr.pbar_area.x = 56 + scr.main_win.w + 16 + 2; scr.pbar_pop.x = scr.pbar_area.x + 4; scr.pbar_tech.x = scr.pbar_area.x + 4; scr.pbar_food.x = scr.pbar_area.x + 4; scr.pbar_jobs.x = scr.pbar_area.x + 4; scr.pbar_money.x = scr.pbar_area.x + 4; scr.pbar_coal.x = scr.pbar_area.x + 4; scr.pbar_goods.x = scr.pbar_area.x + 4; scr.pbar_ore.x = scr.pbar_area.x + 4; scr.pbar_steel.x = scr.pbar_area.x + 4; scr.monthgraph.x = scr.pbar_area.x + 4; scr.mappoint_stats.x = scr.pbar_area.x + 4; scr.market_cb.x = scr.pbar_area.x; scr.mini_map_aux.x = scr.pbar_area.x + 4; scr.mini_map_area.x = scr.pbar_area.x + 4; scr.mini_map.x = scr.mini_map_aux.x + ((scr.mini_map_aux.w - scr.mini_map.w) / 2); scr.money.x = scr.main_win.x; scr.money.y = scr.main_win.y + scr.main_win.h + 16; scr.pause_button.y = PAUSE_BUTTON_Y + (scr.main_win.h - MAIN_WIN_H); scr.slow_button.y = SLOW_BUTTON_Y + (scr.main_win.h - MAIN_WIN_H); scr.med_button.y = MED_BUTTON_Y + (scr.main_win.h - MAIN_WIN_H); scr.fast_button.y = FAST_BUTTON_Y + (scr.main_win.h - MAIN_WIN_H); #if defined (SVGALIB) mouse_set_range (new_width,new_height); #endif /* Complete refresh of the screen required here */ #if !defined (SVGALIB) screen_full_refresh (); #endif } int mouse_in_rect (Rect* b, int x, int y) { return ((x > b->x) && (x < b->x + b->w) && (y > b->y) && (y < b->y + b->h)); } /* ---------------------------------------------------------------------- * * Main win functions * ---------------------------------------------------------------------- */ void resize_main_win (int new_width, int new_height) { Rect* mw = &scr.main_win; mw->w = new_width - 640 + MAIN_WIN_W; mw->w = (mw->w/16)*16; mw->h = new_height - 480 + MAIN_WIN_H; mw->h = (mw->h/16)*16; adjust_main_origin (main_screen_originx, main_screen_originy,0); } /* pixel_to_mappoint: convert a pixel value into a mappoint value. beware, values for mpx _can_ be negative */ int pixel_to_mappoint(int px, int py, int *mpx, int *mpy) { Rect* mw = &scr.main_win; *mpx = (px - mw->x) / 16; *mpy = (py - mw->y) / 16; *mpx += main_screen_originx; *mpy += main_screen_originy; if ((px > (mw->x + mw->w)) || (py > (mw->y + mw->h)) || (px < mw->x) || (py < mw->y)) { return 0; } return 1; } /* same as above, only with the upper left corner of the visible map being 1,1 */ int pixel_to_winpoint(int px, int py, int *wpx, int *wpy) { Rect* mw = &scr.main_win; *wpx = (px - mw->x) / 16; *wpy = (py - mw->y) / 16; if ((px > (mw->x + mw->w)) || (py > (mw->y + mw->h)) || (px < mw->x) || (py < mw->y)) { return 0; } return 1; } /* Adjust the main window origin, and refresh if necessary */ void adjust_main_origin (int new_origin_x, int new_origin_y, int refresh) { Rect* mw = &scr.main_win; if (new_origin_x < 1) { new_origin_x = 1; } else if (new_origin_x > WORLD_SIDE_LEN - mw->w / 16 - 1) { new_origin_x = WORLD_SIDE_LEN - mw->w / 16 - 1; } if (new_origin_y < 1) { new_origin_y = 1; } else if (new_origin_y > WORLD_SIDE_LEN - mw->h / 16 - 1) { new_origin_y = WORLD_SIDE_LEN - mw->h / 16 - 1; } if (new_origin_x == main_screen_originx && new_origin_y == main_screen_originy) { return; } main_screen_originx = new_origin_x; main_screen_originy = new_origin_y; if (refresh) { hide_mouse (); refresh_main_screen (); redraw_mouse (); } } /* ---------------------------------------------------------------------- * * Button drawing functions * ---------------------------------------------------------------------- */ void draw_pause (int active) { Rect* b = &scr.pause_button; if (active) { Fgl_putbox (b->x, b->y, 16, 16, pause_button1_on); Fgl_putbox (b->x + 16, b->y, 16, 16, pause_button2_on); } else { Fgl_putbox (b->x, b->y, 16, 16, pause_button1_off); Fgl_putbox (b->x + 16, b->y, 16, 16, pause_button2_off); } } void draw_slow (int active) { Rect* b = &scr.slow_button; if (active) { Fgl_putbox (b->x, b->y, 16, 16, slow_button1_on); Fgl_putbox (b->x + 16, b->y, 16, 16, slow_button2_on); } else { Fgl_putbox (b->x, b->y, 16, 16, slow_button1_off); Fgl_putbox (b->x + 16, b->y, 16, 16, slow_button2_off); } } void draw_med (int active) { Rect* b = &scr.med_button; if (active) { Fgl_putbox (b->x, b->y, 16, 16, med_button1_on); Fgl_putbox (b->x + 16, b->y, 16, 16, med_button2_on); } else { Fgl_putbox (b->x, b->y, 16, 16, med_button1_off); Fgl_putbox (b->x + 16, b->y, 16, 16, med_button2_off); } } void draw_fast (int active) { Rect* b = &scr.fast_button; if (active) { Fgl_putbox (b->x, b->y, 16, 16, fast_button1_on); Fgl_putbox (b->x + 16, b->y, 16, 16, fast_button2_on); } else { Fgl_putbox (b->x, b->y, 16, 16, fast_button1_off); Fgl_putbox (b->x + 16, b->y, 16, 16, fast_button2_off); } } void draw_menu (void) { /* int menu_bg_color = white(20);*/ /* int menu_bg_color = TEXT_BG_COLOUR; */ /* int menu_bg_color = 14;*/ /* int menu_fg_color = TEXT_FG_COLOUR;*/ int menu_bg_color = 80; int menu_fg_color = 226; Rect* b = &scr.menu_button; Fgl_fillbox (b->x, b->y, b->w, b->h, white(20)); Fgl_fillbox (b->x+5, b->y+4, b->w-10, b->h-5, menu_bg_color); Fgl_hline (b->x+5, b->y+4, b->x + b->w-5, white(8)); Fgl_line (b->x+5, b->y+4, b->x+5, b->y + b->h-2, white(8)); Fgl_hline (b->x+5, b->y + b->h-2, b->x + b->w-5, white(8)); Fgl_line (b->x + b->w-5, b->y+4, b->x + b->w-5, b->y + b->h-2, white(8)); Fgl_setfontcolors (menu_bg_color,menu_fg_color); Fgl_write (b->x + 12, b->y + 10, _("Menu")); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } void draw_help (void) { /* int menu_bg_color = white(20);*/ /* int menu_bg_color = TEXT_BG_COLOUR; */ /* int menu_bg_color = 14;*/ /* int menu_fg_color = TEXT_FG_COLOUR;*/ int menu_bg_color = 80; int menu_fg_color = 226; Rect* b = &scr.help_button; Fgl_fillbox (b->x, b->y, b->w, b->h, white(20)); Fgl_fillbox (b->x+5, b->y+4, b->w-10, b->h-8, menu_bg_color); Fgl_hline (b->x+5, b->y+4, b->x + b->w-5, white(8)); Fgl_line (b->x+5, b->y+4, b->x+5, b->y + b->h-4, white(8)); Fgl_hline (b->x+5, b->y + b->h-4, b->x + b->w-5, white(8)); Fgl_line (b->x + b->w-5, b->y+4, b->x + b->w-5, b->y + b->h-4, white(8)); Fgl_setfontcolors (menu_bg_color,menu_fg_color); Fgl_write (b->x + 13, b->y + 9, _("Help")); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } void draw_results (void) { /* int menu_bg_color = white(20);*/ /* int menu_bg_color = TEXT_BG_COLOUR; */ /* int menu_bg_color = 14;*/ /* int menu_fg_color = TEXT_FG_COLOUR;*/ int menu_bg_color = 80; int menu_fg_color = 226; Rect* b = &scr.results_button; Fgl_fillbox (b->x, b->y, b->w, b->h, white(20)); Fgl_fillbox (b->x+5, b->y+4, b->w-10, b->h-8, menu_bg_color); Fgl_hline (b->x+5, b->y+4, b->x + b->w-5, white(8)); Fgl_line (b->x+5, b->y+4, b->x+5, b->y + b->h-4, white(8)); Fgl_hline (b->x+5, b->y + b->h-4, b->x + b->w-5, white(8)); Fgl_line (b->x + b->w-5, b->y+4, b->x + b->w-5, b->y + b->h-4, white(8)); Fgl_setfontcolors (menu_bg_color,menu_fg_color); Fgl_write (b->x + 9, b->y + 9, _("Stats")); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } #if defined (commentout) void draw_load (void) { Rect* b = &scr.load_button; Fgl_putbox (b->x, b->y, 32, 32, load_button_graphic); } void draw_save (void) { Rect* b = &scr.save_button; Fgl_putbox (b->x, b->y, 32, 32, save_button_graphic); } void draw_quit (void) { Rect* b = &scr.quit_button; Fgl_putbox (b->x, b->y, 32, 32, quit_button_graphic); } void draw_help (void) { Rect* b = &scr.help_button; Fgl_putbox (b->x, b->y, 32, 32, help_button_graphic); } void draw_results (void) { Rect* b = &scr.results_button; Fgl_putbox (b->x, b->y, 16, 16, results_button1); Fgl_putbox (b->x + 16, b->y, 16, 16, results_button2); } #endif /* ---------------------------------------------------------------------- * * Button click functions * ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- * * Mini map button functions * ---------------------------------------------------------------------- */ #if defined (commentout) void draw_ms_button (Rect* b, char* graphic) { Fgl_putbox (b->x, b->y, 16, 16, graphic); } #endif void draw_ms_button (char* graphic) { Rect* mma = &scr.mini_map_aux; Fgl_putbox (mma->x + 4, mma->y, 16, 16, graphic); } void draw_ms_text (char* txt) { Rect* mma = &scr.mini_map_aux; Fgl_write (mma->x + 28, mma->y + 4, txt); } void draw_small_bezel (int x, int y, int w, int h, int colour) { int i; for (i = 1; i < 4; i++) { Fgl_hline (x - 1 - i, y - 1 - i, x + w + i, colour + 16); Fgl_line (x - 1 - i, y - 1 - i, x - 1 - i, y + h + i, colour + 14); Fgl_hline (x - 1 - i, y + h + i, x + w + i, colour + 22); Fgl_line (x + w + i, y - 1 - i, x + w + i, y + h + i, colour + 24); } } void draw_bezel (Rect r, short width, int color) { int i; int c; for (i = 0; i < width; i++) { c = color + (width - i) * 2; Fgl_hline (r.x + i, r.y + i, r.x + r.w - i - 1, c); Fgl_hline (r.x + i, r.y + r.h - i - 1, r.x + r.w - i - 1, c); Fgl_line (r.x + i, r.y + i, r.x + i, r.y + r.h - i - 1, c); Fgl_line (r.x + r.w - i - 1, r.y + i, r.x + r.w - i - 1, r.y + r.h - i - 1, c); } } lincity-1.13.1/pbar.c0000644000175000017500000002317710071464546011302 00000000000000/* pbar.c: handles rate-of-change indicators * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) 2001 Corey Keasling. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include "cliglobs.h" #include "lchelp.h" #include "mouse.h" #include "shrglobs.h" #include "pbar.h" #include "lin-city.h" #include "lclib.h" #include "stats.h" #include "engglobs.h" struct pbar_st pbars[NUM_PBARS]; void init_pbars (void) { int i, p; for (p = 0; p < NUM_PBARS; p++) { pbars[p].data_size = 0; pbars[p].oldtot = 0; pbars[p].tot = 0; pbars[p].diff = 0; for (i = 0; i < PBAR_DATA_SIZE; i++) pbars[p].data[i] = 0; } } void pbars_full_refresh (void) { Rect* pba = &scr.pbar_area; draw_small_bezel (pba->x+4, pba->y+4, pba->w-8, pba->h-8, yellow(0)); init_pbar_text (); draw_pbars (); } void init_pbar_text (void) { clear_pbar_text (&scr.pbar_pop); clear_pbar_text (&scr.pbar_tech); clear_pbar_text (&scr.pbar_food); clear_pbar_text (&scr.pbar_jobs); clear_pbar_text (&scr.pbar_money); clear_pbar_text (&scr.pbar_coal); clear_pbar_text (&scr.pbar_goods); clear_pbar_text (&scr.pbar_ore); clear_pbar_text (&scr.pbar_steel); } /* ---------------------------------------------------------------------- * * Pbar drawing function * ---------------------------------------------------------------------- */ void draw_pbar (Rect* b, char* graphic) /* XXX: WCK: why not just make the graphic include the black? */ /* GCS: Good idea, but xpicedit is painful to use! */ { Fgl_fillbox (b->x, b->y, b->w, b->h, 0); Fgl_putbox (b->x + (b->w / 2) - 8, b->y, 16, 16, graphic); } void draw_pbars (void) { draw_pbar (&scr.pbar_pop, pop_pbar_graphic); draw_pbar (&scr.pbar_tech, tech_pbar_graphic); draw_pbar (&scr.pbar_food, food_pbar_graphic); draw_pbar (&scr.pbar_jobs, jobs_pbar_graphic); draw_pbar (&scr.pbar_money, money_pbar_graphic); draw_pbar (&scr.pbar_coal, coal_pbar_graphic); draw_pbar (&scr.pbar_goods, goods_pbar_graphic); draw_pbar (&scr.pbar_ore, ore_pbar_graphic); draw_pbar (&scr.pbar_steel, steel_pbar_graphic); } /* Text functions */ void clear_pbar_text (Rect* pbar) { Fgl_fillbox (pbar->x + pbar->w + 1, pbar->y, PBAR_TEXT_W, pbar->h, 0); } void write_pbar_int (Rect* b, int val) { char s[16]; format_number5 (s, pbars[val].data[pbars[val].data_size-1]); Fgl_setfontcolors (0, 255); Fgl_write (b->x + b->w + 25, b->y + 4, s); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } void write_pbar_text (Rect* b, char * s) { Fgl_setfontcolors (0, 255); Fgl_write (b->x + b->w + 25, b->y + 4, s); Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); } /* XXX: WCK: Macros anyone? */ /* GCS: I thought I might like to change the "sensitivity" of the pbars on a case-by-case basis, but never got around to it. */ /* WCK: sure, but the preprocessor can still do some of the work, so: */ /* GCS: The new macros look good. I killed the old code. */ #define pbar_adjust_pop(diff) 2 * diff #define pbar_adjust_tech(diff) diff > 0 ? diff / 4 + 1 : -((-diff+1)/ 2) #define pbar_adjust_food(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_jobs(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_coal(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_goods(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_ore(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_steel(diff) diff > 0 ? diff / 2 + 1 : diff #define pbar_adjust_money(diff) diff > 0 ? diff / 800 + 1 : diff / 400 /* XXX: wck: write_pbar_* changes font colours every time its called; only need to do this once. Maybe it should be folded in.*/ void refresh_population_text (void) { /* GCS: This function is kind of a hack, but I need the population to be refreshed immediately after the rocket is launched. Therefore, this function! */ Rect * b; update_pbar (PPOP, housed_population + people_pool, 0); b = &scr.pbar_pop; write_pbar_int (b, PPOP); } void refresh_pbars (void) { Rect * b; char s[10]; /* Population */ b = &scr.pbar_pop; draw_pbar_new (b, pbar_adjust_pop(pbars[PPOP].diff)); write_pbar_int (b, PPOP); /* Technology */ b = &scr.pbar_tech; draw_pbar_new (b, pbar_adjust_tech(pbars[PTECH].diff)); snprintf (s, 10, "%5.1f", (float) pbars[PTECH].data[pbars[PTECH].data_size - 1] * 100.0 / MAX_TECH_LEVEL); write_pbar_text (b, s); /* Food */ b = &scr.pbar_food; draw_pbar_new (b, pbar_adjust_food(pbars[PFOOD].diff)); write_pbar_int (b, PFOOD); /* Jobs */ b = &scr.pbar_jobs; draw_pbar_new (b, pbar_adjust_jobs(pbars[PFOOD].diff)); write_pbar_int (b, PJOBS); /* Coal */ b = &scr.pbar_coal; draw_pbar_new (b, pbar_adjust_coal(pbars[PCOAL].diff)); write_pbar_int (b, PCOAL); /* Goods */ b = &scr.pbar_goods; draw_pbar_new (b, pbar_adjust_goods(pbars[PGOODS].diff)); write_pbar_int (b, PGOODS); /* Ore */ b = &scr.pbar_ore; draw_pbar_new (b, pbar_adjust_ore(pbars[PORE].diff)); write_pbar_int (b, PORE); /* Steel */ b = &scr.pbar_steel; draw_pbar_new (b, pbar_adjust_steel(pbars[PSTEEL].diff)); write_pbar_int (b, PSTEEL); /* Money */ b = &scr.pbar_money; draw_pbar_new (b, pbar_adjust_money(pbars[PMONEY].diff)); write_pbar_int (b, PMONEY); } /* update_pbar: add a new value to the array used to calculate the pbar display. If month_flag is 1, the oldtotal is updated, all values are shifted up (dropping the first one), and the new value is added at the end. If 0, the new value replaces the most recently updated value. The data is summed and the result compared to the old total. */ void update_pbar (int pbar_num, int value, int month_flag) { int i; struct pbar_st * pbar = &pbars[pbar_num]; if (month_flag) { pbar->oldtot = pbar->tot; /* If the dataset isn't full, just add it and forget month_flag */ if (pbar->data_size < PBAR_DATA_SIZE) { pbar->data_size++; month_flag = 0; } } pbar->tot = 0; for (i = 0; i < (pbar->data_size - 1); i++) { if (month_flag) pbar->tot += (pbar->data[i] = pbar->data[i+1]); else pbar->tot += pbar->data[i]; } pbar->tot += pbar->data[i] = value; pbar->diff = pbar->tot - pbar->oldtot; } void update_pbars_daily() { update_pbar (PPOP, housed_population + people_pool, 0); update_pbar (PTECH, tech_level, 0); update_pbar (PFOOD, food_in_markets / 1000, 0); update_pbar (PJOBS, jobs_in_markets / 1000, 0); update_pbar (PCOAL, coal_in_markets / 250, 0); update_pbar (PGOODS, goods_in_markets / 500, 0); update_pbar (PORE, ore_in_markets / 500, 0); update_pbar (PSTEEL, steel_in_markets / 25, 0); update_pbar (PMONEY, total_money, 0); } void update_pbars_monthly() { update_pbar (PPOP, housed_population + people_pool, 1); update_pbar (PTECH, tech_level, 1); update_pbar (PFOOD, tfood_in_markets / data_last_month, 1); update_pbar (PJOBS, tjobs_in_markets / data_last_month, 1); update_pbar (PCOAL, tcoal_in_markets / data_last_month, 1); update_pbar (PGOODS, tgoods_in_markets / data_last_month, 1); update_pbar (PORE, tore_in_markets / data_last_month, 1); update_pbar (PSTEEL, tsteel_in_markets / data_last_month, 1); update_pbar (PMONEY, total_money, 1); } int compute_pbar_offset (Rect* b, int val) { int offset; int val_abs = val > 0 ? val : -val; if (!val) return 0; offset = (int) log (val_abs); if (offset > (b->w / 2) - 8) { offset = (b->w / 2) - 8; } offset = val > 0 ? offset : -offset; return offset; } void draw_pbar_new (Rect* b, int val) { int offset; int spike_start, spike_end; /* offset, oldoffset are the size of spike in pixels */ offset = compute_pbar_offset (b, val); /* Clear both sides of the pbar */ Fgl_fillbox (b->x, b->y, b->w / 2 - 8, b->h, 0); Fgl_fillbox (b->x + (b->w / 2) + 8, b->y, b->w / 2 - 8, b->h, 0); /* Figure out pos/neg and length and draw */ if (offset > 0) { /* Right/Positive */ spike_start = b->x + (b->w / 2) + 8; spike_end = spike_start + offset; Fgl_fillbox (spike_start, b->y+2, spike_end - spike_start, b->h-4, (green(12))); } else if (offset < 0) { /* Left/Negative */ spike_end = b->x + (b->w / 2) - 8; spike_start = spike_end + offset; Fgl_fillbox (spike_start, b->y+2, spike_end - spike_start, b->h-4, (red(12))); } } void pbar_mouse(int rawx, int rawy, int button) { if (button != LC_MOUSE_RIGHTBUTTON) return; /* check for help with pbars */ activate_help ("pbar.hlp"); #if defined (commentout) if (mouse_in_rect (&scr.pbar_pop,x,y)) { activate_help ("pbar-pop.hlp"); return; } else if (mouse_in_rect (&scr.pbar_tech,x,y)) { activate_help ("pbar-tech.hlp"); return; } else if (mouse_in_rect (&scr.pbar_food,x,y)) { activate_help ("pbar-food.hlp"); return; } else if (mouse_in_rect (&scr.pbar_jobs,x,y)) { activate_help ("pbar-jobs.hlp"); return; } else if (mouse_in_rect (&scr.pbar_money,x,y)) { activate_help ("pbar-money.hlp"); return; } else if (mouse_in_rect (&scr.pbar_coal,x,y)) { activate_help ("pbar-coal.hlp"); return; } else if (mouse_in_rect (&scr.pbar_goods,x,y)) { activate_help ("pbar-goods.hlp"); return; } else if (mouse_in_rect (&scr.pbar_ore,x,y)) { activate_help ("pbar-ore.hlp"); return; } else if (mouse_in_rect (&scr.pbar_steel,x,y)) { activate_help ("pbar-steel.hlp"); return; } #endif } lincity-1.13.1/module_buttons.c0000644000175000017500000004114307737730734013424 00000000000000#include #include "lcconfig.h" #include "lcstring.h" #include "geometry.h" #include "module_buttons.h" #include "cliglobs.h" #include "mouse.h" #include "lcintl.h" #include "lctypes.h" #include "lclib.h" #include "lchelp.h" #define DEBUG_MODULES 0 static int module_rows; static int module_cols; static Mouse_Handle * mhandle; static Rect * mbw = &scr.module_buttons; int module_type[NUMOF_MODULES]; char *module_graphic[NUMOF_MODULES]; int module_tflag[NUMOF_MODULES]; char module_help[NUMOF_MODULES][20]; int module_help_flag[NUMOF_MODULES]; int sbut[NUMOF_MODULES]; int selected_module = 0; int selected_module_type; int selected_module_group; int selected_module_cost; void init_modules (void) { int i; /* Get max number of rows for space allotted */ module_rows = (mbw->h / (SELECT_BUTTON_INTERVAL)); module_cols = (mbw->w / (SELECT_BUTTON_INTERVAL)); /* Tell the mouse where we are */ mhandle = mouse_register(&scr.module_buttons,&module_buttons_handler); #if (DEBUG_MODULES) printf("debug_modules:\t\tr=%d\tc=%d\n",module_rows, module_cols); #endif /* sbut converts a group into a column major index of the button array. */ sbut[0] = 16; /* buldoze */ sbut[1] = 13; /* powerline */ sbut[2] = 15; /* solar power */ sbut[3] = 14; /* substation */ sbut[4] = 0; /* residence */ sbut[5] = 1; /* farm */ sbut[6] = 2; /* market */ sbut[7] = 19; /* track */ sbut[8] = 10; /* coalmine */ sbut[9] = 28; /* rail */ sbut[10] = 29; /* coal power */ sbut[11] = 25; /* road */ sbut[12] = 27; /* light industry */ sbut[13] = 11; /* university */ sbut[14] = 3; /* commune */ sbut[15] = 4; /* oremine */ sbut[16] = 5; /* tip */ sbut[17] = 9; /* export */ sbut[18] = 12; /* heavy industry */ sbut[19] = 6; /* parkland */ sbut[20] = 30; /* recycle */ sbut[21] = 20; /* water */ sbut[22] = 26; /* health */ sbut[23] = 31; /* rocket */ sbut[24] = 24; /* windmill */ sbut[25] = 17; /* monument */ sbut[26] = 21; /* school */ sbut[27] = 22; /* blacksmith */ sbut[28] = 8; /* mill */ sbut[29] = 18; /* pottery */ sbut[30] = 23; /* fire station */ sbut[31] = 7; /* cricket */ /* load graphics and initialize help */ module_graphic[sbut[0]] = load_graphic ("buldoze-button.csi"); module_type[sbut[0]] = CST_GREEN; strcpy (module_help[sbut[0]], "bulldoze.hlp"); module_graphic[sbut[1]] = load_graphic ("powerline-button.csi"); module_type[sbut[1]] = CST_POWERL_H_L; strcpy (module_help[sbut[1]], "powerline.hlp"); module_graphic[sbut[2]] = load_graphic ("powerssolar-button.csi"); module_type[sbut[2]] = CST_POWERS_SOLAR; strcpy (module_help[sbut[2]], "powerssolar.hlp"); module_graphic[sbut[3]] = load_graphic ("substation-button.csi"); module_type[sbut[3]] = CST_SUBSTATION_R; strcpy (module_help[sbut[3]], "substation.hlp"); module_graphic[sbut[4]] = load_graphic ("residence-button.csi"); module_type[sbut[4]] = CST_RESIDENCE_LL; strcpy (module_help[sbut[4]], "residential.hlp"); module_graphic[sbut[5]] = load_graphic ("organic-farm-button.csi"); module_type[sbut[5]] = CST_FARM_O0; strcpy (module_help[sbut[5]], "farm.hlp"); module_graphic[sbut[6]] = load_graphic ("market-button.csi"); module_type[sbut[6]] = CST_MARKET_EMPTY; strcpy (module_help[sbut[6]], "market.hlp"); module_help_flag[sbut[7]] = 1; /* No help for track */ module_graphic[sbut[7]] = load_graphic ("track-button.csi"); module_type[sbut[7]] = CST_TRACK_LR; strcpy (module_help[sbut[7]], "track.hlp"); module_graphic[sbut[8]] = load_graphic ("coalmine-button.csi"); module_type[sbut[8]] = CST_COALMINE_EMPTY; strcpy (module_help[sbut[8]], "coalmine.hlp"); module_graphic[sbut[9]] = load_graphic ("rail-button.csi"); module_type[sbut[9]] = CST_RAIL_LR; strcpy (module_help[sbut[9]], "rail.hlp"); module_graphic[sbut[10]] = load_graphic ("powerscoal-button.csi"); module_type[sbut[10]] = CST_POWERS_COAL_EMPTY; strcpy (module_help[sbut[10]], "powerscoal.hlp"); module_graphic[sbut[11]] = load_graphic ("road-button.csi"); module_type[sbut[11]] = CST_ROAD_LR; strcpy (module_help[sbut[11]], "road.hlp"); module_graphic[sbut[12]] = load_graphic ("industryl-button.csi"); module_type[sbut[12]] = CST_INDUSTRY_L_C; strcpy (module_help[sbut[12]], "industryl.hlp"); module_graphic[sbut[13]] = load_graphic ("university-button.csi"); module_type[sbut[13]] = CST_UNIVERSITY; strcpy (module_help[sbut[13]], "university.hlp"); module_graphic[sbut[14]] = load_graphic ("commune-button.csi"); module_type[sbut[14]] = CST_COMMUNE_1; strcpy (module_help[sbut[14]], "commune.hlp"); module_graphic[sbut[15]] = load_graphic ("oremine-button.csi"); module_type[sbut[15]] = CST_OREMINE_1; strcpy (module_help[sbut[15]], "oremine.hlp"); module_graphic[sbut[16]] = load_graphic ("tip-button.csi"); module_type[sbut[16]] = CST_TIP_0; strcpy (module_help[sbut[16]], "tip.hlp"); module_graphic[sbut[17]] = load_graphic ("port-button.csi"); module_type[sbut[17]] = CST_EX_PORT; strcpy (module_help[sbut[17]], "port.hlp"); module_graphic[sbut[18]] = load_graphic ("industryh-button.csi"); module_type[sbut[18]] = CST_INDUSTRY_H_C; strcpy (module_help[sbut[18]], "industryh.hlp"); module_graphic[sbut[19]] = load_graphic ("parkland-button.csi"); module_type[sbut[19]] = CST_PARKLAND_PLANE; strcpy (module_help[sbut[19]], "park.hlp"); module_graphic[sbut[20]] = load_graphic ("recycle-button.csi"); module_type[sbut[20]] = CST_RECYCLE; strcpy (module_help[sbut[20]], "recycle.hlp"); module_graphic[sbut[21]] = load_graphic ("water-button.csi"); module_type[sbut[21]] = CST_WATER; strcpy (module_help[sbut[21]], "river.hlp"); module_graphic[sbut[22]] = load_graphic ("health-button.csi"); module_type[sbut[22]] = CST_HEALTH; strcpy (module_help[sbut[22]], "health.hlp"); module_graphic[sbut[23]] = load_graphic ("rocket-button.csi"); module_type[sbut[23]] = CST_ROCKET_1; strcpy (module_help[sbut[23]], "rocket.hlp"); module_graphic[sbut[24]] = load_graphic ("windmill-button.csi"); module_type[sbut[24]] = CST_WINDMILL_1_R; strcpy (module_help[sbut[24]], "windmill.hlp"); module_graphic[sbut[25]] = load_graphic ("monument-button.csi"); module_type[sbut[25]] = CST_MONUMENT_0; strcpy (module_help[sbut[25]], "monument.hlp"); module_graphic[sbut[26]] = load_graphic ("school-button.csi"); module_type[sbut[26]] = CST_SCHOOL; strcpy (module_help[sbut[26]], "school.hlp"); module_graphic[sbut[27]] = load_graphic ("blacksmith-button.csi"); module_type[sbut[27]] = CST_BLACKSMITH_0; strcpy (module_help[sbut[27]], "blacksmith.hlp"); module_graphic[sbut[28]] = load_graphic ("mill-button.csi"); module_type[sbut[28]] = CST_MILL_0; strcpy (module_help[sbut[28]], "mill.hlp"); module_graphic[sbut[29]] = load_graphic ("pottery-button.csi"); module_type[sbut[29]] = CST_POTTERY_0; strcpy (module_help[sbut[29]], "pottery.hlp"); module_graphic[sbut[30]] = load_graphic ("firestation-button.csi"); module_type[sbut[30]] = CST_FIRESTATION_1; strcpy (module_help[sbut[30]], "firestation.hlp"); module_graphic[sbut[31]] = load_graphic ("cricket-button.csi"); module_type[sbut[31]] = CST_CRICKET_1; strcpy (module_help[sbut[31]], "cricket.hlp"); /* disable all the buttons */ for (i = 0; i < NUMOF_MODULES; i++) { module_tflag[i] = 0; } /* select track (which will be enabled later) */ #if defined (commentout) selected_module_type = CST_TRACK_LR; selected_module_cost = GROUP_TRACK_COST; selected_module_group = get_group_of_type(selected_module_type); #endif selected_module = sbut[7]; /* GCS: Move to later in initialization because I don't want to draw_main_window_box() yet */ #if defined (commentout) set_selected_module (CST_TRACK_LR); #endif } /* update_avail_modules: Determine which modules are available, based on tech level */ void update_avail_modules (int popup) { int i; int f; /* remembers if a change is made to what is available, so we can draw if necessary */ for (i = 0; i < NUMOF_MODULES; i++) { int g = inv_sbut(i); f = module_tflag[i]; if (tech_level >= main_groups[g].tech * MAX_TECH_LEVEL/1000) { if (module_tflag[i] == 0) if (popup) activate_module (i); f = 1; } else if (module_tflag[i] != 0 && tech_level < ((main_groups[g].tech - (main_groups[g].tech/10)) * MAX_TECH_LEVEL/1000) ) f = 0; if (module_tflag[i] != f) { module_tflag[i] = f; draw_module (i, module_graphic[i]); } } /* XXX: Why is this here? Should be with rest of tech gained messages! */ /* GCS: Because the modern windmill tech reuses the same module number as the primative windmill? */ if (tech_level > MODERN_WINDMILL_TECH && modern_windmill_flag == 0) { ok_dial_box ("mod_wind_up.mes", GOOD, 0L); modern_windmill_flag = 1; } } /* Display message for module when it is activated (see above) */ void activate_module (int module) { module = inv_sbut (module); if (module == GROUP_WINDMILL) ok_dial_box ("windmillup.mes", GOOD, 0L); else if (module == GROUP_COAL_POWER) ok_dial_box ("coalpowerup.mes", GOOD, 0L); /* else if (module == (GROUP_SOLAR_POWER - 1)) */ else if (module == GROUP_SOLAR_POWER) ok_dial_box ("solarpowerup.mes", GOOD, 0L); else if (module == GROUP_COALMINE) ok_dial_box ("coalmineup.mes", GOOD, 0L); else if (module == GROUP_RAIL) ok_dial_box ("railwayup.mes", GOOD, 0L); else if (module == GROUP_ROAD) ok_dial_box ("roadup.mes", GOOD, 0L); else if (module == GROUP_INDUSTRY_L) ok_dial_box ("ltindustryup.mes", GOOD, 0L); else if (module == GROUP_UNIVERSITY) ok_dial_box ("universityup.mes", GOOD, 0L); else if (module == GROUP_OREMINE) { if (GROUP_OREMINE_TECH > 0) ok_dial_box ("oremineup.mes", GOOD, 0L); } else if (module == GROUP_PORT) /* exports are the same */ ok_dial_box ("import-exportup.mes", GOOD, 0L); else if (module == GROUP_INDUSTRY_H) ok_dial_box ("hvindustryup.mes", GOOD, 0L); else if (module == GROUP_PARKLAND) { if (GROUP_PARKLAND_TECH > 0) ok_dial_box ("parkup.mes", GOOD, 0L); } else if (module == GROUP_RECYCLE) ok_dial_box ("recycleup.mes", GOOD, 0L); else if (module == GROUP_RIVER) { if (GROUP_WATER_TECH > 0) ok_dial_box ("riverup.mes", GOOD, 0L); } else if (module == GROUP_HEALTH) ok_dial_box ("healthup.mes", GOOD, 0L); else if (module == GROUP_ROCKET) ok_dial_box ("rocketup.mes", GOOD, 0L); else if (module == GROUP_SCHOOL) { if (GROUP_SCHOOL_TECH > 0) ok_dial_box ("schoolup.mes", GOOD, 0L); } else if (module == GROUP_BLACKSMITH) { if (GROUP_BLACKSMITH_TECH > 0) ok_dial_box ("blacksmithup.mes", GOOD, 0L); } else if (module == GROUP_MILL) { if (GROUP_MILL_TECH > 0) ok_dial_box ("millup.mes", GOOD, 0L); } else if (module == GROUP_POTTERY) { if (GROUP_POTTERY_TECH > 0) ok_dial_box ("potteryup.mes", GOOD, 0L); } else if (module == GROUP_FIRESTATION) ok_dial_box ("firestationup.mes", GOOD, 0L); else if (module == GROUP_CRICKET) ok_dial_box ("cricketup.mes", GOOD, 0L); } /* handle_module_buttons: mouse handler for module window */ void module_buttons_handler (int x, int y, int mbutton) { int module; int row, col; /* Figure out which row and column the click came in */ row = (y / (SELECT_BUTTON_INTERVAL)); if ((y % SELECT_BUTTON_INTERVAL) <= 8) return; /* in the gap */ col = (x / (SELECT_BUTTON_INTERVAL)); if ((x % SELECT_BUTTON_INTERVAL) <= 8) return; module = row + (module_rows * col); select_module (module, mbutton); } /* select_module: low level click handler; display help or change to module, depending on mbutton (right or left click) */ void select_module (int module, int mbutton) { if (module_tflag[module] == 0 && mbutton != LC_MOUSE_RIGHTBUTTON) { ok_dial_box ("not_enough_tech.mes", BAD, 0L); return; } if (mbutton == LC_MOUSE_RIGHTBUTTON || (module_help_flag[module] == 0 && !suppress_firsttime_module_help)) { activate_help (module_help[module]); if (mbutton != LC_MOUSE_RIGHTBUTTON) module_help_flag[module] = 1; if (mbutton == LC_MOUSE_RIGHTBUTTON) return; } unhighlight_module_button (selected_module); highlight_module_button (module); selected_module = module; set_selected_module (module_type[module]); } /* highlight_module_button: draw a nice border around a selected module */ void highlight_module_button (int module) { int x, y; int row, col; if (module == 0) { row = 0; col = 0; } else { row = module % module_rows; col = module / module_rows; } x = 8 + (col * 24) + mbw->x; y = 8 + (row * 24) + mbw->y; hide_mouse (); draw_small_bezel(x + 1, y + 1, SELECT_BUTTON_WIDTH - 2, SELECT_BUTTON_WIDTH - 2, yellow(0)); redraw_mouse (); } /* unhighlight_module_button: replace highlight border with regular one */ void unhighlight_module_button (int module) { int x, y; int row, col; if (module == 0) { row = 0; col = 0; } else { row = module % module_rows; col = module / module_rows; } x = 8 + (col * 24) + mbw->x; y = 8 + (row * 24) + mbw->y; hide_mouse (); draw_small_bezel(x + 1, y + 1, SELECT_BUTTON_WIDTH - 2, SELECT_BUTTON_WIDTH - 2, blue(0)); redraw_mouse (); } /* draw_selected_module_cost: write info about the module to the status area */ void draw_selected_module_cost () { Rect* b = &scr.select_message; char s[100]; char coststr[20]; char bldzstr[20]; selected_module_cost = get_type_cost (selected_module_type); commify(coststr,20,selected_module_cost); commify(bldzstr,20,main_groups[selected_module_group].bul_cost); if (selected_module_group == GROUP_BARE) snprintf (s, 100, _("Bulldoze - cost varies")); else snprintf (s, 100, _("%s %s Bulldoze %s"), _(main_groups[selected_module_group].name), coststr, bldzstr); Fgl_fillbox (b->x, b->y, 42 * 8, 8, TEXT_BG_COLOUR); Fgl_write (b->x, b->y, s); } /* draw_modules: fill a box and then draw all graphics */ void draw_modules (void) { int i; Fgl_fillbox (mbw->x, mbw->y, mbw->w, mbw->h, white (20)); for (i = 0; i < NUMOF_MODULES; i++) draw_module (sbut[i], module_graphic[sbut[i]]); highlight_module_button(selected_module); } void draw_module (int module, char *graphic) { int x, y, xx, yy; int row, col; if (module == 0) { row = 0; col = 0; } else { row = module % module_rows; col = module / module_rows; } x = 8 + (col * 24); y = 8 + (row * 24); hide_mouse (); Fgl_putbox (x + mbw->x, y + mbw->y, 16, 16, graphic); unhighlight_module_button (module); /* Modules we don't have enough tech for are greyed out. */ if (module_tflag[module] == 0) { for (yy = -3; yy < 19; yy++) for (xx = -3; xx < 19; xx += 2) Fgl_setpixel (x + xx + (yy % 2) + mbw->x, y + yy + mbw->y, white (15)); } redraw_mouse (); } /* inv_sbut: the order and the number of the module aren't the same; inv_sbut converts between a geographical location and an array location */ int inv_sbut (int button) { int i, j; for (i = 0; i < 32; i++) if (sbut[i] == button) { j = i; return (j); } /* XXX: do we need this debug stuff? */ /* GCS: This is a fatal error. Probably OK. */ printf ("Button=%d\n", button); for (i = 0; i < 32; i++) printf ("%5d", sbut[i]); printf ("\n"); do_error ("An inv_sbut error has happened."); return (-1); /* can't get here */ } void set_selected_module (int type) { selected_module_type = type; selected_module_group = get_group_of_type(selected_module_type); if (selected_module_type == CST_RESIDENCE_LL) { choose_residence (); } #ifdef LC_X11 /* XXX: WCK: shouldn't be any platform specific code here */ if (selected_module_group == GROUP_BARE) XDefineCursor (display.dpy, display.win, pirate_cursor); else XDefineCursor (display.dpy, display.win, None); #endif draw_selected_module_cost(); if (selected_module_type == CST_GREEN) { draw_main_window_box (red (8)); } else { draw_main_window_box (green (8)); monument_bul_flag = 0; river_bul_flag = 0; shanty_bul_flag = 0; } selected_module_type = type; selected_module_group = get_group_of_type(selected_module_type); draw_selected_module_cost (); /* sets module cost */ } lincity-1.13.1/dialbox.c0000644000175000017500000002265110071464672011774 00000000000000/* ---------------------------------------------------------------------- * * dialbox.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) Corey Keasling, 2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include /* XXX: WCK: What does configure need to know? */ #include "lcstring.h" #include "screen.h" #include "geometry.h" #include "dialbox.h" #include "mouse.h" #include "lclib.h" static Dialog_Box db_entry[MAX_DBOX_ENTRIES]; static Rect dialog_window; /* Describes position of window on screen */ static Rect text_window; /* Describes position of text area on screen */ static Rect db_rect[MAX_DBOX_ENTRIES]; /* region of each line/button */ // static Rect button_rect[MAX_DBOX_ENTRIES]; /* click area for buttons, lines */ // static Rect line_rect[MAX_DBOX_ENTRIES]; /* offset from text_window */ static Mouse_Handle * main_handle; static Mouse_Handle * text_handle; static int dbn; /* number of dbox entries */ static int bn; /* number of buttons */ static int ln; /* number of lines */ static int db_longest_button; /* total width of all buttons, pixels */ static int db_longest_line; /* pixel width of longest line */ static int bs; /* button spacing */ static int bse; /* extra spacing, to be added at beginning and end of line */ static int color; static short db_up = 0; static int db_return_value; char * db_screen_buffer; /* hold the screen we overwrite */ char db_screen_fresh; /* does the buffer hold information? */ /* Mouse handling routines: main_handler() and text_handler() main_handler handles the main dialog window: the text area and border. Clicks in the border are useless and ignored; text_handler takes the interesting ones */ void main_handler(int x, int y, int button) { } void text_handler(int x, int y, int button) { int i; for (i = 0; i < dbn; i++) { if (mouse_in_rect(&db_rect[i], x, y) && db_entry[i].retval) dialog_close(db_entry[i].retval); } } /* Keypress handler: dialog_key_handler() Iterate through possible hotkeys, returning if key matches. */ void dialog_key_handler (int key) { int i; if (key == 0) return; /* CR, LF, and space all activate default button, type 2 */ if (key == 10 || key == 13 || key == 32) { for (i = 0; i < dbn; i++) if (db_entry[i].type == 2) { dialog_close(db_entry[i].retval); return; } } else { for (i = 0; i < dbn; i++) { if (key == db_entry[i].retval) { dialog_close(db_entry[i].retval); return; } } } } int dialog_box(int arg_color, int argc, ...) { va_list ap; int i; int db_last_button = -1; int key; char * working_str; /* Try the locks */ if (db_up) { printf("Already have a dialog box on screen!\n"); exit(-1); /* GCS: I guess this must be a critical bug. */ } else { db_up = 1; /* XXX: Need to reconcile these - don't need both flags */ db_flag = 1; } bn = 0; ln = 0; dbn = 0; db_longest_button = 0; db_longest_line = 0; bs = 0; bse = 0; color = arg_color; db_screen_fresh = 0; va_start(ap, argc); /* For each argument pair, get the arguments, determine line or button, calculate width/length, adjust total size accordingly, increment type count. */ for (i = 0; i < argc; i++) { if (dbn >= MAX_DBOX_ENTRIES) { fprintf(stderr,"Too many buttons in dialog_box!\n" "Tweak MAX_DBOX_ENTRIES\n"); exit(212); } db_entry[dbn].type = (short) va_arg(ap, int); db_entry[dbn].retval = (short) va_arg(ap, int); if (db_entry[dbn].type == 0) { /* Text strings: Chop a paragraph into individual lines.*/ char * newline; working_str = va_arg(ap, char *); do { newline = (char *)strchr(working_str,'\n'); if (newline) { int linelen = newline - working_str; db_entry[dbn].text = (char *)lcalloc(1 + linelen); strncpy(db_entry[dbn].text,working_str,linelen); db_entry[dbn].text[linelen] = '\0'; working_str = (newline + 1) != '\0' ? newline + 1 : NULL; } else { db_entry[dbn].text = (char *)lcalloc(1 + strlen(working_str)); strncpy(db_entry[dbn].text,working_str,strlen(working_str)); db_entry[dbn].text[strlen(working_str)] = '\0'; working_str = NULL; } db_entry[dbn].type = 0; db_entry[dbn].retval = 0; db_rect[dbn].w = (strlen(db_entry[dbn].text) * CHAR_WIDTH); db_rect[dbn].h = CHAR_HEIGHT; if (db_rect[dbn].w > db_longest_line) db_longest_line = db_rect[dbn].w; ln++; dbn++; } while ((working_str != NULL) && (strlen(working_str) >= 1)); } else { db_entry[dbn].text = va_arg(ap, char *); db_rect[dbn].w = ((strlen(db_entry[dbn].text) * CHAR_WIDTH) + (BUTTON_BORDER * 2)); db_rect[dbn].h = (CHAR_HEIGHT + (BUTTON_BORDER * 2)); db_longest_button += db_rect[dbn].w; bn++; dbn++; } } va_end(ap); /* figure out how high and wide the box needs to be */ text_window.h = ((ln * (CHAR_HEIGHT + DB_V_SPACE)) + BUTTON_HEIGHT + DB_V_SPACE); if ((db_longest_button + (bn * BUTTON_MIN_SPACING)) > (db_longest_line + LINE_MIN_SPACING)) { text_window.w = (db_longest_button + (bn * BUTTON_MIN_SPACING)); } else { text_window.w = (db_longest_line + LINE_MIN_SPACING); } /* Determine button spacing; add some extra in front and back */ bs = (text_window.w - db_longest_button) / bn; bse = ((text_window.w - db_longest_line) % bn) / 2; /* Position the buttons and lines */ for (i = 0; i < dbn; i++) { if (db_entry[i].type) { /* Buttons */ if (db_last_button == -1) db_rect[i].x = ((bs + bse) / 2) - BUTTON_BORDER; else db_rect[i].x = ((db_rect[db_last_button].x + db_rect[db_last_button].w + bs) - BUTTON_BORDER); db_rect[i].y = ((ln * (CHAR_HEIGHT + DB_V_SPACE) + DB_V_SPACE) - BUTTON_BORDER); db_last_button = i; } else { /* Lines */ db_rect[i].x = ((text_window.w - db_rect[i].w) / 2); db_rect[i].y = (i * (CHAR_HEIGHT + DB_V_SPACE)); } } /* Figure out window size */ dialog_window.w = (text_window.w + BORDER_SIZE*2); dialog_window.h = (text_window.h + BORDER_SIZE*2); main_handle = mouse_register(&scr.client_win,&main_handler); text_handle = mouse_register(&text_window,&text_handler); dialog_refresh(); db_return_value = 0; /* Wait for the user to click on it or press an appropriate key */ /* Mouse clicks arrive from the mouse handler and set db_return_value */ while (!db_return_value) { #ifndef LC_X11 lc_usleep (1000); /* call_wait_event does this for X11 */ #endif #ifdef LC_X11 call_wait_event (); key = x_key_value; x_key_value = 0; #elif defined (WIN32) HandleMouse (); key = GetKeystroke (); #else mouse_update (); key = vga_getkey (); #endif if (key == 0) continue; if (key == 10 || key == 13 || key == ' ') /* default button */ for (i = 0; i <= dbn; i++) { if (db_entry[i].type == 2) { dialog_close(db_entry[i].retval); break; } } else for (i = 0; i <= dbn; i++) { if (key == db_entry[i].retval) { dialog_close(key); break; } } } return (db_return_value); } void dialog_refresh(void) { int i; /* Line, Button incrementors */ if (!db_up) return; /* Determine screen position */ dialog_window.x = (scr.client_w / 2) - (dialog_window.w / 2); dialog_window.y = (scr.client_h / 2) - (dialog_window.h / 2); text_window.x = dialog_window.x + BORDER_SIZE; text_window.y = dialog_window.y + BORDER_SIZE; hide_mouse(); if (screen_refreshing && db_screen_fresh) { free(db_screen_buffer); db_screen_fresh = 0; } if (!db_screen_fresh) { db_screen_buffer = (char *)lcalloc(dialog_window.w * dialog_window.h); Fgl_getrect(&dialog_window,db_screen_buffer); db_screen_fresh = 1; }; /* Draw the border, and fill the background */ draw_bezel(dialog_window,BORDER_SIZE,color); Fgl_fillbox(text_window.x,text_window.y,text_window.w,text_window.h,color); #ifdef USE_EXPANDED_FONT gl_setwritemode (WRITEMODE_MASKED | FONT_EXPANDED); #else Fgl_setfontcolors (color, TEXT_FG_COLOUR); #endif /* Loop calculating line position, and drawing the line */ for (i = 0; i < dbn; i++) { if (db_entry[i].type) { Fgl_fillbox(db_rect[i].x + text_window.x, db_rect[i].y + text_window.y, db_rect[i].w, db_rect[i].h, white(0)); } Fgl_write(db_rect[i].x + text_window.x + BUTTON_BORDER, db_rect[i].y + text_window.y + BUTTON_BORDER, db_entry[i].text); } #ifdef USE_EXPANDED_FONT gl_setwritemode (WRITEMODE_OVERWRITE | FONT_EXPANDED); #else Fgl_setfontcolors (TEXT_BG_COLOUR, TEXT_FG_COLOUR); #endif redraw_mouse(); } /* dialog_close: close the mouse handle and remember we closed it; save the results; put the old screen back up and remember that too. */ void dialog_close(int return_value) { int i; mouse_unregister(main_handle); mouse_unregister(text_handle); db_up = 0; db_return_value = return_value; for (i = 0; i < dbn; i++) if (db_entry[i].type == DB_PARA) free(db_entry[i].text); if (db_screen_fresh) { Fgl_putrect(&dialog_window,db_screen_buffer); free(db_screen_buffer); db_screen_fresh = 0; } db_flag = 0; } lincity-1.13.1/lcsvga.c0000644000175000017500000001621407740174122011624 00000000000000/* ---------------------------------------------------------------------- * * lcsvga.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "mouse.h" #include "engglobs.h" #include "engine.h" #include "screen.h" #include "lcintl.h" #include "fileutil.h" unsigned char mouse_pointer[] = { 255, 255, 255, 255, 1, 1, 1, 1, 255, 1, 1, 1, 255, 255, 1, 1, 255, 1, 255, 255, 255, 1, 255, 1, 255, 1, 255, 1, 1, 255, 1, 1, 1, 255, 255, 1, 1, 1, 255, 1, 1, 255, 1, 255, 1, 1, 1, 1, 1, 1, 255, 1, 255, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }; unsigned char under_mouse_pointer[8 * 8]; static int vga_mode = -1; void lc_mouse_handler(int button, int dx, int dy, int dz, int drx, int dry, int drz); #if defined (commentout) void lc_mouse_handler(int button, int dx, int dy); #endif /* ---------------------------------------------------------------------- * * Profiling routines * ---------------------------------------------------------------------- */ #ifdef CS_PROFILE void FPgl_write (int a, int b, char *s) { gl_write (a, b, s); } void FPgl_getbox (int a, int b, int c, int d, void *e) { gl_getbox (a, b, c, d, e); } void FPgl_putbox (int a, int b, int c, int d, void *e) { gl_putbox (a, b, c, d, e); } void FPgl_fillbox (int a, int b, int c, int d, int e) { gl_fillbox (a, b, c, d, e); } void FPgl_hline (int a, int b, int c, int d) { gl_hline (a, b, c, d); } void FPgl_line (int a, int b, int c, int d, int e) { gl_line (a, b, c, d, e); } void FPgl_setpixel (int a, int b, int c) { gl_setpixel (a, b, c); } #endif /* ---------------------------------------------------------------------- * * Mouse routines * ---------------------------------------------------------------------- */ void mouse_setup(void) { int m; m = mouse_init("/dev/mouse", vga_getmousetype(), MOUSE_DEFAULTSAMPLERATE); mouse_setxrange(0, 640 - 1); mouse_setyrange(0, 480 - 1); mouse_setwrap(MOUSE_NOWRAP); if (m != 0) { do_error("Can't initialise mouse"); } cs_mouse_x = 0; cs_mouse_y = 0; cs_mouse_button = 0; cs_mouse_xmax = 640 - 1; cs_mouse_ymax = 480 - 1; /* GCS -- This is meant to fix the upper left cursor problem, * but doesnt. May 11, 2003 */ mox = 1; moy = 1; Fgl_getbox(mox, moy, 8, 8, under_mouse_pointer); mouse_seteventhandler(lc_mouse_handler); } void mouse_set_range (int width, int height) { debug_printf ("setting mouse range: %d %d\n", width, height); mouse_setxrange(0, width - 1); mouse_setyrange(0, height - 1); cs_mouse_xmax = width - 1; cs_mouse_ymax = height - 1; } void set_vga_mode (void) { /* If vga_mode is not set by command line, use vga_getdefaultmode() to get mode. Supported modes are 10, 11, 12 or 13. */ if (vga_mode == -1) { vga_mode = vga_getdefaultmode(); if (vga_mode > 13 || vga_mode < 10) vga_mode = 10; } vga_setmode (vga_mode); gl_setcontextvga (vga_mode); init_mouse(); switch (vga_mode) { case 10: resize_geometry (640,480); break; case 11: resize_geometry (800,600); break; case 12: resize_geometry (1024,768); break; case 13: resize_geometry (1280,1024); break; default: do_error ("illegal vga mode"); } } void lc_mouse_handler(int button, int dx, int dy, int dz, int drx, int dry, int drz) { static int old_mouse_button = 0; int mouse_button_change = old_mouse_button ^ button; if (mouse_button_change & MOUSE_LEFTBUTTON) { if (button & MOUSE_LEFTBUTTON) { cs_mouse_handler(LC_MOUSE_LEFTBUTTON | LC_MOUSE_PRESS, dx, dy); } else { cs_mouse_handler(LC_MOUSE_LEFTBUTTON | LC_MOUSE_RELEASE, dx, dy); } dx = dy = 0; } if (mouse_button_change & MOUSE_MIDDLEBUTTON) { if (button & MOUSE_MIDDLEBUTTON) { cs_mouse_handler(LC_MOUSE_MIDDLEBUTTON | LC_MOUSE_PRESS, dx, dy); } else { cs_mouse_handler(LC_MOUSE_MIDDLEBUTTON | LC_MOUSE_RELEASE, dx, dy); } dx = dy = 0; } if (mouse_button_change & MOUSE_RIGHTBUTTON) { if (button & MOUSE_RIGHTBUTTON) { cs_mouse_handler(LC_MOUSE_RIGHTBUTTON | LC_MOUSE_PRESS, dx, dy); } else { cs_mouse_handler(LC_MOUSE_RIGHTBUTTON | LC_MOUSE_RELEASE, dx, dy); } dx = dy = 0; } if (dx || dy) { cs_mouse_handler(0, dx, dy); } old_mouse_button = button; } int lc_get_keystroke (void) { return vga_getkey (); } /* ---------------------------------------------------------------------- * * Other routines * ---------------------------------------------------------------------- */ void parse_args (int argc, char **argv) { int option; extern char *optarg; /* GCS FIX: Need to print usage and exit when illegal option spec'd */ while ((option = getopt (argc, argv, "wR:G:B:m:")) != EOF) { switch (option) { case 'm': sscanf (optarg, "%d", &vga_mode); if (vga_mode > 13 || vga_mode < 10) vga_mode = -1; break; case 'w': gamma_correct_red = GAMMA_CORRECT_RED; gamma_correct_green = GAMMA_CORRECT_GREEN; gamma_correct_blue = GAMMA_CORRECT_BLUE; break; case 'R': sscanf (optarg, "%f", &gamma_correct_red); break; case 'G': sscanf (optarg, "%f", &gamma_correct_green); break; case 'B': sscanf (optarg, "%f", &gamma_correct_blue); break; } } } void HandleError (char *description, int degree) { fprintf (stderr, _("An error has occurred. The description is below...\n")); fprintf (stderr, "%s\n", description); if (degree == FATAL) { fprintf (stderr, _("Program aborting...\n")); exit (-1); } } void init_mouse (void) { mouse_setup (); } void setcustompalette (void) { char s[100]; int i, n, r, g, b, flag[256]; FILE *inf; Palette pal; for (i = 0; i < 256; i++) flag[i] = 0; if ((inf = fopen (colour_pal_file, "r")) == 0) { printf ("The colour palette file <%s>... ", colour_pal_file); do_error ("Can't find it."); } while (feof (inf) == 0) { fgets (s, 99, inf); if (sscanf (s, "%d %d %d %d", &n, &r, &g, &b) == 4) { pal.color[n].red = r; pal.color[n].green = g; pal.color[n].blue = b; flag[n] = 1; } } fclose (inf); for (i = 0; i < 256; i++) { if (flag[i] == 0) { printf ("Colour %d not loaded\n", i); do_error ("Can't continue"); } pal.color[i].red = (unsigned char) ((pal.color[i].red * (1 - gamma_correct_red)) + (64 * sin ((float) pal.color[i].red * M_PI / 128)) * gamma_correct_red); pal.color[i].green = (unsigned char) ((pal.color[i].green * (1 - gamma_correct_green)) + (64 * sin ((float) pal.color[i].green * M_PI / 128)) * gamma_correct_green); pal.color[i].blue = (unsigned char) ((pal.color[i].blue * (1 - gamma_correct_blue)) + (64 * sin ((float) pal.color[i].blue * M_PI / 128)) * gamma_correct_blue); } gl_setpalette (&pal); } lincity-1.13.1/lcx11.c0000644000175000017500000006512310071465203011272 00000000000000/* ---------------------------------------------------------------------- * * lcx11.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include #include "lcstring.h" #include "lcintl.h" #include "fileutil.h" #include "lclib.h" #include #include #include #include #include #include "lin-city.h" #include "lctypes.h" #include "cliglobs.h" #include "lcx11.h" #include "pixmap.h" #include "mouse.h" #include "screen.h" #ifndef M_PI #define M_PI 3.14159265358979323846 #endif #define USE_IMAGES 1 #define DEBUG_X11_MOUSE #undef DEBUG_X11_MOUSE void set_pointer_confinement (void) { if (confine_flag) { XGrabPointer (display.dpy, display.win, 0, ButtonPressMask | ButtonReleaseMask | PointerMotionMask, GrabModeAsync, GrabModeAsync, display.win, None, CurrentTime); } else { XUngrabPointer (display.dpy, CurrentTime); } } int confine_pointer (int x, int y, int w, int h) { if (display.pointer_confined) return 0; display.confinewin = XCreateSimpleWindow(display.dpy, display.win, 10, 10, w, h, 0, 0, 0); XMapWindow(display.dpy, display.confinewin); XGrabPointer(display.dpy, display.root, 1, ButtonPressMask | ButtonReleaseMask | PointerMotionMask, GrabModeAsync, GrabModeAsync, display.confinewin, None, CurrentTime); display.pointer_confined = 1; return 1; } void unconfine_pointer (void) { XUngrabPointer(display.dpy, CurrentTime); XDestroyWindow(display.dpy, display.confinewin); display.pointer_confined = 0; } void setcustompalette (void) { char s[100]; int n, r, g, b, i, flag[256]; XColor pal[256]; FILE *inf; for (i = 0; i < 256; i++) flag[i] = 0; if ((inf = fopen (colour_pal_file, "r")) == 0) HandleError ("Can't find the colour pallet file", FATAL); while (feof (inf) == 0) { fgets (s, 99, inf); if (sscanf (s, "%d %d %d %d", &n, &r, &g, &b) == 4) { pal[n].red = r; pal[n].green = g; pal[n].blue = b; pal[n].flags = DoRed | DoGreen | DoBlue; pal[n].pixel = colour_table[n]; /* ??? */ flag[n] = 1; } } fclose (inf); for (i = 0; i < 256; i++) { if (flag[i] == 0) { printf ("Colour %d not loaded\n", i); HandleError ("Can't continue", FATAL); } pal[i].red = (unsigned char) ((pal[i].red * (1 - gamma_correct_red)) + (64 * sin ((float) pal[i].red * M_PI / 128)) * gamma_correct_red); pal[i].green = (unsigned char) ((pal[i].green * (1 - gamma_correct_green)) + (64 * sin ((float) pal[i].green * M_PI / 128)) * gamma_correct_green); pal[i].blue = (unsigned char) ((pal[i].blue * (1 - gamma_correct_blue)) + (64 * sin ((float) pal[i].blue * M_PI / 128)) * gamma_correct_blue); } do_setcustompalette (pal); } void open_setcustompalette (XColor * inpal) { do_setcustompalette (inpal); } void do_setcustompalette (XColor * inpal) { int i, n, me = 0, flag[256], vid; int depth; long unsigned int plane_masks[3]; XColor pal[256]; int writeable_p; display.cmap = XDefaultColormap (display.dpy, display.screen); depth = DefaultDepth (display.dpy, display.screen); /* Decide, if the colormap is writable */ { Visual *visual = DefaultVisual (display.dpy, display.screen); #if defined(__cplusplus) || defined(c_plusplus) int visual_class = visual->c_class; #else int visual_class = visual->class; #endif writeable_p = (visual_class == PseudoColor || visual_class == GrayScale); } if (writeable_p) { if (XAllocColorCells (display.dpy, display.cmap, 0 ,plane_masks, 0, colour_table, 256) == 0) { me = (*DefaultVisual (display.dpy, display.screen)).map_entries; vid = (*DefaultVisual (display.dpy, display.screen)).visualid; display.cmap = XCreateColormap (display.dpy, display.win ,DefaultVisual (display.dpy, display.screen) /* ,PseudoColor */ ,AllocNone); if (me == 256 && depth != 24) { if (XAllocColorCells (display.dpy, display.cmap, 0 ,plane_masks, 0, colour_table, 256) != 0) { /* printf ("Allocated 256 cells\n"); */ } else { printf ("Couldn't allocate 256 cells\n"); } } else for (i = 0; i < 256; i++) colour_table[i] = i; } if (!display.cmap) HandleError ("No default colour map", FATAL); } for (i = 0; i < 256; i++) flag[i] = 0; for (n = 0; n < 256; n++) { pal[n].red = inpal[n].red << 10; pal[n].green = inpal[n].green << 10; pal[n].blue = inpal[n].blue << 10; pal[n].flags = DoRed | DoGreen | DoBlue; if (writeable_p) pal[n].pixel = colour_table[n]; else { if (XAllocColor (display.dpy ,display.cmap, &(pal[n])) == 0) HandleError ("alloc colour failed" ,FATAL); colour_table[n] = pal[n].pixel; XSetForeground (display.dpy ,display.pixcolour_gc[n] ,colour_table[n]); } flag[n] = 1; } if (writeable_p) { XStoreColors (display.dpy, display.cmap, pal, 256); XFlush (display.dpy); } XSetWindowColormap (display.dpy, display.win, display.cmap); } #if defined (commentout) void initfont () { int i; FILE *finf; if ((finf = fopen (fontfile, "r")) == 0) HandleError ("Can't open the font file", FATAL); for (i = 0; i < 256 * 8; i++) myfont[i] = fgetc (finf); fclose (finf); } #endif void Fgl_setfontcolors (int bg, int fg) { text_fg = fg; text_bg = bg; } void Fgl_setfont (int fw, int fh, void *fp) { open_font = fp; open_font_height = fh; } void parse_xargs (int argc, char **argv, char **geometry) { int option; extern char *optarg; #ifdef ALLOW_PIX_DOUBLING char* option_string = "vbrndg:wR:G:B:D"; #else char* option_string = "vbrng:wR:G:B:D"; #endif while ((option = getopt (argc, argv, option_string)) != EOF) { switch (option) { case 'v': verbose = TRUE; break; case 'g': *geometry = optarg; break; #ifdef ALLOW_PIX_DOUBLING case 'd': pix_double = 1; /* Fall through. We are not allowed a border with pix doubling */ #endif case 'b': borderx = 0; bordery = 0; break; case 'r': borderx = BORDERX; bordery = BORDERY; break; case 'n': no_init_help = TRUE; break; case 'w': gamma_correct_red = GAMMA_CORRECT_RED; gamma_correct_green = GAMMA_CORRECT_GREEN; gamma_correct_blue = GAMMA_CORRECT_BLUE; break; case 'R': sscanf (optarg, "%f", &gamma_correct_red); break; case 'G': sscanf (optarg, "%f", &gamma_correct_green); break; case 'B': sscanf (optarg, "%f", &gamma_correct_blue); break; case 'D': command_line_debug = 1; break; } } if (verbose) printf (_("Version %s\n"), VERSION); if (!(display.dpy = XOpenDisplay (display.dname))) { printf (" Can't open the dispay!\n"); HandleError ("Cannot open display.\n", FATAL); exit (-1); } /* Record the screen number and root window. */ display.screen = DefaultScreen (display.dpy); display.root = RootWindow (display.dpy, display.screen); display.winW = WINWIDTH + borderx * 2 + pix_double * WINWIDTH; display.winH = WINHEIGHT + bordery * 2 + pix_double * WINHEIGHT; winX = (DisplayWidth (display.dpy, display.screen) - display.winW) / 2; winY = (DisplayHeight (display.dpy, display.screen) - display.winH) / 2; if (*geometry != NULL) XParseGeometry (*geometry, &winX, &winY, &display.winW, &display.winH); } void Create_Window (char *geometry) { short q; Visual *vid; XSetWindowAttributes xswa; XSizeHints sizehint; XWMHints wmhints; int depth; unsigned char wname[256]; /* Window Name */ unsigned long vmask = CWEventMask | CWBackPixel | CWBackingStore; depth = DefaultDepth (display.dpy, display.screen); xswa.event_mask = 0; xswa.background_pixel = display.bg; xswa.backing_store = Always; debug_printf ("DefaultVisual id=%d bp-rgb=%d map-entries=%d\n", (int) (*DefaultVisual (display.dpy, display.screen)).visualid, (*DefaultVisual (display.dpy, display.screen)).bits_per_rgb, (*DefaultVisual (display.dpy, display.screen)).map_entries); vid = DefaultVisual (display.dpy, display.screen); display.cmap = XDefaultColormap (display.dpy, display.screen); display.win = XCreateWindow (display.dpy, display.root, winX, winY, display.winW, display.winH, 0, depth, InputOutput, /* vid , */ DefaultVisual (display.dpy, display.screen), /* PseudoColor, */ vmask, &xswa); sizehint.x = winX - 100; sizehint.y = winY; sizehint.width = display.winW; sizehint.height = display.winH; sizehint.min_width = display.winW; sizehint.min_height = display.winH; sizehint.max_width = display.winW; sizehint.max_height = display.winH; /* GCS FIX: Be careful about resizing the opening screen */ /* WCK: Fixed. We lock it now, and unlock it after the opening screen. not gorgeous, but it works for now. Still need to clean up.*/ #define NO_RESIZABLE_WINDOWS 1 if (geometry != NULL) { #if defined (NO_RESIZABLE_WINDOWS) sizehint.flags = USPosition | USSize | PMinSize | PMaxSize; #else sizehint.flags = USPosition | USSize | PMinSize; #endif } else { #if defined (NO_RESIZABLE_WINDOWS) sizehint.flags = PPosition | PSize | PMinSize | PMaxSize; #else sizehint.flags = PPosition | PSize | PMinSize; #endif } XSetNormalHints (display.dpy, display.win, &sizehint); display.protocol_atom = XInternAtom (display.dpy, "WM_PROTOCOLS", False); display.kill_atom = XInternAtom (display.dpy, "WM_DELETE_WINDOW", False); /* Title */ sprintf ((char *) wname, _("xlincity, Version %s, " "(Copyright) IJ Peters - copying policy GNU GPL"), VERSION); XChangeProperty (display.dpy, display.win, XA_WM_NAME, XA_STRING, 8, PropModeReplace, wname, strlen ((char *) wname)); /* Window Manager Hints (This is supposed to make input work.) */ wmhints.flags = InputHint; wmhints.input = True; XSetWMHints (display.dpy, display.win, &wmhints); /* GCS - 2003/08/15 - Cygwin doesn't generate the MapEvent unless the mask enabled before XMapWindow is called. Therefore, XSelectInput needs to be called before XMapWindow */ XSelectInput (display.dpy, display.win, KeyPressMask | ButtonPressMask | ButtonReleaseMask | ExposureMask | StructureNotifyMask); XMapWindow (display.dpy, display.win); for (q = 0; q < 256; q++) { display.pixcolour_gc[q] = XCreateGC (display.dpy ,display.win, 0, NULL); XSetForeground (display.dpy, display.pixcolour_gc[q], q); XSetBackground (display.dpy, display.pixcolour_gc[q], display.bg); XSetGraphicsExposures (display.dpy, display.pixcolour_gc[q], False); } } void unlock_window_size (void) { XSizeHints sizehint; sizehint.x = winX - 100; sizehint.y = winY; sizehint.width = display.winW; sizehint.height = display.winH; sizehint.min_width = display.winW; sizehint.min_height = display.winH; sizehint.max_width = display.winW; sizehint.max_height = display.winH; sizehint.flags = USPosition | USSize | PMinSize; XSetNormalHints (display.dpy, display.win, &sizehint); } void HandleError (char *description, int degree) { fprintf (stderr, _("An error has occurred. The description is below...\n")); fprintf (stderr, "%s\n", description); if (degree == FATAL) { fprintf (stderr, _("Program aborting...\n")); exit (-1); } } void Fgl_setpixel (int x, int y, int col) { int i; if (clipping_flag) if (x < xclip_x1 || x > xclip_x2 || y < xclip_y1 || y > xclip_y2) return; col &= 0xff; i = pixmap_index(x,y); #ifdef ALLOW_PIX_DOUBLING if (pix_double) { if ((int) pixmap[i] != col) { pixmap[i] = (unsigned char) col; XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], x * 2, y * 2, 2, 2); } } else { #endif if ((int) pixmap[i] != col) { pixmap[i] = (unsigned char) col; XDrawPoint (display.dpy, display.win, display.pixcolour_gc[col], x + borderx, y + bordery); } #ifdef ALLOW_PIX_DOUBLING } #endif } int Fgl_getpixel (int x, int y) { return pixmap_getpixel (x, y); } void Fgl_hline (int x1, int y1, int x2, int col) { col &= 0xff; pixmap_hline (x1, y1, x2, col); #ifdef ALLOW_PIX_DOUBLING if (pix_double) XFillRectangle (display.dpy, display.win ,display.pixcolour_gc[col], x1 * 2, y1 * 2 ,(x2 - x1) * 2 + 1, 2); else #endif XDrawLine (display.dpy, display.win ,display.pixcolour_gc[col], x1 + borderx ,y1 + bordery, x2 + borderx, y1 + bordery); } void Fgl_line (int x1, int y1, int dummy, int y2, int col) /* vertical lines only. */ { col &= 0xff; pixmap_vline (x1, y1, y2, col); #ifdef ALLOW_PIX_DOUBLING if (pix_double) XFillRectangle (display.dpy, display.win ,display.pixcolour_gc[col], x1 * 2, y1 * 2 ,2, (y2 - y1) * 2 + 1); else #endif XDrawLine (display.dpy, display.win ,display.pixcolour_gc[col], x1 + borderx ,y1 + bordery, x1 + borderx, y2 + bordery); } void Fgl_write (int x, int y, char *s) { int i; for (i = 0; i < (int) (strlen (s)); i++) my_x_putchar (x + i * 8, y, s[i]); } void open_write (int x, int y, char *s) { int i; for (i = 0; i < (int) (strlen (s)); i++) open_x_putchar (x + i * 8, y, s[i]); } void my_x_putchar (int xx, int yy, unsigned char c) { int x, y, b; for (y = 0; y < 8; y++) { b = main_font[c * 8 + y]; for (x = 0; x < 8; x++) { if ((b & 0x80) == 0) Fgl_setpixel (xx + x, yy + y, text_bg); else Fgl_setpixel (xx + x, yy + y, text_fg); b = b << 1; } } } void open_x_putchar (int xx, int yy, unsigned char c) { int x, y, b; for (y = 0; y < open_font_height; y++) { b = open_font[c * open_font_height + y]; for (x = 0; x < 8; x++) { if ((b & 0x80) == 0) Fgl_setpixel (xx + x, yy + y, text_bg); else Fgl_setpixel (xx + x, yy + y, text_fg); b = b << 1; } } } void Fgl_fillbox (int x1, int y1, int w, int h, int col) { if (clipping_flag) { if (x1 < xclip_x1) x1 = xclip_x1; if (x1 + w - 1 > xclip_x2) w = xclip_x2 - x1 + 1; if (y1 < xclip_y1) y1 = xclip_y1; if (y1 + h - 1 > xclip_y2) h = xclip_y2 - y1 + 1; } col &= 0xff; pixmap_fillbox (x1, y1, w, h, col); #ifdef ALLOW_PIX_DOUBLING if (pix_double) XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], x1 * 2, y1 * 2, w * 2, h * 2); else #endif XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], x1 + borderx, y1 + bordery, w, h); } #ifdef USE_IMAGES /* * Instead of transfering a pixmap pixel by pixel, it is much more * efficient to build an XImage in core and send it in one piece off * to the X server. * * -- GB. */ static int clamp (int x, int low, int high) /* clamp x to the interval [low, high] */ { if (x < low) x = low; else if (x > high) x = high; return x; } /* * Copy the the sub-image (src_x, src_y, w, h) to the screen at * (x0 + x1, y0 + y1). * `src' is a pointer to the array of pixels. * `bpl' is the width of that array. * No clipping performed. */ void Fgl_putbox_low (Drawable dst, int x0, int y0, int x1, int y1, int w, int h, unsigned char *src, int bpl, int src_x, int src_y) { XImage *im; int x, y; #ifdef ALLOW_PIX_DOUBLING const int pmult = pix_double ? 2 : 1; #else const int pmult = 1; #endif im = XCreateImage (display.dpy, 0, /* display and visual */ DefaultDepth (display.dpy, display.screen), /* depth */ ZPixmap, /* format */ 0, /* offset */ 0, /* data */ pmult * w, pmult * h, /* width and height */ 32, 0); /* bitmap_pad and bytes_per_line */ /* XXX: assert is not the right way to check for errors - wck */ assert (im != 0); im->data = (char *) malloc (im->bytes_per_line * pmult * h); assert (im->data != 0); src += src_x + src_y * bpl; if (pmult == 1) { for (y = 0; y < h; y++) for (x = 0; x < w; x++) XPutPixel (im, x, y, colour_table[src[x + y * bpl]]); } else { for (y = 0; y < h; y++) for (x = 0; x < w; x++) { unsigned long c = colour_table[src[x + y * bpl]]; XPutPixel (im, 2 * x + 0, 2 * y + 0, c); XPutPixel (im, 2 * x + 0, 2 * y + 1, c); XPutPixel (im, 2 * x + 1, 2 * y + 0, c); XPutPixel (im, 2 * x + 1, 2 * y + 1, c); } } if (dst == display.win) { pixmap_putbox (src, 0, 0, bpl, x1, y1, w, h); } XPutImage (display.dpy, dst, display.pixcolour_gc[0], im, 0, 0, x0 + pmult * x1, y0 + pmult * y1, pmult * w, pmult * h); XDestroyImage (im); } void Fgl_putbox (int x, int y, int w, int h, void *buf) { int c_x0 = clipping_flag ? xclip_x1 : 0; int c_x1 = clipping_flag ? xclip_x2 : display.winW - 1; int c_y0 = clipping_flag ? xclip_y1 : 0; int c_y1 = clipping_flag ? xclip_y2 : display.winH - 1; int x1 = clamp (x, c_x0, c_x1); int y1 = clamp (y, c_y0, c_y1); int x2 = clamp (x + w, c_x0, c_x1 + 1); int y2 = clamp (y + h, c_y0, c_y1 + 1); if (x2 > x1 && y2 > y1) Fgl_putbox_low (display.win, borderx, bordery, x1, y1, x2 - x1, y2 - y1, (unsigned char *) buf, w, x1 - x, y1 - y); } #else void Fgl_putbox (int x1, int y1, int w, int h, void *buf) { unsigned char *b; b = (unsigned char *) buf; int x, y; for (y = y1; y < y1 + h; y++) for (x = x1; x < x1 + w; x++) Fgl_setpixel (x, y, *(b++)); } #endif void Fgl_getbox (int x1, int y1, int w, int h, void *buf) { unsigned char *b; int x, y; b = (unsigned char *) buf; for (y = y1; y < y1 + h; y++) for (x = x1; x < x1 + w; x++) *(b++) = (unsigned char) Fgl_getpixel (x, y); } void HandleEvent (XEvent * event) { XEvent loop_ev; /* for clearing the queue of events */ switch (event->type) { case KeyPress: { XKeyEvent *key_event = (XKeyEvent *) event; char buf[128]; KeySym ks; XComposeStatus status; XLookupString (key_event, buf, 128, &ks, &status); x_key_shifted = ShiftMask & key_event->state; x_key_value = buf[0]; switch (ks) { case XK_Left: x_key_value = 1; break; case XK_Down: x_key_value = 2; break; case XK_Up: x_key_value = 3; break; case XK_Right: x_key_value = 4; break; #if defined (commentout) /* GCS: What the hell is this??? */ case 'C': if (!confine_pointer(-10,-10,200,200)) unconfine_pointer(); break; #endif case XK_BackSpace: case XK_Delete: x_key_value = 127; break; } } break; case MotionNotify: { XMotionEvent *ev = (XMotionEvent *) event; while (XCheckMaskEvent(display.dpy,PointerMotionMask,&loop_ev)) { ev = (XMotionEvent *) &loop_ev; } #ifdef DEBUG_X11_MOUSE printf("pointer motion event\n"); #endif if (ev->state & Button2Mask) drag_screen(); } break; case ButtonPress: { XButtonEvent *ev = (XButtonEvent *) event; if ((ev->state & ShiftMask) != 0) cs_mouse_shifted = 1; else cs_mouse_shifted = 0; #ifdef DEBUG_X11_MOUSE printf("button press: ev->button = %d\n",ev->button); #endif #if defined (commentout) mouse_button = ev->button; #endif switch (ev->button) { case Button1: mouse_button = LC_MOUSE_LEFTBUTTON | LC_MOUSE_PRESS; break; case Button2: mouse_button = LC_MOUSE_MIDDLEBUTTON | LC_MOUSE_PRESS; break; case Button3: mouse_button = LC_MOUSE_RIGHTBUTTON | LC_MOUSE_PRESS; break; /* Wheel mouse support Move further for Shift (in main.c: process_keystrokes() ), left to right instead of up and down for Control */ case Button4: /* Up (3); Left (1) if Control */ x_key_shifted = ShiftMask & ev->state; x_key_value = (ControlMask & ev->state) ? 1 : 3; break; case Button5: /* Down (4); Right (2) if control */ x_key_shifted = ShiftMask & ev->state; x_key_value = (ControlMask & ev->state) ? 4 : 2; break; /* XFree86-3 only supports 5 buttons, no Button6 or higher */ } cs_mouse_handler (mouse_button, 0, 0); mouse_button = 0; } break; case ButtonRelease: { XButtonEvent *ev = (XButtonEvent *) event; mouse_button = ev->button; #ifdef DEBUG_X11_MOUSE printf("button release: ev->button = %d\n",ev->button); #endif switch (ev->button) { case Button1: mouse_button = LC_MOUSE_LEFTBUTTON | LC_MOUSE_RELEASE; break; case Button2: mouse_button = LC_MOUSE_MIDDLEBUTTON | LC_MOUSE_RELEASE; break; case Button3: mouse_button = LC_MOUSE_RIGHTBUTTON | LC_MOUSE_RELEASE; break; } cs_mouse_handler (mouse_button, 0, 0); mouse_button = 0; } break; case Expose: { XExposeEvent *ev = (XExposeEvent *) event; int gx1,gy1,gx2,gy2; gx1 = ev->x; gy1 = ev->y; gx2 = ev->x + ev->width; gy2 = ev->y + ev->height; /* Coalesce waiting exposes into single redraw */ while (XCheckMaskEvent(display.dpy,ExposureMask,&loop_ev)) { ev = (XExposeEvent *) &loop_ev; gx1 = min_int (gx1,ev->x); gy1 = min_int (gy1,ev->y); gx2 = max_int (gx2,ev->x + ev->width); gy2 = max_int (gy2,ev->y + ev->height); } if (suppress_next_expose) { suppress_next_expose = 0; break; } refresh_screen (gx1,gy1,gx2,gy2); } break; case ConfigureNotify: { XConfigureEvent *ev = (XConfigureEvent *) event; while (XCheckTypedEvent(display.dpy, ConfigureNotify, &loop_ev)) { ev = (XConfigureEvent *) &loop_ev; } resize_geometry (ev->width, ev->height); } break; } //fprintf(stderr,"Handler fell through, event->type = %d\n",event->type); } #undef DEBUG_X11_MOUSE void refresh_screen (int x1, int y1, int x2, int y2) /* bounds of refresh area */ { #ifdef USE_IMAGES int wx1 = x1-borderx < 0 ? 0 : x1-borderx; int wy1 = y1-bordery < 0 ? 0 : y1-bordery; int wx2 = x2-borderx > pixmap_width ? pixmap_width : x2-borderx; int wy2 = y2-bordery > pixmap_height ? pixmap_height : y2-bordery; if (wx2-wx1 <= 0 || wy2-wy1 <= 0) { /* Note: the "< 0" part can happen for when x1 is in the right border, or when y1 is in the left border. */ return; } Fgl_putbox_low (display.win, borderx, bordery, wx1, wy1, wx2 - wx1, wy2 - wy1, (unsigned char*) pixmap, pixmap_width, wx1, wy1); #else int x, y; #ifdef ALLOW_PIX_DOUBLING if (pix_double) { for (y = y1; y < y2; y++) for (x = x1; x < x2; x++) XFillRectangle (display.dpy, display.win ,display.pixcolour_gc[*(pixmap + x + y * (640 + BORDERX)) & 0xff], x * 2, y * 2, 2, 2); } else { #endif for (y = y1; y < y2; y++) for (x = x1; x < x2; x++) XDrawPoint (display.dpy, display.win ,display.pixcolour_gc[*(pixmap + x + y * (640 + BORDERX)) & 0xff], x, y); #ifdef ALLOW_PIX_DOUBLING } #endif /* ALLOW_PIX_DOUBLING */ #endif /* USE_IMAGES */ } void Fgl_enableclipping (void) { clipping_flag = 1; } void Fgl_setclippingwindow (int x1, int y1, int x2, int y2) { xclip_x1 = x1; xclip_y1 = y1; xclip_x2 = x2; xclip_y2 = y2; } void Fgl_disableclipping (void) { clipping_flag = 0; } void do_call_event (int wait) { int dummy_int, x, y; Window dummy_win; XEvent xev; if (XPending (display.dpy)) { XNextEvent (display.dpy, &xev); HandleEvent (&xev); } else if (wait) lc_usleep (1000); /* WCK: this could possibly be better handled with a MotionEvent */ XQueryPointer (display.dpy, display.win, &dummy_win, &dummy_win ,&dummy_int, &dummy_int, &x, &y, (unsigned int *) &dummy_int); #ifdef ALLOW_PIX_DOUBLING if (pix_double) { x /= 2; y /= 2; } else { #endif x -= borderx; y -= bordery; #ifdef ALLOW_PIX_DOUBLING } #endif if (x != cs_mouse_x || y != cs_mouse_y) cs_mouse_handler (0, x - cs_mouse_x, y - cs_mouse_y); /* WCK: no longer passing mouse_button, 0 used instead. Presses are handled in the event loop */ } void call_event (void) { do_call_event (0); } void call_wait_event (void) { do_call_event (1); } int lc_get_keystroke (void) { int q; call_event (); q = x_key_value; x_key_value = 0; return q; } /* init_full_mouse is called just before the main client loop. */ /* XXX: This needs a much better name */ /* GCS: Yes it does, b/c it means something different for svgalib */ void init_x_mouse (void) { XSelectInput (display.dpy, display.win, KeyPressMask | ButtonPressMask | ButtonReleaseMask | ExposureMask | StructureNotifyMask | ButtonMotionMask); } void draw_border (void) { int col = TEXT_BG_COLOUR & 0xff; if (borderx > 0) { XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], 0, bordery, borderx, display.winH - 2*bordery); XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], display.winW - borderx, bordery, borderx, display.winH - 2*bordery); } if (bordery > 0) { XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], 0, 0, display.winW, bordery); XFillRectangle (display.dpy, display.win, display.pixcolour_gc[col], 0, display.winH - bordery, display.winW, bordery); } } #ifdef USE_PIXMAPS void init_icon_pixmap (short type) { unsigned char *g; #if !defined USE_IMAGES int x, y; #endif int grp; grp = get_group_of_type(type); #ifdef ALLOW_PIX_DOUBLING if (pix_double) { icon_pixmap[type] = XCreatePixmap (display.dpy, display.win, main_groups[grp].size * 16 * 2, main_groups[grp].size * 16 * 2, DefaultDepth (display.dpy, display.screen)); } else { #endif icon_pixmap[type] = XCreatePixmap (display.dpy, display.win, main_groups[grp].size * 16, main_groups[grp].size * 16, DefaultDepth (display.dpy, display.screen)); #ifdef ALLOW_PIX_DOUBLING } #endif g = (unsigned char *) main_types[type].graphic; #ifdef USE_IMAGES Fgl_putbox_low (icon_pixmap[type], 0, 0, 0, 0, main_groups[grp].size * 16, main_groups[grp].size * 16, g, main_groups[grp].size * 16, 0, 0); #else #ifdef ALLOW_PIX_DOUBLING if (pix_double) { for (y = 0; y < main_groups[grp].size * 16; y++) for (x = 0; x < main_groups[grp].size * 16; x++) XFillRectangle (display.dpy, icon_pixmap[type] ,display.pixcolour_gc[*(g++)] ,x * 2, y * 2, 2, 2); } else { #endif for (y = 0; y < main_groups[grp].size * 16; y++) for (x = 0; x < main_groups[grp].size * 16; x++) XDrawPoint (display.dpy, icon_pixmap[type] ,display.pixcolour_gc[*(g++)], x, y); #ifdef ALLOW_PIX_DOUBLING } #endif /* ALLOW_PIX_DOUBLING */ #endif /* USE_IMAGES */ } #endif /* USE_PIXMAPS */ lincity-1.13.1/lclib.c0000644000175000017500000001104510066257332011427 00000000000000/* ---------------------------------------------------------------------- * * screen.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Portions copyright (c) Corey Keasling, 2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include "cliglobs.h" #include "lcintl.h" char* current_month (int current_time) { return _(months[(current_time % NUMOF_DAYS_IN_YEAR) / NUMOF_DAYS_IN_MONTH]); } int current_year (int current_time) { return current_time / NUMOF_DAYS_IN_YEAR; } void format_number5 (char* str, int num) { int num_sign = num >= 0 ? 1 : -1; if (num_sign == 1) { if (num < 99999) { sprintf (str, "%5d", num); } else if (num < 9999999) { sprintf (str, "%4dK", num / 1000); } else { sprintf (str, "%4dM", num / 1000000); } } else { int num_absval = num_sign * num; if (num_absval < 9999) { sprintf (str, "%5d", num); } else if (num_absval < 999999) { sprintf (str, "%4dK", num_sign * (num_absval / 1000)); } else { sprintf (str, "%4dM", num_sign * (num_absval / 1000000)); } } } void num_to_ansi(char * s, size_t size, long num) { int triplets = 0; float numf = (float)num; while (numf > 1000 || numf < -1000) { numf /= 1000; triplets++; } switch(triplets) { case 0: triplets = ' '; break; case 1: triplets = 'k'; break; // kila case 2: triplets = 'm'; break; // mega case 3: triplets = 'g'; break; // giga case 4: triplets = 't'; break; // tera case 5: triplets = 'p'; break; // peta default: triplets = '?'; break; } if (size == 4) { /* to make up for format_pos_number4. Eeewwwwwww. */ if (numf < 10) { snprintf(s, size + 1, "%1.1f%c", numf, triplets); } else { snprintf(s,size + 1, "%3.0f%c", numf, triplets); } } else { if (triplets == ' ') { snprintf(s, size, "%3.1f", numf); } else { snprintf(s, size, "%3.1f%c", numf, triplets); } } } void num_to_ansi_unit(char * s, size_t size, long num, char unit) { int triplets = 0; float numf = (float)num; while (numf > 1000) { numf /= 1000; triplets++; } switch(triplets) { case 0: triplets = ' '; break; case 1: triplets = 'k'; break; // kila case 2: triplets = 'm'; break; // mega case 3: triplets = 'g'; break; // giga case 4: triplets = 't'; break; // tera case 5: triplets = 'p'; break; // peta default: triplets = '?'; break; } if (size == 4) /* to make up for format_pos_number4 */ if (numf < 10) snprintf(s, size, "%4.1f%c%c", numf, triplets, unit); else snprintf(s,size, "%4.0f%c%c", numf, triplets, unit); else snprintf(s, size, "%5.1f%c%c", numf, triplets, unit); } /* commify: take a number and convert it to a string grouped into triplets with commas; returns number of characters written, excluding trailing zero */ int commify (char *str, size_t size, int argnum) { size_t count = 0; int i = 0; int triad = 1; int num = argnum; int kludge = 1; if (num < 0) count += snprintf(str, size, "-"); num = abs(argnum); for (; num >= 1000; num /= 1000, triad++, kludge *= 1000); num = abs(argnum); for (; triad > 0; i++, triad--) { if (i == 0) if (triad == 1) count += snprintf(str + count, size - count, "%d", num); else count += snprintf(str + count, size - count, "%d,", num ? num / kludge : num); else if (triad == 1) count += snprintf(str + count, size - count, "%03d", num ? num / kludge : num); else count += snprintf(str + count, size - count, "%03d,", num ? num / kludge : num); if (num) /* don't divide by zero */ num %= kludge; kludge /= 1000; } return count; } /* GCS - make sure that the string has length at least size-1 */ void pad_with_blanks (char* str, int size) { while (*str) { size--; str++; } while (size-- > 1) { *str++ = ' '; } *str = '\0'; } void format_pos_number4 (char* str, int num) { num_to_ansi(str, 4, num); } void format_power(char * str, size_t size, long power) { num_to_ansi_unit(str, size, power, 'w'); } int min_int (int i1, int i2) { return i1 < i2 ? i1 : i2; } int max_int (int i1, int i2) { return i1 > i2 ? i1 : i2; } void * lcalloc (size_t size) { void * tmp; tmp = malloc(size); if (tmp == NULL) { printf("couldn't malloc %d bytes! Dying.\n",size); exit(-1); } return tmp; } lincity-1.13.1/power.c0000644000175000017500000002172610071465646011512 00000000000000 /* ---------------------------------------------------------------------- * * engine.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling 2001-2004. * ---------------------------------------------------------------------- */ #include #include #include "lclib.h" #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "engine.h" #include "engglobs.h" #include "cliglobs.h" #include "simulate.h" #include "lcintl.h" #include "power.h" #include "transport.h" /* for XY_IS_TRANSPORT */ /* reset per map_power_grid run; how many different grids */ int grid_num = 0; /* grid map time stampt. Incremented per map_power_grid run, used to determine if a square has been mapped */ int grid_inc = 0; Grid * grid[MAX_GRIDS]; /* power_time_step Take the avail_power from last timestep, and move in into the total_power, which will be used during this timestep on a first-come first-served basis. */ void power_time_step () { int gi; int net; /* net power */ if (grid_num == 0) return; for (gi = 1; gi <= grid_num; gi++) { grid[gi]->total_power = grid[gi]->avail_power - (grid[gi]->power_lines * POWER_LINE_LOSS); net = (grid[gi]->total_power - grid[gi]->demand); if (net < 0) grid[gi]->powered = -1; else if (net < (grid[gi]->avail_power / 4)) grid[gi]->powered = 0; else grid[gi]->powered = 1; grid[gi]->avail_power = 0; grid[gi]->demand = 0; } /* Clear substation 'Here' counter */ for (gi = 0; gi < numof_substations; gi++) MP_INFO(substationx[gi],substationy[gi]).int_5 = 0; } void map_power_grid () { int mapx, mapy; grid_num = 0; /* how many grids found so far */ grid_inc++; /* how many times have we run map_power_grid */ for (mapx = 0; mapx < WORLD_SIDE_LEN; mapx++) { for (mapy = 0; mapy < WORLD_SIDE_LEN; mapy++) { if (XY_IS_GRID(mapx,mapy)) { if (MP_INFO(mapx,mapy).int_7 != grid_inc) { if (grid_num == MAX_GRIDS) { printf("You have too many power grids. Join some of them\n"); return; } grid[++grid_num] = (Grid *)lcalloc(sizeof(Grid)); grid[grid_num]->total_power = 0; grid[grid_num]->power_lines = 0; grid[grid_num]->demand = 0; grid[grid_num]->max_power = 0; recurse_power_grid(mapx,mapy,0); } } } } #ifdef DEBUG_POWER printf("grid_inc: %d found %d grids\n",grid_inc, grid_num); #endif } /* check_grid(x, y, xi, yi) - coordinates, ?i being which one to increment if we need to step over transport Check connection to power grid things and check if they've been mapped. If they have, we perform a sanity check. If it is a power source, project the power for it and add that to our total. Now set it to our grid. If it is a power line, return 1, otherwise 0. */ int check_grid(int x, int y, int xi, int yi) { if (XY_IS_GRID(x,y) && !IS_OLD_WINDMILL(x,y)) { if (GRID_CURRENT(x,y)) { if (MP_INFO(x,y).int_6 != grid_num) /* XXX: This can occur if connecting to a power source at different locations. Need a clean way to resolve this, either connect the two grids by treating a power source as a power line, or let the power source be multihomed and figure out power distribution */ printf("recurse_power_grid insane: %d, %d on a different grid!\n", x,y); } else if (!IS_POWER_LINE(x,y)) { if (IS_POWER_SOURCE(x,y)) { project_power(x,y); grid[grid_num]->total_power += MP_INFO(x,y).int_1; } MP_INFO(x,y).int_6 = grid_num; MP_INFO(x,y).int_7 = grid_inc; } else /* is a power line */ return 1; } else if (XY_IS_TRANSPORT(x,y) || XY_IS_WATER(x,y)) { /* can we step over?*/ if (xi == 0 && yi == 0) /* already stepped */ return 0; if (x+xi >= 1 && x+xi < WORLD_SIDE_LEN && y+yi >= 1 && y+yi < WORLD_SIDE_LEN) return (check_grid(x+xi,y+yi,0,0) ? 2 : 0); else return 0; } return 0; } /* Go through the power grid and figure out what is connected. This should really handle the connect_transport bit for power lines. That would help perspicuity anyway. */ void recurse_power_grid (int startx, int starty, int steps) { static int level; /* debug: levels of recursion encountered */ int count = steps; /* number of steps taken - for animation */ short dir = -1; /* -1 undetermined, 0 nothing left, Direction #defines */ int mapx = startx, mapy = starty; /* to move about */ int inc; /* handles special case of stepping over transport */ level++; if (count % POWER_MODULUS == 0) count = 0; /* Old windmills aren't grid connected, so they are on their own 'grid'. We ignore them in the main loop. This case should only be reached from a call from map_power_grid with a new grid_num, not from a new path in the code below */ if (IS_OLD_WINDMILL(mapx, mapy)) { MP_INFO(mapx,mapy).int_6 = grid_num; MP_INFO(mapx,mapy).int_7 = grid_inc; grid[grid_num]->max_power += MP_INFO(mapx,mapy).int_1; level--; return; } /* Crawl about the grid, finding paths and what not. */ while (dir != 0) { /* Set to current grid */ /* figure out what we are on */ if (IS_POWER_LINE(mapx,mapy)) { grid[grid_num]->power_lines++; MP_INFO(mapx,mapy).int_5 = (count++ % POWER_MODULUS); if ((MP_TYPE(mapx,mapy) >= 1) && (MP_TYPE(mapx,mapy) <= 11)) MP_TYPE(mapx,mapy) += 11; } MP_INFO(mapx,mapy).int_6 = grid_num; MP_INFO(mapx,mapy).int_7 = grid_inc; /* For each direction, check map bounds, check if there is power stuff there, then either remember to follow it later or start a new recursion to follow the path now */ /* West */ if (mapx >= 1) { if ((inc = check_grid(mapx - 1, mapy, -1, 0))) { if (dir < 1) { dir = WEST; } else { recurse_power_grid(mapx - inc, mapy, count + 1); } } } /* North */ if (mapy >= 1) { if ((inc = check_grid(mapx, mapy - 1, 0, -1))) { if (dir < 1) { dir = NORTH; } else { recurse_power_grid(mapx, mapy - inc, count + 1); } } } /* East */ if (mapx < WORLD_SIDE_LEN) { if ((inc = check_grid(mapx + 1, mapy, 1, 0))) { if (dir < 1) { dir = EAST; } else { recurse_power_grid(mapx + inc, mapy, count + 1); } } } /* South */ if (mapy < WORLD_SIDE_LEN) { if ((inc = check_grid(mapx, mapy + 1, 0, 1))) { if (dir < 1) { dir = SOUTH; } else { recurse_power_grid(mapx, mapy + inc, count + 1); } } } /* Move to a new square if the chosen direction is not already mapped. */ switch (dir) { case (-1): /* Didn't find one, must not be any. Stop looping */ { dir = 0; } break; case WEST: { if (mapx >= 1) { if ((inc = check_grid(mapx - 1, mapy, -1, 0))) { mapx -= inc; dir = -1; } else { dir = 0; } } } break; case NORTH: { if (mapy >= 1) { if ((inc = check_grid(mapx, mapy - 1, 0, -1))) { mapy -= inc; dir = -1; } else { dir = 0; } } } break; case EAST: { if (mapx < WORLD_SIDE_LEN) { if ((inc = check_grid(mapx + 1, mapy, 1, 0))) { mapx += inc; dir = -1; } else { dir = 0; } } } break; case SOUTH: { if (mapy < WORLD_SIDE_LEN) { if ((inc = check_grid(mapx, mapy + 1, 0, 1))) { mapy += inc; dir = -1; } else { dir = 0; } } } break; } } level--; /* printf("exiting recurse_power_grid:level %d\n",level);*/ } /* project_power Get the appropriate number from the proper variable */ void project_power(int mapx, int mapy) { switch (MP_GROUP(mapx,mapy)) { case GROUP_COAL_POWER: { grid[grid_num]->max_power += MP_INFO(mapx,mapy).int_1; } break; case GROUP_SOLAR_POWER: { grid[grid_num]->max_power += MP_INFO(mapx,mapy).int_3; } break; case GROUP_WINDMILL: { grid[grid_num]->max_power += MP_INFO(mapx,mapy).int_1; } break; default: { printf("default case in project_power"); printf("\tMP_GROUP = %d\n",MP_GROUP(mapx,mapy)); } break; } } /* get_power get power for thing at x, y. Don't use windmills if industry. We go through a list (ugly, I know) until we find a substation in range and then try and get power from it's grid. If we can't, continue. */ int get_power (int x, int y, int power, int block_industry) { int i; int xi, yi; int grid_tmp; /* for simplicity */ if (numof_substations == 0) return(0); for (i = 0; i < numof_substations; i++) { xi = substationx[i]; yi = substationy[i]; if (abs (xi - x) < SUBSTATION_RANGE && abs (yi - y) < SUBSTATION_RANGE) { if (block_industry != 0 && MP_GROUP(xi, yi) == GROUP_WINDMILL) continue; grid_tmp = MP_INFO(xi,yi).int_6; grid[grid_tmp]->demand += power; if (grid[grid_tmp]->total_power >= power) { grid[grid_tmp]->total_power -= power; MP_INFO(xi,yi).int_5 += power; return 1; } } } return 0; } lincity-1.13.1/ldsvguts.c0000644000175000017500000005565007741430561012232 00000000000000/* ---------------------------------------------------------------------- * * ldsvguts.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include "lcintl.h" #include "screen.h" #include "mouse.h" #include "module_buttons.h" #include "stats.h" #include #include #if defined (TIME_WITH_SYS_TIME) #include #include #else #if defined (HAVE_SYS_TIME_H) #include #else #include #endif #endif #if defined (WIN32) #include #include #include #include #endif #ifdef __EMX__ #define chown(x,y,z) #endif #if defined (HAVE_DIRENT_H) #include #define NAMLEN(dirent) strlen((dirent)->d_name) #else #define dirent direct #define NAMLEN(dirent) (dirent)->d_namlen #if defined (HAVE_SYS_NDIR_H) #include #endif #if defined (HAVE_SYS_DIR_H) #include #endif #if defined (HAVE_NDIR_H) #include #endif #endif #include #include "common.h" #ifdef LC_X11 #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "fileutil.h" #include "power.h" #include "pbar.h" #include "stats.h" #if defined (WIN32) && !defined (NDEBUG) #define START_FAST_SPEED 1 #define SKIP_OPENING_SCENE 1 #endif #define SI_BLACK 252 #define SI_RED 253 #define SI_GREEN 254 #define SI_YELLOW 255 #define MP_SANITY_CHECK 1 /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ void dump_screen (void); int verify_city (char *cname); /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ char save_names[10][42]; /* ---------------------------------------------------------------------- * * Public functions * ---------------------------------------------------------------------- */ void remove_scene (char *cname) { char *s; int l; if ((l = strlen (cname)) < 2) /* Thanks to Chris J. Kiick */ return; if ((s = (char *) malloc (lc_save_dir_len + l + 16)) == 0) malloc_failure (); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, cname); remove (s); free (s); } void save_city_raw (char *cname) { int x, y, z, q, n, p; #if defined (WIN32) FILE *ofile = fopen (cname, "wb"); #else FILE *ofile = fopen (cname, "w"); #endif if (ofile == NULL) { printf (_("Save file <%s> - "), cname); do_error (_("Can't open save file!")); } fprintf (ofile, "%d\n", (int) VERSION_INT); q = sizeof (Map_Point_Info); prog_box (_("Saving scene"), 0); check_endian (); for (x = 0; x < WORLD_SIDE_LEN; x++) { for (y = 0; y < WORLD_SIDE_LEN; y++) { for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).population) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).flags) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(unsigned short); z++) { n = *(((unsigned char *) &MP_INFO(x,y).coal_reserve) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(unsigned short); z++) { n = *(((unsigned char *) &MP_INFO(x,y).ore_reserve) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_1) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_2) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_3) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_4) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_5) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_6) + z); fprintf (ofile, "%d\n", n); } for (z = 0; z < sizeof(int); z++) { n = *(((unsigned char *) &MP_INFO(x,y).int_7) + z); fprintf (ofile, "%d\n", n); } fprintf (ofile, "%d\n", (int) MP_POL(x,y)); fprintf (ofile, "%d\n", (int) MP_TYPE(x,y)); } prog_box ("", (90 * x) / WORLD_SIDE_LEN); } check_endian (); /* we have to put the byte order back. */ fprintf (ofile, "%d\n", main_screen_originx); fprintf (ofile, "%d\n", main_screen_originy); fprintf (ofile, "%d\n", total_time); for (x = 0; x < MAX_NUMOF_SUBSTATIONS; x++) { fprintf (ofile, "%d\n", substationx[x]); fprintf (ofile, "%d\n", substationy[x]); } prog_box ("", 92); fprintf (ofile, "%d\n", numof_substations); for (x = 0; x < MAX_NUMOF_MARKETS; x++) { fprintf (ofile, "%d\n", marketx[x]); fprintf (ofile, "%d\n", markety[x]); } prog_box ("", 94); fprintf (ofile, "%d\n", numof_markets); fprintf (ofile, "%d\n", people_pool); fprintf (ofile, "%d\n", total_money); fprintf (ofile, "%d\n", income_tax_rate); fprintf (ofile, "%d\n", coal_tax_rate); fprintf (ofile, "%d\n", dole_rate); fprintf (ofile, "%d\n", transport_cost_rate); fprintf (ofile, "%d\n", goods_tax_rate); fprintf (ofile, "%d\n", export_tax); fprintf (ofile, "%d\n", export_tax_rate); fprintf (ofile, "%d\n", import_cost); fprintf (ofile, "%d\n", import_cost_rate); fprintf (ofile, "%d\n", tech_level); fprintf (ofile, "%d\n", tpopulation); fprintf (ofile, "%d\n", tstarving_population); fprintf (ofile, "%d\n", tunemployed_population); fprintf (ofile, "%d\n", 0); /* waste_goods is obsolete */ fprintf (ofile, "%d\n", power_made); fprintf (ofile, "%d\n", power_used); fprintf (ofile, "%d\n", coal_made); fprintf (ofile, "%d\n", coal_used); fprintf (ofile, "%d\n", goods_made); fprintf (ofile, "%d\n", goods_used); fprintf (ofile, "%d\n", ore_made); fprintf (ofile, "%d\n", ore_used); fprintf (ofile, "%d\n", 0); /* Removed diff_old_population, version 1.12 */ prog_box ("", 96); /* Changed, version 1.12 */ fprintf (ofile, "%d\n", monthgraph_size); for (x = 0; x < monthgraph_size; x++) { fprintf (ofile, "%d\n", monthgraph_pop[x]); fprintf (ofile, "%d\n", monthgraph_starve[x]); fprintf (ofile, "%d\n", monthgraph_nojobs[x]); fprintf (ofile, "%d\n", monthgraph_ppool[x]); #if defined (commentout) fprintf (ofile, "%d\n", diffgraph_power[x]); fprintf (ofile, "%d\n", diffgraph_coal[x]); fprintf (ofile, "%d\n", diffgraph_goods[x]); fprintf (ofile, "%d\n", diffgraph_ore[x]); fprintf (ofile, "%d\n", diffgraph_population[x]); #endif } prog_box ("", 98); fprintf (ofile, "%d\n", rockets_launched); fprintf (ofile, "%d\n", rockets_launched_success); fprintf (ofile, "%d\n", coal_survey_done); for (x = 0; x < PBAR_DATA_SIZE; x++) for (p = 0; p < NUM_PBARS; p++) fprintf(ofile, "%d\n", pbars[p].data[x]); prog_box ("", 99); for (p = 0; p < NUM_PBARS; p++) { fprintf(ofile, "%d\n", pbars[p].oldtot); fprintf(ofile, "%d\n", pbars[p].diff); } fprintf (ofile, "%d\n", cheat_flag); fprintf (ofile, "%d\n", total_pollution_deaths); fprintf (ofile, "%f\n", pollution_deaths_history); fprintf (ofile, "%d\n", total_starve_deaths); fprintf (ofile, "%f\n", starve_deaths_history); fprintf (ofile, "%d\n", total_unemployed_years); fprintf (ofile, "%f\n", unemployed_history); fprintf (ofile, "%d\n", max_pop_ever); fprintf (ofile, "%d\n", total_evacuated); fprintf (ofile, "%d\n", total_births); for (x = 0; x < NUMOF_MODULES; x++) fprintf (ofile, "%d\n", module_help_flag[x]); fprintf (ofile, "%d\n", 0); /* dummy values */ fprintf (ofile, "%d\n", 0); /* backward compatibility */ if (strlen (given_scene) > 1) fprintf (ofile, "%s\n", given_scene); else fprintf (ofile, "dummy\n"); /* 1 */ fprintf (ofile, "%d\n", highest_tech_level); /* 2 */ fprintf (ofile, "sust %d %d %d %d %d %d %d %d %d %d\n" ,sust_dig_ore_coal_count, sust_port_count ,sust_old_money_count, sust_old_population_count ,sust_old_tech_count, sust_fire_count ,sust_old_money, sust_old_population, sust_old_tech ,sustain_flag); /* 3 */ fprintf (ofile, "dummy\n"); /* 4 */ fprintf (ofile, "dummy\n"); /* 5 */ fprintf (ofile, "dummy\n"); /* 6 */ fprintf (ofile, "dummy\n"); /* 7 */ fprintf (ofile, "dummy\n"); /* 8 */ fprintf (ofile, "dummy\n"); /* 9 */ fprintf (ofile, "dummy\n"); /* 10 */ fclose (ofile); prog_box ("", 100); } void save_city (char *cname) { char *s, *s2, *s3, *s4; int l; if ((l = strlen (cname)) < 2) return; if ((s = (char *) malloc (lc_save_dir_len + l + 16)) == 0) malloc_failure (); if ((s2 = (char *) malloc (lc_save_dir_len + l + 32)) == 0) malloc_failure (); if ((s3 = (char *) malloc ((lc_save_dir_len + l) * 2 + 32)) == 0) malloc_failure (); if ((s4 = (char *) malloc ((lc_save_dir_len + l) * 2 + 32)) == 0) malloc_failure (); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, cname); sprintf (s2, "%s%c%s", lc_save_dir, PATH_SLASH, "tmp-save"); sprintf (s3, "gzip -f %s", s2); sprintf (s4, "mv %s.gz %s", s2, s); #if defined (WIN32) save_city_raw (s); #else save_city_raw (s2); if (system (s3) != 0) do_error ("gzip failed while in save_city"); if (system (s4) != 0) do_error ("mv failed while in save_city"); #endif free (s); free (s2); free (s3); free (s4); } void load_city (char *cname) { unsigned long q; int i, x, y, z, n, p, ver; int num_pbars, pbar_data_size; int pbar_tmp; int dummy; FILE *ofile; char s[256]; if ((ofile = fopen_read_gzipped (cname)) == NULL) { printf (_("Can't open <%s> (gzipped)"), cname); do_error ("Can't open it!"); } fscanf (ofile, "%d", &ver); if (ver < MIN_LOAD_VERSION) { ok_dial_box ("too-old.mes", BAD, 0L); fclose_read_gzipped (ofile); return; } init_pbars(); num_pbars = NUM_PBARS; pbar_data_size = PBAR_DATA_SIZE; init_inventory(); print_time_for_year(); q = (unsigned long) sizeof (Map_Point_Info); prog_box (_("Loading scene"), 0); for (x = 0; x < WORLD_SIDE_LEN; x++) { for (y = 0; y < WORLD_SIDE_LEN; y++) { for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).population) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).flags) + z) = n; } for (z = 0; z < sizeof(unsigned short); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).coal_reserve) + z) = n; } for (z = 0; z < sizeof(unsigned short); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).ore_reserve) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_1) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_2) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_3) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_4) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_5) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_6) + z) = n; } for (z = 0; z < sizeof(int); z++) { fscanf (ofile, "%d", &n); *(((unsigned char *) &MP_INFO(x,y).int_7) + z) = n; } fscanf (ofile, "%d", &n); MP_POL(x,y) = (unsigned short) n; fscanf (ofile, "%d", &n); MP_TYPE(x,y) = (short) n; if (get_group_of_type(MP_TYPE(x,y)) == GROUP_MARKET) inventory(x,y); } if (((93 * x) / WORLD_SIDE_LEN) % 3 == 0) prog_box ("", (93 * x) / WORLD_SIDE_LEN); } check_endian (); set_map_groups (); fscanf (ofile, "%d", &main_screen_originx); fscanf (ofile, "%d", &main_screen_originy); if (main_screen_originx > WORLD_SIDE_LEN - scr.main_win.w / 16 - 1) main_screen_originx = WORLD_SIDE_LEN - scr.main_win.w / 16 - 1; if (main_screen_originy > WORLD_SIDE_LEN - scr.main_win.h / 16 - 1) main_screen_originy = WORLD_SIDE_LEN - scr.main_win.h / 16 - 1; fscanf (ofile, "%d", &total_time); if (ver <= MM_MS_C_VER) i = OLD_MAX_NUMOF_SUBSTATIONS; else i = MAX_NUMOF_SUBSTATIONS; for (x = 0; x < i; x++) { fscanf (ofile, "%d", &substationx[x]); fscanf (ofile, "%d", &substationy[x]); } prog_box ("", 92); fscanf (ofile, "%d", &numof_substations); if (ver <= MM_MS_C_VER) i = OLD_MAX_NUMOF_MARKETS; else i = MAX_NUMOF_MARKETS; for (x = 0; x < i; x++) { fscanf (ofile, "%d", &marketx[x]); fscanf (ofile, "%d", &markety[x]); } prog_box ("", 94); fscanf (ofile, "%d", &numof_markets); fscanf (ofile, "%d", &people_pool); fscanf (ofile, "%d", &total_money); fscanf (ofile, "%d", &income_tax_rate); fscanf (ofile, "%d", &coal_tax_rate); fscanf (ofile, "%d", &dole_rate); fscanf (ofile, "%d", &transport_cost_rate); fscanf (ofile, "%d", &goods_tax_rate); fscanf (ofile, "%d", &export_tax); fscanf (ofile, "%d", &export_tax_rate); fscanf (ofile, "%d", &import_cost); fscanf (ofile, "%d", &import_cost_rate); fscanf (ofile, "%d", &tech_level); if (tech_level > MODERN_WINDMILL_TECH) modern_windmill_flag = 1; fscanf (ofile, "%d", &tpopulation); fscanf (ofile, "%d", &tstarving_population); fscanf (ofile, "%d", &tunemployed_population); fscanf (ofile, "%d", &x); /* waste_goods obsolete */ fscanf (ofile, "%d", &power_made); fscanf (ofile, "%d", &power_used); fscanf (ofile, "%d", &coal_made); fscanf (ofile, "%d", &coal_used); fscanf (ofile, "%d", &goods_made); fscanf (ofile, "%d", &goods_used); fscanf (ofile, "%d", &ore_made); fscanf (ofile, "%d", &ore_used); fscanf (ofile, "%d", &dummy); /* &diff_old_population */ /* Update variables calculated from those above */ housed_population = tpopulation / NUMOF_DAYS_IN_MONTH; prog_box ("", 96); /* Get size of monthgraph array */ if (ver <= MG_C_VER) { i = 120; } else { fscanf (ofile, "%d", &i); } for (x = 0; x < i; x++) { /* If more entries in file than will fit on screen, then we need to skip past them. */ if (x >= monthgraph_size) { fscanf (ofile, "%d", &dummy); /* &monthgraph_pop[x] */ fscanf (ofile, "%d", &dummy); /* &monthgraph_starve[x] */ fscanf (ofile, "%d", &dummy); /* &monthgraph_nojobs[x] */ fscanf (ofile, "%d", &dummy); /* &monthgraph_ppool[x] */ } else { fscanf (ofile, "%d", &monthgraph_pop[x]); fscanf (ofile, "%d", &monthgraph_starve[x]); fscanf (ofile, "%d", &monthgraph_nojobs[x]); fscanf (ofile, "%d", &monthgraph_ppool[x]); } /* If our save file is old, skip past obsolete diffgraph entries */ if (ver <= MG_C_VER) { fscanf (ofile, "%d", &dummy); /* &diffgraph_power[x] */ fscanf (ofile, "%d", &dummy); /* &diffgraph_coal[x] */ fscanf (ofile, "%d", &dummy); /* &diffgraph_goods[x] */ fscanf (ofile, "%d", &dummy); /* &diffgraph_ore[x] */ fscanf (ofile, "%d", &dummy); /* &diffgraph_population[x] */ } } /* If screen bigger than number of entries in file, pad with zeroes */ while (x < monthgraph_size) { monthgraph_pop[x] = 0; monthgraph_starve[x] = 0; monthgraph_nojobs[x] = 0; monthgraph_ppool[x] = 0; x++; } prog_box ("", 98); fscanf (ofile, "%d", &rockets_launched); fscanf (ofile, "%d", &rockets_launched_success); fscanf (ofile, "%d", &coal_survey_done); for (x = 0; x < pbar_data_size; x++) { for (p = 0; p < num_pbars; p++) { fscanf (ofile, "%d", &(pbar_tmp)); update_pbar(p,pbar_tmp,1); /* fscanf (ofile, "%d", &(pbars[p].data[x])); */ } } for (p = 0; p < num_pbars; p++) pbars[p].data_size = pbar_data_size; prog_box ("", 99); for (p = 0; p < num_pbars; p++) { fscanf (ofile, "%d", &(pbars[p].oldtot)); fscanf (ofile, "%d", &(pbars[p].diff)); } fscanf (ofile, "%d", &cheat_flag); fscanf (ofile, "%d", &total_pollution_deaths); fscanf (ofile, "%f", &pollution_deaths_history); fscanf (ofile, "%d", &total_starve_deaths); fscanf (ofile, "%f", &starve_deaths_history); fscanf (ofile, "%d", &total_unemployed_years); fscanf (ofile, "%f", &unemployed_history); fscanf (ofile, "%d", &max_pop_ever); fscanf (ofile, "%d", &total_evacuated); fscanf (ofile, "%d", &total_births); for (x = 0; x < NUMOF_MODULES; x++) fscanf (ofile, "%d", &(module_help_flag[x])); fscanf (ofile, "%d", &x); /* just dummy reads */ fscanf (ofile, "%d", &x); /* for backwards compatibility. */ /* 10 dummy strings, for missed out things, have been put in save. */ /* Input from this point uses them. */ /* XXX: WCK: Huh? Missed out things? */ fscanf (ofile, "%128s", given_scene); if (strncmp (given_scene, "dummy", 5) == 0 || strlen (given_scene) < 3) given_scene[0] = 0; fscanf (ofile, "%128s", s); if (strncmp (given_scene, "dummy", 5) != 0) sscanf (s, "%d", &highest_tech_level); else highest_tech_level = 0; fgets (s, 80, ofile); /* this is the CR */ fgets (s, 80, ofile); if (sscanf (s, "sust %d %d %d %d %d %d %d %d %d %d" ,&sust_dig_ore_coal_count, &sust_port_count ,&sust_old_money_count, &sust_old_population_count ,&sust_old_tech_count, &sust_fire_count ,&sust_old_money, &sust_old_population, &sust_old_tech ,&sustain_flag) == 10) { sust_dig_ore_coal_tip_flag = sust_port_flag = 1; /* GCS FIX: Check after loading file if screen is drawn OK */ /* draw_sustainable_window (); */ } else sustain_flag = sust_dig_ore_coal_count = sust_port_count = sust_old_money_count = sust_old_population_count = sust_old_tech_count = sust_fire_count = sust_old_money = sust_old_population = sust_old_tech = 0; fclose_read_gzipped (ofile); numof_shanties = count_groups (GROUP_SHANTY); numof_communes = count_groups (GROUP_COMMUNE); prog_box ("", 100); /* set up the university intake. */ x = count_groups (GROUP_UNIVERSITY); if (x > 0) { university_intake_rate = (count_groups (GROUP_SCHOOL) * 20) / x; if (university_intake_rate > 100) university_intake_rate = 100; } else university_intake_rate = 50; for (x = 0; x < WORLD_SIDE_LEN; x++) { for (y = 0; y < WORLD_SIDE_LEN; y++) { update_tech_dep (x, y); } } unhighlight_module_button (selected_module); selected_module = sbut[7]; /* 7 is track. Watch out though! */ highlight_module_button (selected_module); set_selected_module (CST_TRACK_LR); print_total_money (); reset_animation_times (); map_power_grid (); /* WCK: Is this safe to do here? */ } void load_saved_city (char *s) { char *cname = (char *) malloc (strlen (lc_save_dir) + strlen (s) + 2); sprintf (cname, "%s%c%s", lc_save_dir, PATH_SLASH, s); load_city (cname); free (cname); } void reset_animation_times (void) { int x, y; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) { if (MP_GROUP_IS_RESIDENCE(x,y)) MP_INFO(x,y).int_3 = 0; else if (MP_GROUP(x,y) == GROUP_WINDMILL) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_BLACKSMITH) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_MILL) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_POTTERY) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_CRICKET) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_FIRESTATION) MP_INFO(x,y).int_4 = 0; else if (MP_GROUP(x,y) == GROUP_FIRE) { MP_INFO(x,y).int_1 = 0; MP_INFO(x,y).int_3 = 0; } else if (MP_GROUP(x,y) == GROUP_COMMUNE) MP_INFO(x,y).int_1 = 0; else if (MP_GROUP(x,y) == GROUP_ROCKET) MP_INFO(x,y).int_5 = 0; else if (MP_GROUP(x,y) == GROUP_INDUSTRY_H) MP_INFO(x,y).int_6 = 0; else if (MP_GROUP(x,y) == GROUP_INDUSTRY_L) MP_INFO(x,y).int_7 = 0; } } /* Returns 1 if the city is proper version */ int verify_city (char *cname) { FILE* fp; char* s; int v; if (strlen(cname) == 0) { return 0; } if ((s = (char *) malloc (lc_save_dir_len + strlen(cname) + 2)) == 0) malloc_failure (); sprintf (s, "%s%c%s", lc_save_dir, PATH_SLASH, cname); if (!file_exists(s)) { free (s); return 0; } fp = fopen_read_gzipped (s); if (fp == NULL) { v = 0; } else if (1 != fscanf (fp, "%d", &v)) { v = 0; } fclose_read_gzipped (fp); free (s); return v == VERSION_INT; } #ifdef MP_SANITY_CHECK void sanity_check (void) { static int flag = 0; int x, y, xx, yy; for (x = 0; x < WORLD_SIDE_LEN; x++) for (y = 0; y < WORLD_SIDE_LEN; y++) { if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; if (xx < (x - 4) || yy < (y - 4) || xx > x || yy > y || xx < 0 || xx > WORLD_SIDE_LEN || yy < 0 || yy > WORLD_SIDE_LEN) { printf ("Sanity failed at %d %d, points to %d %d\n", x, y, xx, yy); if (flag == 0) yn_dial_box ("MP sanity check error", "Please mail lincity-users@lists.sourceforge.net", "telling me what you just did.", "Do you think I'll find this bug?"); flag = 1; } } } } #endif void check_endian (void) { static int flag = 0; char *cs; int t, x, y; t = 0; cs = (char *) &t; *cs = 1; if (t == 1) /* little endian */ return; printf ("t=%x\n", t); if (flag == 0) { flag = 1; } for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { eswap32 (&(MP_INFO(x,y).population)); eswap32 (&(MP_INFO(x,y).flags)); if (sizeof (short) == 2) { eswap16 (&(MP_INFO(x,y).coal_reserve)); eswap16 (&(MP_INFO(x,y).ore_reserve)); } else if (sizeof (short) == 4) { eswap32 ((int *) &(MP_INFO(x,y).coal_reserve)); eswap32 ((int *) &(MP_INFO(x,y).ore_reserve)); } else { printf ("Strange size (%d) for short, please mail me.\n", sizeof (short)); } eswap32 (&(MP_INFO(x,y).int_1)); eswap32 (&(MP_INFO(x,y).int_2)); eswap32 (&(MP_INFO(x,y).int_3)); eswap32 (&(MP_INFO(x,y).int_4)); eswap32 (&(MP_INFO(x,y).int_5)); eswap32 (&(MP_INFO(x,y).int_6)); eswap32 (&(MP_INFO(x,y).int_7)); } } } void eswap32 (int *i) { char *cs, c1, c2, c3, c4; cs = (char *) i; c1 = *cs; c2 = *(cs + 1); c3 = *(cs + 2); c4 = *(cs + 3); *(cs++) = c4; *(cs++) = c3; *(cs++) = c2; *cs = c1; } void eswap16 (unsigned short *i) { char *cs, c1, c2; cs = (char *) i; c1 = *cs; c2 = *(cs + 1); *(cs++) = c2; *cs = c1; } lincity-1.13.1/engine.c0000644000175000017500000006004210071466022011602 00000000000000/* ---------------------------------------------------------------------- * * engine.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include #include #include #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "engine.h" #include "engglobs.h" #include "cliglobs.h" #include "simulate.h" #include "lcintl.h" #include "power.h" #include "mouse.h" #include "module_buttons.h" #include "pbar.h" #include "stats.h" #include "screen.h" #include "dialbox.h" #include "modules.h" #include extern int selected_type_cost; int adjust_money(int value) { total_money += value; print_total_money(); mps_update(); update_pbar (PMONEY, total_money, 0); refresh_pbars(); /* This could be more specific */ return total_money; } int is_real_river (int x, int y); int no_credit_build (int selected_group) { if (total_money >= 0) return (0); #ifdef GROUP_POWER_SOURCE_NO_CREDIT if (selected_group == GROUP_POWER_SOURCE) { return (1); } #endif #ifdef GROUP_UNIVERSITY_NO_CREDIT if (selected_group == GROUP_UNIVERSITY) { return (1); } #endif #ifdef GROUP_PARKLAND_NO_CREDIT if (selected_group == GROUP_PARKLAND) { return (1); } #endif #ifdef GROUP_RECYCLE_NO_CREDIT if (selected_group == GROUP_RECYCLE) { return (1); } #endif #ifdef GROUP_ROCKET if (selected_group == GROUP_ROCKET) { return (1); } #endif if (main_groups[selected_group].no_credit == TRUE ) { return (1); } return (0); } int place_item (int x, int y, short type) { int group; int size; group = get_group_of_type(type); if (group < 0) return -1; size = main_groups[group].size; /* You can't build because credit not available. */ if (no_credit_build (group) != 0) { return -1; } /* Not enough slots in the substation array */ switch (group) { case GROUP_SUBSTATION: case GROUP_WINDMILL: { if (add_a_substation (x, y) == 0) return -3; } break; case GROUP_PORT: { if (is_real_river (x + 4, y) != 1 || is_real_river (x + 4, y + 1) != 1 || is_real_river (x + 4, y + 2) != 1 || is_real_river (x + 4, y + 3) != 1) { return -2; } } break; case GROUP_COMMUNE: { numof_communes++; } break; case GROUP_MARKET: { /* Test for enough slots in the market array */ if (add_a_market (x, y) == 0) return -3; MP_INFO(x,y).flags += (FLAG_MB_FOOD | FLAG_MB_JOBS | FLAG_MB_COAL | FLAG_MB_ORE | FLAG_MB_STEEL | FLAG_MB_GOODS | FLAG_MS_FOOD | FLAG_MS_JOBS | FLAG_MS_COAL | FLAG_MS_GOODS | FLAG_MS_ORE | FLAG_MS_STEEL); } break; case GROUP_TIP: { /* Don't build a tip if there has already been one. If we succeed, mark the spot permanently by "doubling" the ore reserve */ int i,j; int prev_tip = 0; for (i=0;i<3;i++) { for (j=0;j<3;j++) { if (MP_INFO(x+i,y+j).ore_reserve > ORE_RESERVE) { prev_tip = 1; break; } } } if (prev_tip) { dialog_box(red(12),3, 0,0,_("You can't build a tip here"), 0,0,_("This area was once a landfill"), 2,' ',_("OK")); return -4; } else { for (i=0;i<3;i++) { for (j=0;j<3;j++) { MP_INFO(x+i,y+j).ore_reserve = ORE_RESERVE * 2; } } } } break; case GROUP_OREMINE: { /* Don't allow new mines on old mines or old tips */ /* GCS: mines over old mines is OK if there is enough remaining ore, as is the case when there is partial overlap. */ int i,j; int prev_tip = 0; int total_ore = 0; for (i=0;i<3;i++) { for (j=0;j<3;j++) { total_ore += MP_INFO(x+i,y+j).ore_reserve; if (MP_INFO(x+i,y+j).ore_reserve > ORE_RESERVE) { prev_tip = 1; break; } } } if (prev_tip) { dialog_box(red(12),3, 0,0,_("You can't build a mine here"), 0,0,_("This area was once a landfill"), 2,' ',_("OK")); return -4; } if (total_ore < MIN_ORE_RESERVE_FOR_MINE) { dialog_box(red(12),3, 0,0,_("You can't build a mine here"), 0,0,_("There is no ore left at this site"), 2,' ',_("OK")); return -4; } } } /* end case */ /* Store last_built for refund on "mistakes" */ last_built_x = x; last_built_y = y; /* Make sure that the correct windmill graphic shows up */ if (group == GROUP_WINDMILL) { if (tech_level > MODERN_WINDMILL_TECH) { type = CST_WINDMILL_1_R; } else { type = CST_WINDMILL_1_W; } } if (group == GROUP_SOLAR_POWER || group == GROUP_WINDMILL) { MP_INFO(x,y).int_2 = tech_level; let_one_through = 1; } else if (group == GROUP_RECYCLE || group == GROUP_COAL_POWER) MP_INFO(x,y).int_4 = tech_level; else if (group == GROUP_ORGANIC_FARM) MP_INFO(x,y).int_1 = tech_level; else if (group == GROUP_TRACK || group == GROUP_ROAD || group == GROUP_RAIL) MP_INFO(x,y).flags |= FLAG_IS_TRANSPORT; else if (group == GROUP_COALMINE || group == GROUP_OREMINE) let_one_through = 1; set_mappoint (x, y, type); update_tech_dep (x, y); if (group == GROUP_RIVER) connect_rivers (); connect_transport (x-2,y-2,x+size+1,y+size+1); adjust_money(-selected_module_cost); map_power_grid(); return 0; } int bulldoze_item (int x, int y) { int g, size; if (MP_TYPE(x,y) == CST_USED) { /* This is considered "improper" input. Silently ignore. */ return -1; } size = MP_SIZE(x,y); g = MP_GROUP(x,y); if (g == GROUP_BARE) { /* Nothing to do. */ return -1; } else if (g == GROUP_SHANTY) { fire_area (x, y); adjust_money(-GROUP_SHANTY_BUL_COST); } else if (g == GROUP_FIRE) { if (MP_INFO(x,y).int_2 >= FIRE_LENGTH) return -1; /* Can't bulldoze ? */ MP_INFO(x,y).int_2 = FIRE_LENGTH + 1; MP_TYPE(x,y) = CST_FIRE_DONE1; MP_GROUP(x,y) = GROUP_BURNT; adjust_money(-GROUP_BURNT_BUL_COST); } else { adjust_money(-main_groups[g].bul_cost); do_bulldoze_area (CST_GREEN, x, y); if (g == GROUP_OREMINE) { int i, j; for (j = 0; j < 4; j++) for (i = 0; i < 4; i++) if (MP_INFO(x + i,y + j).ore_reserve < ORE_RESERVE / 2) do_bulldoze_area (CST_WATER, x + i, y + j); } } return size; /* No longer used... */ } void init_mappoint_array (void) { int x; for (x = 0; x < WORLD_SIDE_LEN; x++) { mappoint_array_x[x] = x; mappoint_array_y[x] = x; } } void shuffle_mappoint_array (void) { int i, x, a; for (i = 0; i < SHUFFLE_MAPPOINT_COUNT; i++) { x = rand () % WORLD_SIDE_LEN; a = mappoint_array_x[i]; mappoint_array_x[i] = mappoint_array_x[x]; mappoint_array_x[x] = a; x = rand () % WORLD_SIDE_LEN; a = mappoint_array_y[i]; mappoint_array_y[i] = mappoint_array_y[x]; mappoint_array_y[x] = a; } } int buy_food (int xt, int yt) { int i = 0; if (MP_GROUP(xt,yt) == GROUP_TRACK) { if (MP_INFO(xt,yt).int_1 < MAX_FOOD_ON_TRACK) i = MAX_FOOD_ON_TRACK - MP_INFO(xt,yt).int_1; } else if (MP_GROUP(xt,yt) == GROUP_ROAD) { if (MP_INFO(xt,yt).int_1 < MAX_FOOD_ON_ROAD) i = MAX_FOOD_ON_ROAD - MP_INFO(xt,yt).int_1; } else if (MP_GROUP(xt,yt) == GROUP_RAIL) { if (MP_INFO(xt,yt).int_1 < MAX_FOOD_ON_RAIL) i = MAX_FOOD_ON_RAIL - MP_INFO(xt,yt).int_1; } i = (i * PORT_IMPORT_RATE) / 1000; MP_INFO(xt,yt).int_1 += i; return (i * PORT_FOOD_RATE); } int buy_coal (int xt, int yt) { int i = 0; if (MP_GROUP(xt,yt) == GROUP_TRACK) { if (MP_INFO(xt,yt).int_3 < MAX_COAL_ON_TRACK) i = MAX_COAL_ON_TRACK - MP_INFO(xt,yt).int_3; } else if (MP_GROUP(xt,yt) == GROUP_ROAD) { if (MP_INFO(xt,yt).int_3 < MAX_COAL_ON_ROAD) i = MAX_COAL_ON_ROAD - MP_INFO(xt,yt).int_3; } else if (MP_GROUP(xt,yt) == GROUP_RAIL) { if (MP_INFO(xt,yt).int_3 < MAX_COAL_ON_RAIL) i = MAX_COAL_ON_RAIL - MP_INFO(xt,yt).int_3; } i = (i * PORT_IMPORT_RATE) / 1000; MP_INFO(xt,yt).int_3 += i; return (i * PORT_COAL_RATE); } int buy_ore (int xt, int yt) { int i = 0; if (MP_GROUP(xt,yt) == GROUP_TRACK) { if (MP_INFO(xt,yt).int_5 < MAX_ORE_ON_TRACK) i = MAX_ORE_ON_TRACK - MP_INFO(xt,yt).int_5; } else if (MP_GROUP(xt,yt) == GROUP_ROAD) { if (MP_INFO(xt,yt).int_5 < MAX_ORE_ON_ROAD) i = MAX_ORE_ON_ROAD - MP_INFO(xt,yt).int_5; } else if (MP_GROUP(xt,yt) == GROUP_RAIL) { if (MP_INFO(xt,yt).int_5 < MAX_ORE_ON_RAIL) i = MAX_ORE_ON_RAIL - MP_INFO(xt,yt).int_5; } i = (i * PORT_IMPORT_RATE) / 1000; MP_INFO(xt,yt).int_5 += i; return (i * PORT_ORE_RATE); } int buy_goods (int xt, int yt) { int i = 0; if (MP_GROUP(xt,yt) == GROUP_TRACK) { if (MP_INFO(xt,yt).int_4 < MAX_GOODS_ON_TRACK) i = MAX_GOODS_ON_TRACK - MP_INFO(xt,yt).int_4; } else if (MP_GROUP(xt,yt) == GROUP_ROAD) { if (MP_INFO(xt,yt).int_4 < MAX_GOODS_ON_ROAD) i = MAX_GOODS_ON_ROAD - MP_INFO(xt,yt).int_4; } else if (MP_GROUP(xt,yt) == GROUP_RAIL) { if (MP_INFO(xt,yt).int_4 < MAX_GOODS_ON_RAIL) i = MAX_GOODS_ON_RAIL - MP_INFO(xt,yt).int_4; } i = (i * PORT_IMPORT_RATE) / 1000; MP_INFO(xt,yt).int_4 += i; return (i * PORT_GOODS_RATE); } int buy_steel (int xt, int yt) { int i = 0; if (MP_GROUP(xt,yt) == GROUP_TRACK) { if (MP_INFO(xt,yt).int_6 < MAX_STEEL_ON_TRACK) i = MAX_STEEL_ON_TRACK - MP_INFO(xt,yt).int_6; } else if (MP_GROUP(xt,yt) == GROUP_ROAD) { if (MP_INFO(xt,yt).int_6 < MAX_STEEL_ON_ROAD) i = MAX_STEEL_ON_ROAD - MP_INFO(xt,yt).int_6; } else if (MP_GROUP(xt,yt) == GROUP_RAIL) { if (MP_INFO(xt,yt).int_6 < MAX_STEEL_ON_RAIL) i = MAX_STEEL_ON_RAIL - MP_INFO(xt,yt).int_6; } i = (i * PORT_IMPORT_RATE) / 1000; MP_INFO(xt,yt).int_6 += i; return (i * PORT_STEEL_RATE); } int sell_food (int xt, int yt) { int i = 0; i = (MP_INFO(xt,yt).int_1 * PORT_EXPORT_RATE) / 1000; MP_INFO(xt,yt).int_1 -= i; return (i * PORT_FOOD_RATE); } int sell_coal (int xt, int yt) { int i = 0; i = (MP_INFO(xt,yt).int_3 * PORT_EXPORT_RATE) / 1000; MP_INFO(xt,yt).int_3 -= i; return (i * PORT_COAL_RATE); } int sell_ore (int xt, int yt) { int i = 0; i = (MP_INFO(xt,yt).int_5 * PORT_EXPORT_RATE) / 1000; MP_INFO(xt,yt).int_5 -= i; return (i * PORT_ORE_RATE); } int sell_goods (int xt, int yt) { int i = 0; i = (MP_INFO(xt,yt).int_4 * PORT_EXPORT_RATE) / 1000; MP_INFO(xt,yt).int_4 -= i; return (i * PORT_GOODS_RATE); } int sell_steel (int xt, int yt) { int i = 0; i = (MP_INFO(xt,yt).int_6 * PORT_EXPORT_RATE) / 1000; MP_INFO(xt,yt).int_6 -= i; return (i * PORT_STEEL_RATE); } void do_pollution () { int x, p; int* pol = &map.pollution[0][0]; /* Kill pollution from top edge of map */ do { if (*pol > 0) *pol /= POL_DIV; } while (++pol < &map.pollution[1][0]); x= 1; do { /* Kill some pollution from left edge of map */ if (*pol++ > 0) *(pol-1) /= POL_DIV; do { if (*pol > 10) { p = *pol / 16; *pol -= p; switch ( rand() % 11) { /* prevailing wind is *from* SW ie right down */ case 0: case 1: /* up */ case 2: *(pol - 1) += p; break; case 3: case 4: /* right */ case 5: *(pol + WORLD_SIDE_LEN) += p; break; case 6: /* down */ case 7: *(pol + 1) += p; break; case 8: /* left */ case 9: *(pol - WORLD_SIDE_LEN) += p; break; case 10: *pol += p- 2; break; } } } while (++pol < &map.pollution[x][WORLD_SIDE_LEN-1]); /* Kill some pollution from right edge of map */ if (*pol > 0) *pol /= POL_DIV; ++x; } while (++pol < &map.pollution[WORLD_SIDE_LEN-1][0]); /* Kill pollution from bottom edge of map */ do { if (*pol > 0) *pol /= POL_DIV; } while (++pol < &map.pollution[WORLD_SIDE_LEN][0]); } /* XXX: remove_people is only used by rocket_pad, perhaps it should go there */ void remove_people (int num) { #if defined (commentout) int x, y, f; time_t t; f = 1; t = time (0); while (f && (num > 0)) { for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) if (MP_GROUP_IS_RESIDENCE(x,y) && MP_INFO(x,y).population > 0) { MP_INFO(x,y).population--; // f = 1; f |= (MP_INFO(x,y).population > 0); num--; total_evacuated++; } } while (num > 0 && people_pool > 0) { num--; total_evacuated++; people_pool--; } #endif int x, y; /* reset housed population so that we can display it correctly */ housed_population = 1; while (housed_population && (num > 0)) { housed_population = 0; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) if (MP_GROUP_IS_RESIDENCE(x,y) && MP_INFO(x,y).population > 0) { MP_INFO(x,y).population--; housed_population += MP_INFO(x,y).population; num--; total_evacuated++; } } while (num > 0 && people_pool > 0) { num--; total_evacuated++; people_pool--; } refresh_population_text (); #if defined (commentout) /* last ship wasn't full so everyone has gone. */ if (num > 0) { if (t > HOF_START && t < HOF_STOP) ok_dial_box ("launch-gone-mail.mes", GOOD, 0L); else ok_dial_box ("launch-gone.mes", GOOD, 0L); housed_population = 0; } #endif /* Note that the previous test was inaccurate. There could be exactly 1000 people left. */ if (!housed_population && !people_pool) { ok_dial_box ("launch-gone.mes", GOOD, 0L); } } void clear_fire_health_and_cricket_cover (void) { int x, y, m; m = 0xffffffff - (FLAG_FIRE_COVER | FLAG_HEALTH_COVER | FLAG_CRICKET_COVER); for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) MP_INFO(x,y).flags &= m; /* Wow... chache misses or what! */ } void do_fire_health_and_cricket_cover (void) { int x, y; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) { /* The next few lines need changing to test for */ /* the group if these areas are animated. */ if (MP_GROUP(x,y) == GROUP_FIRESTATION) do_fire_cover (x, y); else if (MP_TYPE(x,y) == CST_HEALTH) do_health_cover (x, y); else if (MP_GROUP(x,y) == GROUP_CRICKET) do_cricket_cover (x, y); } } void do_random_fire (int x, int y, int pwarning) /* well random if x=y=-1 */ { int xx, yy; if (x == -1 && y == -1) { x = rand () % WORLD_SIDE_LEN; y = rand () % WORLD_SIDE_LEN; } else { if (x < 0 || x >= WORLD_SIDE_LEN || y < 0 || y >= WORLD_SIDE_LEN) return; } if (MP_TYPE(x,y) == CST_USED) { xx = MP_INFO(x,y).int_1; yy = MP_INFO(x,y).int_2; x = xx; y = yy; } xx = rand () % 100; if (xx >= (main_groups[MP_GROUP(x,y)].fire_chance)) return; if ((MP_INFO(x,y).flags & FLAG_FIRE_COVER) != 0) return; if (pwarning) { if (MP_GROUP(x,y) == GROUP_POWER_LINE) ok_dial_box ("fire.mes", BAD, _("It's at a power line.")); else if (MP_GROUP(x,y) == GROUP_SOLAR_POWER) ok_dial_box ("fire.mes", BAD, _("It's at a solar power station.")); else if (MP_GROUP(x,y) == GROUP_SUBSTATION) ok_dial_box ("fire.mes", BAD, _("It's at a substation.")); else if (MP_GROUP_IS_RESIDENCE(x,y)) ok_dial_box ("fire.mes", BAD, _("It's at a residential area.")); else if (MP_GROUP(x,y) == GROUP_ORGANIC_FARM) ok_dial_box ("fire.mes", BAD, _("It's at a farm.")); else if (MP_GROUP(x,y) == GROUP_MARKET) ok_dial_box ("fire.mes", BAD, _("It's at a market.")); else if (MP_GROUP(x,y) == GROUP_TRACK) ok_dial_box ("fire.mes", BAD, _("It's at a track.")); else if (MP_GROUP(x,y) == GROUP_COALMINE) ok_dial_box ("fire.mes", BAD, _("It's at a coal mine.")); else if (MP_GROUP(x,y) == GROUP_RAIL) ok_dial_box ("fire.mes", BAD, _("It's at a railway.")); else if (MP_GROUP(x,y) == GROUP_COAL_POWER) ok_dial_box ("fire.mes", BAD, _("It's at a coal power station.")); else if (MP_GROUP(x,y) == GROUP_ROAD) ok_dial_box ("fire.mes", BAD, _("It's at a road.")); else if (MP_GROUP(x,y) == GROUP_INDUSTRY_L) ok_dial_box ("fire.mes", BAD, _("It's at light industry.")); else if (MP_GROUP(x,y) == GROUP_UNIVERSITY) ok_dial_box ("fire.mes", BAD, _("It's at a university.")); else if (MP_GROUP(x,y) == GROUP_COMMUNE) ok_dial_box ("fire.mes", BAD, _("It's at a commune.")); else if (MP_GROUP(x,y) == GROUP_TIP) ok_dial_box ("fire.mes", BAD, _("It's at a tip.")); else if (MP_GROUP(x,y) == GROUP_PORT) ok_dial_box ("fire.mes", BAD, _("It's at a port.")); else if (MP_GROUP(x,y) == GROUP_INDUSTRY_H) ok_dial_box ("fire.mes", BAD, _("It's at a steel works.")); else if (MP_GROUP(x,y) == GROUP_RECYCLE) ok_dial_box ("fire.mes", BAD, _("It's at a recycle centre.")); else if (MP_GROUP(x,y) == GROUP_HEALTH) ok_dial_box ("fire.mes", BAD, _("It's at a health centre.")); else if (MP_GROUP(x,y) == GROUP_ROCKET) ok_dial_box ("fire.mes", BAD, _("It's at a rocket site.")); else if (MP_GROUP(x,y) == GROUP_WINDMILL) ok_dial_box ("fire.mes", BAD, _("It's at a windmill.")); else if (MP_GROUP(x,y) == GROUP_SCHOOL) ok_dial_box ("fire.mes", BAD, _("It's at a school.")); else if (MP_GROUP(x,y) == GROUP_BLACKSMITH) ok_dial_box ("fire.mes", BAD, _("It's at a blacksmith.")); else if (MP_GROUP(x,y) == GROUP_MILL) ok_dial_box ("fire.mes", BAD, _("It's at a mill.")); else if (MP_GROUP(x,y) == GROUP_POTTERY) ok_dial_box ("fire.mes", BAD, _("It's at a pottery.")); else if (MP_GROUP(x,y) == GROUP_FIRESTATION) ok_dial_box ("fire.mes", BAD, _("It's at a fire station!!!.")); else if (MP_GROUP(x,y) == GROUP_CRICKET) ok_dial_box ("fire.mes", BAD, _("It's at a cricket pitch!!!.")); else if (MP_GROUP(x,y) == GROUP_SHANTY) ok_dial_box ("fire.mes", BAD, _("It's at a shanty town.")); else ok_dial_box ("fire.mes", BAD, _("UNKNOWN!")); } fire_area (x, y); } /* // spiral round from startx,starty until we hit something of group group. // return the x y coords encoded as x+y*WORLD_SIDE_LEN // return -1 if we don't find one. */ int spiral_find_group (int startx, int starty, int group) { int i, j, x, y; x = startx; y = starty; /* let's just do a complete spiral for now, work out the bounds later */ for (i = 1; i < (WORLD_SIDE_LEN + WORLD_SIDE_LEN); i++) { for (j = 0; j < i; j++) { x--; if (x > 0 && x < WORLD_SIDE_LEN && y > 0 && y < WORLD_SIDE_LEN) if (MP_GROUP(x,y) == group) return (x + y * WORLD_SIDE_LEN); } for (j = 0; j < i; j++) { y--; if (x > 0 && x < WORLD_SIDE_LEN && y > 0 && y < WORLD_SIDE_LEN) if (MP_GROUP(x,y) == group) return (x + y * WORLD_SIDE_LEN); } i++; for (j = 0; j < i; j++) { x++; if (x > 0 && x < WORLD_SIDE_LEN && y > 0 && y < WORLD_SIDE_LEN) if (MP_GROUP(x,y) == group) return (x + y * WORLD_SIDE_LEN); } for (j = 0; j < i; j++) { y++; if (x > 0 && x < WORLD_SIDE_LEN && y > 0 && y < WORLD_SIDE_LEN) if (MP_GROUP(x,y) == group) return (x + y * WORLD_SIDE_LEN); } } return (-1); } /* // spiral round from startx,starty until we hit a 2x2 space. // return the x y coords encoded as x+y*WORLD_SIDE_LEN // return -1 if we don't find one. */ int spiral_find_2x2 (int startx, int starty) { int i, j, x, y; x = startx; y = starty; /* let's just do a complete spiral for now, work out the bounds later */ for (i = 1; i < (WORLD_SIDE_LEN + WORLD_SIDE_LEN); i++) { for (j = 0; j < i; j++) { x--; if (x > 1 && x < WORLD_SIDE_LEN - 2 && y > 1 && y < WORLD_SIDE_LEN - 2) if (MP_TYPE(x,y) == CST_GREEN && MP_TYPE(x + 1,y) == CST_GREEN && MP_TYPE(x,y + 1) == CST_GREEN && MP_TYPE(x + 1,y + 1) == CST_GREEN) return (x + y * WORLD_SIDE_LEN); } for (j = 0; j < i; j++) { y--; if (x > 1 && x < WORLD_SIDE_LEN - 2 && y > 1 && y < WORLD_SIDE_LEN - 2) if (MP_TYPE(x,y) == CST_GREEN && MP_TYPE(x + 1,y) == CST_GREEN && MP_TYPE(x,y + 1) == CST_GREEN && MP_TYPE(x + 1,y + 1) == CST_GREEN) return (x + y * WORLD_SIDE_LEN); } i++; for (j = 0; j < i; j++) { x++; if (x > 1 && x < WORLD_SIDE_LEN - 2 && y > 1 && y < WORLD_SIDE_LEN - 2) if (MP_TYPE(x,y) == CST_GREEN && MP_TYPE(x + 1,y) == CST_GREEN && MP_TYPE(x,y + 1) == CST_GREEN && MP_TYPE(x + 1,y + 1) == CST_GREEN) return (x + y * WORLD_SIDE_LEN); } for (j = 0; j < i; j++) { y++; if (x > 1 && x < WORLD_SIDE_LEN - 2 && y > 1 && y < WORLD_SIDE_LEN - 2) if (MP_TYPE(x,y) == CST_GREEN && MP_TYPE(x + 1,y) == CST_GREEN && MP_TYPE(x,y + 1) == CST_GREEN && MP_TYPE(x + 1,y + 1) == CST_GREEN) return (x + y * WORLD_SIDE_LEN); } } return (-1); } void do_bulldoze_area (short fill, int xx, int yy) { int size, x, y; if (MP_TYPE(xx,yy) == CST_USED) { x = MP_INFO(xx,yy).int_1; y = MP_INFO(xx,yy).int_2; } else { x = xx; y = yy; } size = MP_SIZE(x,y); if (MP_GROUP(x,y) == GROUP_SUBSTATION || MP_GROUP(x,y) == GROUP_WINDMILL) remove_a_substation (x, y); else if (MP_GROUP(x,y) == GROUP_MARKET) remove_a_market (x, y); else if (MP_GROUP(x,y) == GROUP_SHANTY) numof_shanties--; else if (MP_GROUP(x,y) == GROUP_COMMUNE) numof_communes--; people_pool += MP_INFO(x,y).population; clear_mappoint (fill, x, y); if (size > 1) /* do size 2 */ { clear_mappoint (fill, x + 1, y); clear_mappoint (fill, x, y + 1); clear_mappoint (fill, x + 1, y + 1); } if (size > 2) /* do size 3 */ { clear_mappoint (fill, x + 2, y); clear_mappoint (fill, x + 2, y + 1); clear_mappoint (fill, x + 2, y + 2); clear_mappoint (fill, x, y + 2); clear_mappoint (fill, x + 1, y + 2); } if (size > 3) /* do size 4 */ { clear_mappoint (fill, x + 3, y); clear_mappoint (fill, x + 3, y + 1); clear_mappoint (fill, x + 3, y + 2); clear_mappoint (fill, x + 3, y + 3); clear_mappoint (fill, x, y + 3); clear_mappoint (fill, x + 1, y + 3); clear_mappoint (fill, x + 2, y + 3); } } void update_tech_dep (int x, int y) { switch (MP_GROUP(x,y)) { case (GROUP_ORGANIC_FARM): MP_INFO(x,y).int_7 = ((double) MP_INFO(x,y).int_1 * ORGANIC_FARM_FOOD_OUTPUT) / MAX_TECH_LEVEL; break; case (GROUP_WINDMILL): #ifdef OLD_POWER_CODE MP_INFO(x,y).int_5 = WINDMILL_POWER #else MP_INFO(x,y).int_1 = WINDMILL_POWER #endif + (((double) MP_INFO(x,y).int_2 * WINDMILL_POWER) / MAX_TECH_LEVEL); break; case (GROUP_COAL_POWER): #ifdef OLD_POWER_CODE MP_INFO(x,y).int_5 = POWERS_COAL_OUTPUT #else MP_INFO(x,y).int_1 = POWERS_COAL_OUTPUT #endif + (((double) MP_INFO(x,y).int_4 * POWERS_COAL_OUTPUT) / MAX_TECH_LEVEL); break; case (GROUP_SOLAR_POWER): MP_INFO(x,y).int_3 = POWERS_SOLAR_OUTPUT + (((double) MP_INFO(x,y).int_2 * POWERS_SOLAR_OUTPUT) / MAX_TECH_LEVEL); break; } } void connect_rivers (void) { int x, y, count; count = 1; while (count > 0) { count = 0; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) { if (is_real_river (x, y) == 1) { if (is_real_river (x - 1, y) == -1) { MP_INFO(x - 1,y).flags |= FLAG_IS_RIVER; count++; } if (is_real_river (x, y - 1) == -1) { MP_INFO(x,y - 1).flags |= FLAG_IS_RIVER; count++; } if (is_real_river (x + 1, y) == -1) { MP_INFO(x + 1,y).flags |= FLAG_IS_RIVER; count++; } if (is_real_river (x, y + 1) == -1) { MP_INFO(x,y + 1).flags |= FLAG_IS_RIVER; count++; } } } } } int is_real_river (int x, int y) { /* returns zero if not water at all or if out of bounds. */ if (x < 0 || x >= WORLD_SIDE_LEN || y < 0 || y >= WORLD_SIDE_LEN) return (0); if (MP_GROUP(x,y) != GROUP_WATER) return (0); if (MP_INFO(x,y).flags & FLAG_IS_RIVER) return (1); return (-1); } /* Feature: coal survey should vary in price and accuracy with technology */ void do_coal_survey (void) { if (coal_survey_done == 0) { adjust_money(-1000000); coal_survey_done = 1; } } lincity-1.13.1/transport.c0000644000175000017500000001500610066005433012370 00000000000000/* ---------------------------------------------------------------------- * * transport.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include #include #include #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "transport.h" #include "power.h" #include "stats.h" /* for transport_cost */ /* --------------------------------------------------------------------- For track, road and rail: int_1 contains the amount of food int_2 contains the amount of jobs int_3 contains the amount of coal int_4 contains the amount of goods int_5 contains the amount of ore int_6 contains the amount of steel int_7 contains the amount of waste --------------------------------------------------------------------- */ void general_transport (Map_Point_Info *minfo, int *pol, int max_waste, int *waste_count) { int tot, av, *base, xm1, xp1, ym1, yp1; /* 30. Oct 1996: * we'll use a loop with pointers here instead of doin' each * operation by hand. this reduces code complexity and should * lead to a higher cache hit ratio - theoretically * (ThMO) * * 12. Dec 1996: * as this is a heavy used routine, another speedup improvement is * needed. we'll now use 1 pointer, which will be incremented and * 1 .. 4 constant indices, which replaces the old pointer-pure * version. * advantages: elimination of unnecessary pointer increments. * Note: this *only* works, if the related addresses use one and the * same address space - which is naturally for 2-dimensional * arrays. * (ThMO) */ base = &minfo->int_1; switch (minfo->flags & 0x0F) { case 0: return; case 1: /* inlined t_av_l() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; do { tot = *base + base[xm1]; av = tot / 2; base[xm1] = av; *base++ = av + tot % 2; } while (base <= &minfo->int_7); break; case 2: /* inlined t_av_u() -- (ThMO) */ ym1 = &minfo[-1].int_1 - base; do { tot = *base + base[ym1]; av = tot / 2; base[ym1] = av; *base++ = av + tot % 2; } while (base <= &minfo->int_7); break; case 3: /* inlined t_av_lu() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; ym1 = &minfo[-1].int_1 - base; do { tot = *base + base[xm1] + base[ym1]; av = tot / 3; base[xm1] = base[ym1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 4: /* inlined t_av_r() -- (ThMO) */ xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; do { tot = *base + base[xp1]; av = tot / 2; base[xp1] = av; *base++ = av + tot % 2; } while (base <= &minfo->int_7); break; case 5: /* inlined t_av_lr() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; do { tot = *base + base[xm1] + base[xp1]; av = tot / 3; base[xm1] = base[xp1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 6: /* inline t_av_ur() -- (ThMO) */ ym1 = &minfo[-1].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; do { tot = *base + base[ym1] + base[xp1]; av = tot / 3; base[ym1] = base[xp1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 7: /* inlined t_av_lur() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; ym1 = &minfo[-1].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; do { tot = *base + base[xm1] + base[ym1] + base[xp1]; av = tot / 4; base[xm1] = base[ym1] = base[xp1] = av; *base++ = av + tot % 4; } while (base <= &minfo->int_7); break; case 8: /* inlined t_av_d() -- (ThMO) */ yp1 = &minfo[1].int_1 - base; do { tot = *base + base[yp1]; av = tot / 2; base[yp1] = av; *base++ = av + tot % 2; } while (base <= &minfo->int_7); break; case 9: /* inlined t_av_ld() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[xm1] + base[yp1]; av = tot / 3; base[xm1] = base[yp1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 10: /* inlined t_av_ud() -- (ThMO) */ ym1 = &minfo[-1].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[ym1] + base[yp1]; av = tot / 3; base[ym1] = base[yp1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 11: /* inlined t_av_lud() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; ym1 = &minfo[-1].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[xm1] + base[ym1] + base[yp1]; av = tot / 4; base[xm1] = base[ym1] = base[yp1] = av; *base++ = av + tot % 4; } while (base <= &minfo->int_7); break; case 12: /* inlined t_av_rd() -- (ThMO) */ xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[xp1] + base[yp1]; av = tot / 3; base[xp1] = base[yp1] = av; *base++ = av + tot % 3; } while (base <= &minfo->int_7); break; case 13: /* inlined t_av_lrd() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[xm1] + base[xp1] + base[yp1]; av = tot / 4; base[xm1] = base[xp1] = base[yp1] = av; *base++ = av + tot % 4; } while (base <= &minfo->int_7); break; case 14: /* inlined t_av_urd() -- (ThMO) */ ym1 = &minfo[-1].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[ym1] + base[xp1] + base[yp1]; av = tot / 4; base[ym1] = base[xp1] = base[yp1] = av; *base++ = av + tot % 4; } while (base <= &minfo->int_7); break; case 15: /* inlined t_av_lurd() -- (ThMO) */ xm1 = &minfo[-WORLD_SIDE_LEN].int_1 - base; ym1 = &minfo[-1].int_1 - base; xp1 = &minfo[WORLD_SIDE_LEN].int_1 - base; yp1 = &minfo[1].int_1 - base; do { tot = *base + base[xm1] + base[ym1] + base[xp1] + base[yp1]; av = tot / 5; base[xm1] = base[ym1] = base[xp1] = base[yp1] = av; *base++ = av + tot % 5; } while (base <= &minfo->int_7); break; } if (*--base >= max_waste) { *base -= WASTE_BURN_ON_TRANSPORT; ++*pol; if (*waste_count > TRANSPORT_BURN_WASTE_COUNT) { *waste_count = 0; } else { ++ * waste_count; } } } lincity-1.13.1/market.c0000644000175000017500000006462710066261060011634 00000000000000/* ---------------------------------------------------------------------- * * market.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include #include #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "stats.h" #include #include #include #include int get_jobs (int x, int y, int jobs) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE && abs (markety[q] - y) < MARKET_RANGE && (MP_INFO(marketx[q],markety[q]).int_2 > (3 * jobs / 2)))) { MP_INFO(marketx[q],markety[q]).int_2 -= jobs; income_tax += jobs; return (1); } } } if (get_stuff (x, y, jobs, T_JOBS) != 0) { income_tax += jobs; return (1); } return (0); } int put_jobs (int x, int y, int jobs) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_2 >= (MAX_JOBS_IN_MARKET - jobs)) continue; if (abs (marketx[q] - x) < EMPLOYER_RANGE && abs (markety[q] - y) < EMPLOYER_RANGE) { MP_INFO(marketx[q],markety[q]).int_2 += jobs; return (1); } } } if (put_stuff (x, y, jobs, T_JOBS) != 0) { return (1); } return (0); } int get_food (int x, int y, int food) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE) && (MP_INFO(marketx[q],markety[q]).int_1 > food)) { MP_INFO(marketx[q],markety[q]).int_1 -= food; return (1); } } } if (get_stuff (x, y, food, T_FOOD) != 0) return (1); return (0); } int put_food (int x, int y, int food) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_1 >= (MAX_FOOD_IN_MARKET - food)) continue; if ((abs (marketx[q] - x) < ORG_FARM_RANGE) && (abs (markety[q] - y) < ORG_FARM_RANGE)) { MP_INFO(marketx[q],markety[q]).int_1 += food; return (1); } } } if (put_stuff (x, y, food, T_FOOD) != 0) return (1); return (0); } int get_goods (int x, int y, int goods) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (abs (marketx[q] - x) < MARKET_RANGE && abs (markety[q] - y) < MARKET_RANGE && (MP_INFO(marketx[q],markety[q]).int_4 > goods)) { MP_INFO(marketx[q],markety[q]).int_4 -= goods; goods_tax += goods; goods_used += goods; /* make the waste here. */ MP_INFO(marketx[q],markety[q]).int_7 += goods / 3; return (1); } } } if (get_stuff (x, y, goods, T_GOODS) != 0) { put_stuff (x, y, goods / 3, T_WASTE); goods_tax += goods; goods_used += goods; return (1); } return (0); } int put_goods (int x, int y, int goods) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_4 >= (MAX_GOODS_IN_MARKET - goods)) continue; if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE)) { MP_INFO(marketx[q],markety[q]).int_4 += goods; return (1); } } } if (put_stuff (x, y, goods, T_GOODS) != 0) return (1); return (0); } int put_waste (int x, int y, int waste) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_7 >= (MAX_WASTE_IN_MARKET - waste)) continue; if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE)) { MP_INFO(marketx[q],markety[q]).int_7 += waste; return (1); } } } if (put_stuff (x, y, waste, T_WASTE) != 0) return (1); return (0); } int get_waste (int x, int y, int waste) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE) && (MP_INFO(marketx[q],markety[q]).int_7 > waste)) { MP_INFO(marketx[q],markety[q]).int_7 -= waste; return (1); } } } if (get_stuff (x, y, waste, T_WASTE) != 0) return (1); return (0); } int get_steel (int x, int y, int steel) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE) && (MP_INFO(marketx[q],markety[q]).int_6 > steel)) { MP_INFO(marketx[q],markety[q]).int_6 -= steel; return (1); } } } if (get_stuff (x, y, steel, T_STEEL) != 0) return (1); return (0); } int put_steel (int x, int y, int steel) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_6 >= (MAX_STEEL_IN_MARKET - steel)) continue; if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE)) { MP_INFO(marketx[q],markety[q]).int_6 += steel; return (1); } } } if (put_stuff (x, y, steel, T_STEEL) != 0) return (1); return (0); } int get_ore (int x, int y, int ore) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE) && (MP_INFO(marketx[q],markety[q]).int_5 > ore)) { MP_INFO(marketx[q],markety[q]).int_5 -= ore; return (1); } } } if (get_stuff (x, y, ore, T_ORE) != 0) return (1); return (0); } int put_ore (int x, int y, int ore) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_5 >= (MAX_ORE_IN_MARKET - ore)) continue; if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE)) { MP_INFO(marketx[q],markety[q]).int_5 += ore; return (1); } } } if (put_stuff (x, y, ore, T_ORE) != 0) return (1); return (0); } int get_coal (int x, int y, int coal) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE) && (MP_INFO(marketx[q],markety[q]).int_3 > coal)) { MP_INFO(marketx[q],markety[q]).int_3 -= coal; return (1); } } } if (get_stuff (x, y, coal, T_COAL) != 0) return (1); return (0); } int put_coal (int x, int y, int coal) { int q; if (numof_markets > 0) { for (q = 0; q < numof_markets; q++) { if (MP_INFO(marketx[q],markety[q]).int_3 >= (MAX_COAL_IN_MARKET - coal)) continue; if ((abs (marketx[q] - x) < MARKET_RANGE) && (abs (markety[q] - y) < MARKET_RANGE)) { MP_INFO(marketx[q],markety[q]).int_3 += coal; return (1); } } } if (put_stuff (x, y, coal, T_COAL) != 0) return (1); return (0); } int add_a_market (int x, int y) /* add to marketx markety to list */ { if (numof_markets >= MAX_NUMOF_MARKETS) return (0); marketx[numof_markets] = x; markety[numof_markets] = y; numof_markets++; /* oh dear. Got to bootstap markets with jobs, otherwise power won't work */ /* GCS: Is this still true? */ MP_INFO(x,y).int_2 = 2000; return (1); } void remove_a_market (int x, int y) { int q; for (q = 0; q < numof_markets; q++) if (marketx[q] == x && markety[q] == y) break; for (; q < numof_markets; q++) { marketx[q] = marketx[q + 1]; markety[q] = markety[q + 1]; } numof_markets--; } void do_market (int x, int y) { /* // int_1 contains the food it holds // int_2 contains the jobs // int_3 contains the coal // int_4 contains the goods // int_5 contains the ore // int_6 contains the steel // int_7 contains the waste */ int extra_jobs = 0; shuffle_markets (); if (x > 0 && (MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x - 1, y); if (x > 0 && (MP_INFO(x - 1,y + 1).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x - 1, y + 1); if (y > 0 && (MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x, y - 1); if (y > 0 && (MP_INFO(x + 1,y - 1).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x + 1, y - 1); if (x < WORLD_SIDE_LEN - 2 && (MP_INFO(x + 2,y).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x + 2, y); if (x < WORLD_SIDE_LEN - 2 && (MP_INFO(x + 2,y + 1).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x + 2, y + 1); if (y < WORLD_SIDE_LEN - 2 && (MP_INFO(x,y + 2).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x, y + 2); if (y < WORLD_SIDE_LEN - 2 && (MP_INFO(x + 1,y + 2).flags & FLAG_IS_TRANSPORT) != 0) extra_jobs += deal_with_transport (x, y, x + 1, y + 2); if (MP_INFO(x,y).int_1 > MAX_FOOD_IN_MARKET) MP_INFO(x,y).int_1 = MAX_FOOD_IN_MARKET; if (MP_INFO(x,y).int_2 > MAX_JOBS_IN_MARKET) MP_INFO(x,y).int_2 = MAX_JOBS_IN_MARKET; if (MP_INFO(x,y).int_4 > MAX_GOODS_IN_MARKET) MP_INFO(x,y).int_4 = MAX_GOODS_IN_MARKET; /* now choose a graphic only dependent on food (for now anyway) */ if (total_time % 25 == 17) { if (MP_INFO(x,y).int_1 <= 0) { if (MP_INFO(x,y).int_2 > 0) MP_TYPE(x,y) = CST_MARKET_LOW; else MP_TYPE(x,y) = CST_MARKET_EMPTY; } else if (MP_INFO(x,y).int_1 < (MARKET_FOOD_SEARCH_TRIGGER / 2)) MP_TYPE(x,y) = CST_MARKET_LOW; else if (MP_INFO(x,y).int_1 < (MAX_FOOD_IN_MARKET - MAX_FOOD_IN_MARKET / 4)) MP_TYPE(x,y) = CST_MARKET_MED; else MP_TYPE(x,y) = CST_MARKET_FULL; } /* now employ some people */ get_jobs (x, y, 1 + (extra_jobs / 5)); /* keep the pbars accurate */ inventory(x,y); } void shuffle_markets (void) { register int x; int q, r, m; m = (numof_markets / 4) + 1; for (x = 0; x < m; x++) { r = rand () % numof_markets; if (r == x) continue; q = marketx[x]; marketx[x] = marketx[r]; marketx[r] = q; q = markety[x]; markety[x] = markety[r]; markety[r] = q; } } int deal_with_transport (int x, int y, int tx, int ty) { int i, r, extra_jobs = 3, flags; flags = MP_INFO(x,y).flags; /* tracks */ if (MP_GROUP(tx,ty) == GROUP_TRACK) { /* food */ if ((flags & FLAG_MB_FOOD) != 0) { r = (MAX_FOOD_IN_MARKET * 1000) / (MAX_FOOD_ON_TRACK + MAX_FOOD_IN_MARKET); i = MP_INFO(x,y).int_1 + MP_INFO(tx,ty).int_1; MP_INFO(x,y).int_1 = (i * r) / 1000; MP_INFO(tx,ty).int_1 = i - MP_INFO(x,y).int_1; } /* jobs */ if ((flags & FLAG_MB_JOBS) != 0) { r = (MAX_JOBS_IN_MARKET * 1000) / (MAX_JOBS_ON_TRACK + MAX_JOBS_IN_MARKET); i = MP_INFO(x,y).int_2 + MP_INFO(tx,ty).int_2; MP_INFO(x,y).int_2 = (i * r) / 1000; MP_INFO(tx,ty).int_2 = i - MP_INFO(x,y).int_2; } /* coal */ if ((flags & FLAG_MB_COAL) != 0) { r = (MAX_COAL_IN_MARKET * 1000) / (MAX_COAL_ON_TRACK + MAX_COAL_IN_MARKET); i = MP_INFO(x,y).int_3 + MP_INFO(tx,ty).int_3; MP_INFO(x,y).int_3 = (i * r) / 1000; MP_INFO(tx,ty).int_3 = i - MP_INFO(x,y).int_3; } /* goods */ if ((flags & FLAG_MB_GOODS) != 0) { r = (MAX_GOODS_IN_MARKET * 1000) / (MAX_GOODS_ON_TRACK + MAX_GOODS_IN_MARKET); i = MP_INFO(x,y).int_4 + MP_INFO(tx,ty).int_4; MP_INFO(x,y).int_4 = (i * r) / 1000; MP_INFO(tx,ty).int_4 = i - MP_INFO(x,y).int_4; } /* ore */ if ((flags & FLAG_MB_ORE) != 0) { r = (MAX_ORE_IN_MARKET * 1000) / (MAX_ORE_ON_TRACK + MAX_ORE_IN_MARKET); i = MP_INFO(x,y).int_5 + MP_INFO(tx,ty).int_5; MP_INFO(x,y).int_5 = (i * r) / 1000; MP_INFO(tx,ty).int_5 = i - MP_INFO(x,y).int_5; } /* steel */ if ((flags & FLAG_MB_STEEL) != 0) { r = (MAX_STEEL_IN_MARKET * 1000) / (MAX_STEEL_ON_TRACK + MAX_STEEL_IN_MARKET); i = MP_INFO(x,y).int_6 + MP_INFO(tx,ty).int_6; MP_INFO(x,y).int_6 = (i * r) / 1000; MP_INFO(tx,ty).int_6 = i - MP_INFO(x,y).int_6; } /* waste */ r = (MAX_WASTE_IN_MARKET * 1000) / (MAX_WASTE_ON_TRACK + MAX_WASTE_IN_MARKET); i = MP_INFO(x,y).int_7 + MP_INFO(tx,ty).int_7; MP_INFO(x,y).int_7 = (i * r) / 1000; MP_INFO(tx,ty).int_7 = i - MP_INFO(x,y).int_7; /* if it's full of waste, burn some to make pollution. */ if (MP_INFO(x,y).int_7 >= (99 * MAX_WASTE_IN_MARKET / 100)) { MP_POL(x,y) += 3000; MP_INFO(x,y).int_7 -= (7 * MAX_WASTE_IN_MARKET) / 10; #if defined (commentout) /* this should fire up the pollution mini screen within a second. */ mini_screen_flags = MINI_SCREEN_POL_FLAG; #endif } } /* do rail traffic */ else if (MP_GROUP(tx,ty) == GROUP_RAIL) { /* food */ if ((flags & FLAG_MB_FOOD) != 0) { r = (MAX_FOOD_IN_MARKET * 1000) / (MAX_FOOD_ON_RAIL + MAX_FOOD_IN_MARKET); i = MP_INFO(x,y).int_1 + MP_INFO(tx,ty).int_1; MP_INFO(x,y).int_1 = (i * r) / 1000; MP_INFO(tx,ty).int_1 = i - MP_INFO(x,y).int_1; } /* jobs */ if ((flags & FLAG_MB_JOBS) != 0) { r = (MAX_JOBS_IN_MARKET * 1000) / (MAX_JOBS_ON_RAIL + MAX_JOBS_IN_MARKET); i = MP_INFO(x,y).int_2 + MP_INFO(tx,ty).int_2; MP_INFO(x,y).int_2 = (i * r) / 1000; MP_INFO(tx,ty).int_2 = i - MP_INFO(x,y).int_2; } /* coal */ if ((flags & FLAG_MB_COAL) != 0) { r = (MAX_COAL_IN_MARKET * 1000) / (MAX_COAL_ON_RAIL + MAX_COAL_IN_MARKET); i = MP_INFO(x,y).int_3 + MP_INFO(tx,ty).int_3; MP_INFO(x,y).int_3 = (i * r) / 1000; MP_INFO(tx,ty).int_3 = i - MP_INFO(x,y).int_3; } /* goods */ if ((flags & FLAG_MB_GOODS) != 0) { r = (MAX_GOODS_IN_MARKET * 1000) / (MAX_GOODS_ON_RAIL + MAX_GOODS_IN_MARKET); i = MP_INFO(x,y).int_4 + MP_INFO(tx,ty).int_4; MP_INFO(x,y).int_4 = (i * r) / 1000; MP_INFO(tx,ty).int_4 = i - MP_INFO(x,y).int_4; } /* ore */ if ((flags & FLAG_MB_ORE) != 0) { r = (MAX_ORE_IN_MARKET * 1000) / (MAX_ORE_ON_RAIL + MAX_ORE_IN_MARKET); i = MP_INFO(x,y).int_5 + MP_INFO(tx,ty).int_5; MP_INFO(x,y).int_5 = (i * r) / 1000; MP_INFO(tx,ty).int_5 = i - MP_INFO(x,y).int_5; } /* steel */ if ((flags & FLAG_MB_STEEL) != 0) { r = (MAX_STEEL_IN_MARKET * 1000) / (MAX_STEEL_ON_RAIL + MAX_STEEL_IN_MARKET); i = MP_INFO(x,y).int_6 + MP_INFO(tx,ty).int_6; MP_INFO(x,y).int_6 = (i * r) / 1000; MP_INFO(tx,ty).int_6 = i - MP_INFO(x,y).int_6; } /* waste */ r = (MAX_WASTE_IN_MARKET * 1000) / (MAX_WASTE_ON_RAIL + MAX_WASTE_IN_MARKET); i = MP_INFO(x,y).int_7 + MP_INFO(tx,ty).int_7; MP_INFO(x,y).int_7 = (i * r) / 1000; MP_INFO(tx,ty).int_7 = i - MP_INFO(x,y).int_7; } /* do road traffic */ else if (MP_GROUP(tx,ty) == GROUP_ROAD) { /* food */ if ((flags & FLAG_MB_FOOD) != 0) { r = (MAX_FOOD_IN_MARKET * 1000) / (MAX_FOOD_ON_ROAD + MAX_FOOD_IN_MARKET); i = MP_INFO(x,y).int_1 + MP_INFO(tx,ty).int_1; MP_INFO(x,y).int_1 = (i * r) / 1000; MP_INFO(tx,ty).int_1 = i - MP_INFO(x,y).int_1; } /* jobs */ if ((flags & FLAG_MB_JOBS) != 0) { r = (MAX_JOBS_IN_MARKET * 1000) / (MAX_JOBS_ON_ROAD + MAX_JOBS_IN_MARKET); i = MP_INFO(x,y).int_2 + MP_INFO(tx,ty).int_2; MP_INFO(x,y).int_2 = (i * r) / 1000; MP_INFO(tx,ty).int_2 = i - MP_INFO(x,y).int_2; } /* coal */ if ((flags & FLAG_MB_COAL) != 0) { r = (MAX_COAL_IN_MARKET * 1000) / (MAX_COAL_ON_ROAD + MAX_COAL_IN_MARKET); i = MP_INFO(x,y).int_3 + MP_INFO(tx,ty).int_3; MP_INFO(x,y).int_3 = (i * r) / 1000; MP_INFO(tx,ty).int_3 = i - MP_INFO(x,y).int_3; } /* goods */ if ((flags & FLAG_MB_GOODS) != 0) { r = (MAX_GOODS_IN_MARKET * 1000) / (MAX_GOODS_ON_ROAD + MAX_GOODS_IN_MARKET); i = MP_INFO(x,y).int_4 + MP_INFO(tx,ty).int_4; MP_INFO(x,y).int_4 = (i * r) / 1000; MP_INFO(tx,ty).int_4 = i - MP_INFO(x,y).int_4; } /* ore */ if ((flags & FLAG_MB_ORE) != 0) { r = (MAX_ORE_IN_MARKET * 1000) / (MAX_ORE_ON_ROAD + MAX_ORE_IN_MARKET); i = MP_INFO(x,y).int_5 + MP_INFO(tx,ty).int_5; MP_INFO(x,y).int_5 = (i * r) / 1000; MP_INFO(tx,ty).int_5 = i - MP_INFO(x,y).int_5; } /* steel */ if ((flags & FLAG_MB_STEEL) != 0) { r = (MAX_STEEL_IN_MARKET * 1000) / (MAX_STEEL_ON_ROAD + MAX_STEEL_IN_MARKET); i = MP_INFO(x,y).int_6 + MP_INFO(tx,ty).int_6; MP_INFO(x,y).int_6 = (i * r) / 1000; MP_INFO(tx,ty).int_6 = i - MP_INFO(x,y).int_6; } /* waste */ r = (MAX_WASTE_IN_MARKET * 1000) / (MAX_WASTE_ON_ROAD + MAX_WASTE_IN_MARKET); i = MP_INFO(x,y).int_7 + MP_INFO(tx,ty).int_7; MP_INFO(x,y).int_7 = (i * r) / 1000; MP_INFO(tx,ty).int_7 = i - MP_INFO(x,y).int_7; } else extra_jobs = 0; return (extra_jobs); } int get_stuff (int x, int y, int stuff, int stuff_type) { int res = 0; Map_Point_Info *minfo = &MP_INFO(x,y); switch (MP_SIZE(x,y)) { case 2: res = get_stuff2 (minfo, stuff, stuff_type); break; case 3: res = get_stuff3 (minfo, stuff, stuff_type); break; case 4: res = get_stuff4 (minfo, stuff, stuff_type); break; default: do_error ("Bad area size in get_stuff()"); } return (res); } static const int t2[8] = { -1, WORLD_SIDE_LEN - 1, 2 * WORLD_SIDE_LEN, 2 * WORLD_SIDE_LEN + 1, WORLD_SIDE_LEN + 2, 2, 1 - WORLD_SIDE_LEN, -WORLD_SIDE_LEN }; /* worth inlining -- (ThMO) */ int get_stuff2 (Map_Point_Info *map, int stuff, int stuff_type) { static int tstart2 = 0; int i, st, tst, *ip, *stack[8], **ssp; /* stack is a pipe -- (ThMO) */ /* we'll stack our found pointers so to avoid re-looping and * testing again (ThMO) */ tst = tstart2; /* can we find enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 8; i++) { if (map[t2[tst]].flags & FLAG_IS_TRANSPORT) { ip = &map[t2[tst]].int_1; ip += stuff_type; st += *ip; *ssp++ = ip; /* push it -- (ThMO) */ if (st >= stuff) { ssp = stack; do { ip = *ssp++; /* pop it -- (ThMO) */ *ip = (stuff -= *ip) < 0 ? -stuff : 0; } while (stuff > 0); tstart2 = ++tst & 7; return (1); } } if (++tst >= 8) tst = 0; } return (0); } static const int t3[12] = { -1, WORLD_SIDE_LEN - 1, 2 * WORLD_SIDE_LEN - 1, 3 * WORLD_SIDE_LEN, 3 * WORLD_SIDE_LEN + 1, 3 * WORLD_SIDE_LEN + 2, 2 * WORLD_SIDE_LEN + 3, WORLD_SIDE_LEN + 3, 3, 2 - WORLD_SIDE_LEN, 1 - WORLD_SIDE_LEN, -WORLD_SIDE_LEN }; /* worth inlining -- (ThMO) */ int get_stuff3 (Map_Point_Info *map, int stuff, int stuff_type) { static int tstart3 = 0; int i, st, tst, *ip, *stack[12], **ssp; /* stack is a pipe -- (ThMO) */ /* we'll stack our found pointers so to avoid re-looping and * testing again * (ThMO) */ tst = tstart3; /* can we find enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 12; i++) { if (map[t3[tst]].flags & FLAG_IS_TRANSPORT) { ip = &map[t3[tst]].int_1; ip += stuff_type; st += *ip; *ssp++ = ip; /* push it -- (ThMO) */ if (st >= stuff) { ssp = stack; do { ip = *ssp++; /* pop it -- (ThMO) */ *ip = (stuff -= *ip) < 0 ? -stuff : 0; } while (stuff > 0); ++tst; tstart3 = tst >= 12 ? 0 : tst; return (1); } } if (++tst >= 12) tst = 0; } return (0); } static const int t4[16] = { -1, WORLD_SIDE_LEN - 1, 2 * WORLD_SIDE_LEN - 1, 3 * WORLD_SIDE_LEN - 1, 4 * WORLD_SIDE_LEN, 4 * WORLD_SIDE_LEN + 1, 4 * WORLD_SIDE_LEN + 2, 4 * WORLD_SIDE_LEN + 3, 3 * WORLD_SIDE_LEN + 4, 2 * WORLD_SIDE_LEN + 4, WORLD_SIDE_LEN + 4, 4, 3 - WORLD_SIDE_LEN, 2 - WORLD_SIDE_LEN, 1 - WORLD_SIDE_LEN, -WORLD_SIDE_LEN }; /* worth inlining -- (ThMO) */ int get_stuff4 (Map_Point_Info *map, int stuff, int stuff_type) { static int tstart4 = 0; int i, st, tst, *ip, *stack[16], **ssp; /* stack is a pipe -- (ThMO) */ /* we'll stack our found pointers so to avoid re-looping and * testing again * (ThMO) */ tst = tstart4; /* can we find enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 16; i++) { if (map[t4[tst]].flags & FLAG_IS_TRANSPORT) { ip = &map[t4[tst]].int_1; ip += stuff_type; st += *ip; *ssp++ = ip; /* push it -- (ThMO) */ if (st >= stuff) { ssp = stack; do { ip = *ssp++; /* pop it -- (ThMO) */ *ip = (stuff -= *ip) < 0 ? -stuff : 0; } while (stuff > 0); tstart4 = ++tst & 15; return (1); } } if (++tst >= 16) tst = 0; } return (0); } int put_stuff (int x, int y, int stuff, int stuff_type) { int res = 0; short *type = &MP_TYPE(x,y); Map_Point_Info *minfo = &MP_INFO(x,y); switch (MP_SIZE(x,y)) { case 2: res = put_stuff2 (minfo, type, stuff, stuff_type); break; case 3: res = put_stuff3 (minfo, type, stuff, stuff_type); break; case 4: res = put_stuff4 (minfo, type, stuff, stuff_type); break; default: do_error ("Bad area size in put_stuff()"); } return res; } int tmax[3][7] = { {MAX_FOOD_ON_TRACK, MAX_JOBS_ON_TRACK ,MAX_COAL_ON_TRACK, MAX_GOODS_ON_TRACK, MAX_ORE_ON_TRACK ,MAX_STEEL_ON_TRACK, MAX_WASTE_ON_TRACK}, {MAX_FOOD_ON_ROAD, MAX_JOBS_ON_ROAD ,MAX_COAL_ON_ROAD, MAX_GOODS_ON_ROAD, MAX_ORE_ON_ROAD ,MAX_STEEL_ON_ROAD, MAX_WASTE_ON_ROAD}, {MAX_FOOD_ON_RAIL, MAX_JOBS_ON_RAIL ,MAX_COAL_ON_RAIL, MAX_GOODS_ON_RAIL, MAX_ORE_ON_RAIL ,MAX_STEEL_ON_RAIL, MAX_WASTE_ON_RAIL} }; struct stack { int *ip, max_val; }; /* worth inlining -- (ThMO) */ int put_stuff2 (Map_Point_Info *minfo, short *type, int stuff, int stuff_type) { static int tstart2 = 0; int i, st, tst, *ip, tp = 0; struct stack stack[8], *ssp; /* stack is really a pipe -- (ThMO) */ /* we'll stack our found pointers so to avoid re-looping and * testing again (ThMO) */ tst = tstart2; /* can we put enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 8; i++) { int map_index = t2[tst]; if (minfo[map_index].flags & FLAG_IS_TRANSPORT) { switch (get_group_of_type(type[map_index])) { case GROUP_TRACK: tp = tmax[0][stuff_type]; break; case GROUP_ROAD: tp = tmax[1][stuff_type]; break; case GROUP_RAIL: tp = tmax[2][stuff_type]; break; default: do_error ("Bad transport type in put_stuff2"); } ip = &minfo[map_index].int_1; ssp->ip = ip += stuff_type; /* push it -- (ThMO) */ ssp++->max_val = tp; st += tp - *ip; if (st >= stuff) { ssp = stack; do { tp = ssp->max_val - *ssp->ip; /* pop it -- (ThMO) */ if ((stuff -= tp) < 0) *ssp->ip += tp + stuff; /* == orig. stuff -- (ThMO) */ else *ssp->ip = ssp->max_val; ++ssp; } while (stuff > 0); tstart2 = ++tst & 7; return (1); } } if (++tst >= 8) tst = 0; } return (0); } /* worth inlining -- (ThMO) */ int put_stuff3 (Map_Point_Info *minfo, short *type, int stuff, int stuff_type) { static int tstart3 = 0; int i, st, tst, *ip, tp = 0; struct stack stack[12], *ssp; /* stack is really a pipe -- (ThMO) we'll stack our found pointers so to avoid re-looping and testing again (ThMO) */ tst = tstart3; /* can we put enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 12; i++) { int map_index = t3[tst]; if (minfo[map_index].flags & FLAG_IS_TRANSPORT) { switch (get_group_of_type(type[map_index])) { case GROUP_TRACK: tp = tmax[0][stuff_type]; break; case GROUP_ROAD: tp = tmax[1][stuff_type]; break; case GROUP_RAIL: tp = tmax[2][stuff_type]; break; default: do_error ("Bad transport type in put_stuff3"); } ip = &minfo[map_index].int_1; ssp->ip = ip += stuff_type; /* push it -- (ThMO) */ ssp++->max_val = tp; st += tp - *ip; if (st >= stuff) { ssp = stack; do { tp = ssp->max_val - *ssp->ip; /* pop it -- (ThMO) */ if ((stuff -= tp) < 0) *ssp->ip += tp + stuff; /* == orig. stuff -- (ThMO) */ else *ssp->ip = ssp->max_val; ++ssp; } while (stuff > 0); ++tst; tstart3 = tst >= 12 ? 0 : tst; return (1); } } if (++tst >= 12) tst = 0; } return (0); } /* worth inlining -- (ThMO) */ int put_stuff4 (Map_Point_Info *minfo, short *type, int stuff, int stuff_type) { static int tstart4 = 0; int i, st, tst, *ip, tp = 0; struct stack stack[16], *ssp; /* stack is really a pipe -- (ThMO) */ /* we'll stack our found pointers so to avoid re-looping and * testing again (ThMO) */ tst = tstart4; /* can we put enough on the transport? */ for (ssp = stack, st = 0, i = 0; i < 16; i++) { int map_index = t4[tst]; if (minfo[map_index].flags & FLAG_IS_TRANSPORT) { switch (get_group_of_type(type[map_index])) { case GROUP_TRACK: tp = tmax[0][stuff_type]; break; case GROUP_ROAD: tp = tmax[1][stuff_type]; break; case GROUP_RAIL: tp = tmax[2][stuff_type]; break; default: do_error ("Bad transport type in put_stuff4"); } ip = &minfo[map_index].int_1; ssp->ip = ip += stuff_type; /* push it -- (ThMO) */ ssp++->max_val = tp; st += tp - *ip; if (st >= stuff) { ssp = stack; do { tp = ssp->max_val - *ssp->ip; /* pop it -- (ThMO) */ if ((stuff -= tp) < 0) *ssp->ip += tp + stuff; /* == orig. stuff -- (ThMO) */ else *ssp->ip = ssp->max_val; ++ssp; } while (stuff > 0); tstart4 = ++tst & 15; return (1); } } if (++tst >= 16) tst = 0; } return (0); } void mps_market (int x, int y) { int i = 0; mps_store_title(i++,_("Market")); i++; mps_store_sfp(i++,_("Food"), MP_INFO(x,y).int_1 * 100.0 / MAX_FOOD_IN_MARKET); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_2 * 100.0 / MAX_JOBS_IN_MARKET); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_IN_MARKET); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_4 * 100.0 / MAX_GOODS_IN_MARKET); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_5 * 100.0 / MAX_ORE_IN_MARKET); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_6 * 100.0 / MAX_STEEL_IN_MARKET); mps_store_sfp(i++,_("Waste"), MP_INFO(x,y).int_7 * 100.0 / MAX_WASTE_IN_MARKET); } lincity-1.13.1/simulate.c0000644000175000017500000005164407711127503012175 00000000000000/* ---------------------------------------------------------------------- * * simulate.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include #include #if defined (WIN32) #include #include #include #include #endif #include #include "common.h" #ifdef LC_X11 #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "screen.h" #include "power.h" #include "stats.h" #include "pbar.h" #include "module_buttons.h" /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ static void do_periodic_events (void); static void end_of_month_update (void); static void start_of_year_update (void); static void end_of_year_update (void); static void random_start (int* originx, int* originy); static void simulate_mappoints (void); static void quick_start_add (int x, int y, short type, int size); /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ void do_time_step (void) { /* Increment game time */ total_time++; #ifdef DEBUG_ENGINE printf ("In do_time_step (%d)\n", total_time); #endif /* Initialize daily accumulators */ init_daily(); /* Initialize monthly accumulators */ if (total_time % NUMOF_DAYS_IN_MONTH == 0) { init_monthly(); } /* Initialize yearly accumulators */ if ((total_time % NUMOF_DAYS_IN_YEAR) == 0) { init_yearly(); } /* Clear the power grid */ power_time_step (); /* Run through simulation equations for each farm, residence, etc. */ simulate_mappoints (); /* Now do the stuff that happens once a year, once a month, etc. */ do_periodic_events (); } void clear_mappoint (short fill, int x, int y) { MP_TYPE(x,y) = fill; MP_GROUP(x,y) = get_group_of_type(fill); if (MP_GROUP(x,y) < 0) MP_GROUP(x,y) = GROUP_BARE; MP_INFO(x,y).population = 0; MP_INFO(x,y).flags = 0; MP_INFO(x,y).int_1 = 0; MP_INFO(x,y).int_2 = 0; MP_INFO(x,y).int_3 = 0; MP_INFO(x,y).int_4 = 0; MP_INFO(x,y).int_5 = 0; MP_INFO(x,y).int_6 = 0; MP_INFO(x,y).int_7 = 0; } static void simulate_mappoints (void) { int xx, yy; shuffle_mappoint_array (); for (yy = 0; yy < WORLD_SIDE_LEN; yy++) { /* indirection to rand array to stop lots of linear effects */ int y = mappoint_array_y[yy]; for (xx = 0; xx < WORLD_SIDE_LEN; xx++) { int x = mappoint_array_x[xx]; short grp = MP_GROUP(x,y); if (grp == GROUP_USED || grp == GROUP_BARE) continue; switch (grp) { case GROUP_TRACK: do_track (x, y); break; case GROUP_RAIL: do_rail (x, y); break; case GROUP_ROAD: do_road (x, y); break; case GROUP_ORGANIC_FARM: do_organic_farm (x, y); break; case GROUP_MARKET: do_market (x, y); break; case GROUP_RESIDENCE_LL: do_residence (x, y); break; case GROUP_RESIDENCE_ML: do_residence (x, y); break; case GROUP_RESIDENCE_HL: do_residence (x, y); break; case GROUP_RESIDENCE_LH: do_residence (x, y); break; case GROUP_RESIDENCE_MH: do_residence (x, y); break; case GROUP_RESIDENCE_HH: do_residence (x, y); break; case GROUP_POWER_LINE: do_power_line (x, y); break; case GROUP_SOLAR_POWER: do_power_source (x, y); break; case GROUP_SUBSTATION: do_power_substation (x, y); break; case GROUP_COALMINE: do_coalmine (x, y); break; case GROUP_COAL_POWER: do_power_source_coal (x, y); break; case GROUP_INDUSTRY_L: do_industry_l (x, y); break; case GROUP_INDUSTRY_H: do_industry_h (x, y); break; case GROUP_COMMUNE: do_commune (x, y); break; case GROUP_OREMINE: do_oremine (x, y); break; case GROUP_PORT: do_port (x, y); break; case GROUP_TIP: do_tip (x, y); break; case GROUP_PARKLAND: do_parkland (x, y); break; case GROUP_UNIVERSITY: do_university (x, y); break; case GROUP_RECYCLE: do_recycle (x, y); break; case GROUP_HEALTH: do_health_centre (x, y); break; case GROUP_ROCKET: do_rocket_pad (x, y); break; case GROUP_WINDMILL: do_windmill (x, y); break; case GROUP_MONUMENT: do_monument (x, y); break; case GROUP_SCHOOL: do_school (x, y); break; case GROUP_BLACKSMITH: do_blacksmith (x, y); break; case GROUP_MILL: do_mill (x, y); break; case GROUP_POTTERY: do_pottery (x, y); break; case GROUP_FIRESTATION: do_firestation (x, y); break; case GROUP_CRICKET: do_cricket (x, y); break; case GROUP_FIRE: do_fire (x, y); break; case GROUP_SHANTY: do_shanty (x, y); break; } } } } /* ---------------------------------------------------------------------- * * Private Functions * ---------------------------------------------------------------------- */ static void do_periodic_events (void) { add_daily_to_monthly(); if ((total_time % NUMOF_DAYS_IN_YEAR) == 0) { start_of_year_update (); } if ((total_time % DAYS_BETWEEN_FIRES) == 9 && tech_level > (GROUP_FIRESTATION_TECH * MAX_TECH_LEVEL / 1000)) { do_random_fire (-1, -1, 1); } if ((total_time % DAYS_BETWEEN_COVER) == 75) { clear_fire_health_and_cricket_cover (); do_fire_health_and_cricket_cover (); } if ((total_time % DAYS_BETWEEN_SHANTY) == 85 && tech_level > (GROUP_HEALTH_TECH * MAX_TECH_LEVEL / 1000)) { update_shanty (); } if (total_time % NUMOF_DAYS_IN_MONTH == (NUMOF_DAYS_IN_MONTH - 1)) { end_of_month_update (); } if (total_time % NUMOF_DAYS_IN_YEAR == (NUMOF_DAYS_IN_YEAR - 1)) { end_of_year_update (); } if ((total_time % DAYS_PER_POLLUTION) == 3) { do_pollution (); } } static void end_of_month_update (void) { /* GCS FIX -- seems to be a bit of engine code embedded in do_monthgraph(), such as coal_made, coal_used, etc. Check it out soon... */ housed_population = (tpopulation / NUMOF_DAYS_IN_MONTH); if ((housed_population + people_pool) > max_pop_ever) max_pop_ever = housed_population + people_pool; if (people_pool > 100) { if (rand () % 1000 < people_pool) people_pool -= 10; } if (people_pool < 0) people_pool = 0; if (tech_level > TECH_LEVEL_LOSS_START) { tech_level-=tech_level*(1./TECH_LEVEL_LOSS) *(1+(tpopulation *(1./NUMOF_DAYS_IN_MONTH/120 /(TECH_LEVEL_LOSS-200)))); } else tech_level += TECH_LEVEL_UNAIDED; /* we can go over 100, but it's even more difficult */ if (tech_level > MAX_TECH_LEVEL) tech_level-=(tech_level-MAX_TECH_LEVEL) *(1./TECH_LEVEL_LOSS) *(1+(tpopulation *(1./NUMOF_DAYS_IN_MONTH/120 /(TECH_LEVEL_LOSS-100)))); if (highest_tech_level < tech_level) highest_tech_level = tech_level; deaths_cost += unnat_deaths * UNNAT_DEATHS_COST; } static void start_of_year_update (void) { int u; sustainability_test (); pollution_deaths_history -= pollution_deaths_history / 100.0; starve_deaths_history -= starve_deaths_history / 100.0; unemployed_history -= unemployed_history / 100.0; u = count_groups (GROUP_UNIVERSITY); if (u > 0) { university_intake_rate = (count_groups (GROUP_SCHOOL) * 20) / u; if (university_intake_rate > 100) university_intake_rate = 100; } else { university_intake_rate = 50; } map_power_grid(); } static void end_of_year_update (void) { income_tax = (income_tax * income_tax_rate) / 100; ly_income_tax = income_tax; total_money += income_tax; coal_tax = (coal_tax * coal_tax_rate) / 100; ly_coal_tax = coal_tax; total_money += coal_tax; goods_tax = (goods_tax * goods_tax_rate) / 100; goods_tax += (int) ((float) (goods_tax * goods_tax_rate) * (float) tech_level / 2000000.0); ly_goods_tax = goods_tax; total_money += goods_tax; /* The price of exports on the world market drops as you export more. The exporters have to discount there wares, therefore the tax take is less. */ if (export_tax > ex_tax_dis[0]) { int discount, disi; discount = 0; for (disi = 0; disi < NUMOF_DISCOUNT_TRIGGERS && export_tax > ex_tax_dis[disi]; disi++) discount += (export_tax - ex_tax_dis[disi]) / 10; export_tax -= discount; } ly_export_tax = export_tax; total_money += export_tax; ly_university_cost = university_cost; ly_recycle_cost = recycle_cost; ly_deaths_cost = deaths_cost; ly_health_cost = (health_cost * (tech_level / 10000) * HEALTH_RUNNING_COST_MUL) / (MAX_TECH_LEVEL / 10000); ly_rocket_pad_cost = rocket_pad_cost; ly_school_cost = school_cost; ly_windmill_cost = windmill_cost; ly_fire_cost = (fire_cost * (tech_level / 10000) * FIRESTATION_RUNNING_COST_MUL) / (MAX_TECH_LEVEL / 10000); ly_cricket_cost = cricket_cost; if (total_money < 0) { ly_interest = ((-total_money / 1000) * INTEREST_RATE); if (ly_interest > 1000000) ly_interest = 1000000; } else ly_interest = 0; other_cost = university_cost + recycle_cost + deaths_cost + ly_health_cost + rocket_pad_cost + school_cost + ly_interest + windmill_cost + ly_fire_cost + ly_cricket_cost; ly_other_cost = other_cost; total_money -= other_cost; unemployment_cost = (unemployment_cost * dole_rate) / 100; ly_unemployment_cost = unemployment_cost; total_money -= unemployment_cost; transport_cost = (transport_cost * transport_cost_rate) / 100; ly_transport_cost = transport_cost; total_money -= transport_cost; import_cost = (import_cost * import_cost_rate) / 100; ly_import_cost = import_cost; total_money -= import_cost; if (total_money > 2000000000) total_money = 2000000000; else if (total_money < -2000000000) total_money = -2000000000; print_total_money (); } static void clear_game (void) { int x, y; for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { clear_mappoint (CST_GREEN, x, y); MP_POL(x,y) = 0; } } total_time = 0; coal_survey_done = 0; numof_shanties = 0; numof_communes = 0; numof_substations = 0; numof_health_centres = 0; numof_markets = 0; max_pop_ever = 0; total_evacuated = 0; total_births = 0; total_money = 0; tech_level = 0; init_inventory(); update_avail_modules(0); } void new_city (int* originx, int* originy, int random_village) { clear_game (); coal_reserve_setup (); setup_river (); ore_reserve_setup (); init_pbars (); /* Initial population is 100 for empty board or 200 for random village (100 are housed). */ people_pool = 100; if (random_village != 0) { random_start (originx, originy); update_pbar(PPOP,200,1); /* So pbars don't flash */ } else { *originx = *originy = WORLD_SIDE_LEN/2 ; update_pbar(PPOP,100,1); } connect_transport (1,1,WORLD_SIDE_LEN-2,WORLD_SIDE_LEN-2); refresh_pbars (); } void coal_reserve_setup (void) { int i, j, x, y, xx, yy; for (i = 0; i < NUMOF_COAL_RESERVES / 5; i++) { x = (rand () % (WORLD_SIDE_LEN - 12)) + 6; y = (rand () % (WORLD_SIDE_LEN - 10)) + 6; do { xx = (rand () % 3) - 1; yy = (rand () % 3) - 1; } while (xx == 0 && yy == 0); for (j = 0; j < 5; j++) { MP_INFO(x,y).coal_reserve += rand () % COAL_RESERVE_SIZE; x += xx; y += yy; } } } void ore_reserve_setup (void) { int x, y; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) MP_INFO(x,y).ore_reserve = ORE_RESERVE; } void setup_river (void) { int x, y, i, j; x = WORLD_SIDE_LEN / 2; y = WORLD_SIDE_LEN - 1; i = (rand () % 12) + 6; for (j = 0; j < i; j++) { x += (rand () % 3) - 1; MP_TYPE(x,y) = CST_WATER; MP_GROUP(x,y) = GROUP_WATER; MP_INFO(x,y).flags |= FLAG_IS_RIVER; MP_TYPE(x+1,y) = CST_WATER; MP_GROUP(x+1,y) = GROUP_WATER; MP_INFO(x+1,y).flags |= FLAG_IS_RIVER; MP_TYPE(x-1,y) = CST_WATER; MP_GROUP(x-1,y) = GROUP_WATER; MP_INFO(x-1,y).flags |= FLAG_IS_RIVER; y--; } MP_TYPE(x,y) = CST_WATER; MP_GROUP(x,y) = GROUP_WATER; MP_INFO(x,y).flags |= FLAG_IS_RIVER; MP_TYPE(x+1,y) = CST_WATER; MP_GROUP(x+1,y) = GROUP_WATER; MP_INFO(x+1,y).flags |= FLAG_IS_RIVER; MP_TYPE(x-1,y) = CST_WATER; MP_GROUP(x-1,y) = GROUP_WATER; MP_INFO(x-1,y).flags |= FLAG_IS_RIVER; setup_river2 (x - 1, y, -1); /* left tributary */ setup_river2 (x + 1, y, 1); /* right tributary */ } void setup_river2 (int x, int y, int d) { int i, j, r; i = (rand () % 55) + 15; for (j = 0; j < i; j++) { r = (rand () % 3) - 1 + (d * (rand () % 3)); if (r < -1) r = -1; else if (r > 1) r = 1; x += r; if (MP_TYPE(x+(d+d),y) != 0 || MP_TYPE(x+(d+d+d),y) != 0) return; if (x > 5 && x < WORLD_SIDE_LEN - 5) { MP_TYPE(x,y) = CST_WATER; MP_GROUP(x,y) = GROUP_WATER; MP_INFO(x,y).flags |= FLAG_IS_RIVER; MP_TYPE(x + d,y) = CST_WATER; MP_GROUP(x+d,y) = GROUP_WATER; MP_INFO(x+d,y).flags |= FLAG_IS_RIVER; } if (--y < 10 || x < 5 || x > WORLD_SIDE_LEN - 5) break; } if (y > 20) { if (x > 5 && x < WORLD_SIDE_LEN - 5) setup_river2 (x, y, -1); if (x > 5 && x < WORLD_SIDE_LEN - 5) setup_river2 (x, y, 1); } } int count_groups (int g) { int x, y, i; i = 0; for (y = 0; y < WORLD_SIDE_LEN; y++) for (x = 0; x < WORLD_SIDE_LEN; x++) if (MP_GROUP(x,y) == g) i++; return (i); } void count_all_groups (int* group_count) { int x, y; unsigned short t, g; for (x = 0; x < NUM_OF_GROUPS; x++) group_count[x] = 0; for (y = 0; y < WORLD_SIDE_LEN; y++) { for (x = 0; x < WORLD_SIDE_LEN; x++) { t = MP_TYPE(x,y); if (t != CST_USED && t != CST_GREEN) { g = get_group_of_type(t); group_count[g]++; } } } } static void random_start (int* originx, int* originy) { int x, y, xx, yy, flag, watchdog; /* first find a place that has some water. */ watchdog = 90; /* if too many tries, random placement. */ do { do { xx = rand () % (WORLD_SIDE_LEN - 25); yy = rand () % (WORLD_SIDE_LEN - 25); flag = 0; for (y = yy + 2; y < yy + 23; y++) for (x = xx + 2; x < xx + 23; x++) if (MP_GROUP(x,y) == GROUP_WATER) { flag = 1; x = xx + 23; /* break out of loop */ y = yy + 23; /* break out of loop */ } } while (flag == 0 || (--watchdog) < 1); for (y = yy + 4; y < yy + 22; y++) for (x = xx + 4; x < xx + 22; x++) if (MP_GROUP(x,y) != GROUP_BARE) { flag = 0; x = xx + 22; /* break out of loop */ y = yy + 22; /* break out of loop */ } } while (flag == 0 || (--watchdog) < 1); /* These are going to be the main_screen_origin? vars */ *originx = xx; *originy = yy; /* Draw the start scene. */ quick_start_add (xx + 5, yy + 5, CST_FARM_O0, 4); quick_start_add (xx + 9, yy + 6, CST_RESIDENCE_ML, 3); MP_INFO(xx + 9,yy + 6).population = 50; MP_INFO(xx + 9,yy + 6).flags |= (FLAG_FED + FLAG_EMPLOYED); quick_start_add (xx + 7, yy + 9, CST_MARKET_EMPTY, 2); marketx[numof_markets] = xx + 7; markety[numof_markets] = yy + 9; numof_markets++; /* Bootstap markets with some stuff. */ MP_INFO(xx + 7,yy + 9).int_1 = 2000; MP_INFO(xx + 7,yy + 9).int_2 = 10000; MP_INFO(xx + 7,yy + 9).int_3 = 100; MP_INFO(xx + 7,yy + 9).int_5 = 10000; MP_INFO(xx + 7,yy + 9).flags |= (FLAG_MB_FOOD + FLAG_MS_FOOD + FLAG_MB_JOBS + FLAG_MS_JOBS + FLAG_MB_COAL + FLAG_MS_COAL + FLAG_MB_ORE + FLAG_MS_ORE + FLAG_MB_GOODS + FLAG_MS_GOODS + FLAG_MB_STEEL + FLAG_MS_STEEL); quick_start_add (xx + 14, yy + 6, CST_RESIDENCE_ML, 3); MP_INFO(xx + 14,yy + 6).population = 50; MP_INFO(xx + 14,yy + 6).flags |= (FLAG_FED + FLAG_EMPLOYED); quick_start_add (xx + 17, yy + 5, CST_FARM_O0, 4); quick_start_add (xx + 17, yy + 9, CST_MARKET_EMPTY, 2); marketx[numof_markets] = xx + 17; markety[numof_markets] = yy + 9; numof_markets++; MP_INFO(xx + 17,yy + 9).int_1 = 2000; MP_INFO(xx + 17,yy + 9).int_2 = 8000; MP_INFO(xx + 17,yy + 9).flags |= (FLAG_MB_FOOD + FLAG_MS_FOOD + FLAG_MB_JOBS + FLAG_MS_JOBS + FLAG_MB_COAL + FLAG_MS_COAL + FLAG_MB_ORE + FLAG_MS_ORE + FLAG_MB_GOODS + FLAG_MS_GOODS + FLAG_MB_STEEL + FLAG_MS_STEEL); for (x = 5; x < 19; x++) { quick_start_add (xx + x, yy + 11, CST_TRACK_LR, 1); MP_INFO(xx + x,yy + 11).flags |= FLAG_IS_TRANSPORT; } for (y = 12; y < 18; y++) { quick_start_add (xx + 5, yy + y, CST_TRACK_LR, 1); MP_INFO(xx + 5,yy + y).flags |= FLAG_IS_TRANSPORT; } quick_start_add (xx + 6, yy + 12, CST_COMMUNE_1, 4); quick_start_add (xx + 6, yy + 17, CST_COMMUNE_1, 4); quick_start_add (xx + 11, yy + 12, CST_COMMUNE_1, 4); quick_start_add (xx + 11, yy + 17, CST_COMMUNE_1, 4); quick_start_add (xx + 16, yy + 12, CST_COMMUNE_1, 4); quick_start_add (xx + 16, yy + 17, CST_COMMUNE_1, 4); for (x = 6; x < 17; x++) { quick_start_add (xx + x, yy + 16, CST_TRACK_LR, 1); MP_INFO(xx + x,yy + 16).flags |= FLAG_IS_TRANSPORT; } for (y = 12; y < 16; y++) { quick_start_add (xx + 10, yy + y, CST_TRACK_LR, 1); MP_INFO(xx + 10,yy + y).flags |= FLAG_IS_TRANSPORT; quick_start_add (xx + 15, yy + y, CST_TRACK_LR, 1); MP_INFO(xx + 15,yy + y).flags |= FLAG_IS_TRANSPORT; } quick_start_add (xx + 10, yy + 17, CST_TRACK_LR, 1); MP_INFO(xx + 10,yy + 17).flags |= FLAG_IS_TRANSPORT; quick_start_add (xx + 15, yy + 17, CST_TRACK_LR, 1); MP_INFO(xx + 15,yy + 17).flags |= FLAG_IS_TRANSPORT; quick_start_add (xx + 9, yy + 9, CST_POTTERY_0, 2); } /* XXX: WCK: What is up with this? Why not just use set_mappoint?! */ static void quick_start_add (int x, int y, short type, int size) { int xx, yy; if (size == 1) { MP_TYPE(x,y) = type; MP_GROUP(x,y) = get_group_of_type(type); return; } for (yy = 0; yy < size; yy++) { for (xx = 0; xx < size; xx++) { if (xx == 0 && yy == 0) continue; set_mappoint_used (x, y, x + xx, y + yy); } } MP_TYPE(x,y) = type; MP_GROUP(x,y) = get_group_of_type(type); } void sustainability_test (void) { int i; if (sust_dig_ore_coal_tip_flag == 0) { sust_dig_ore_coal_tip_flag = 1; sust_dig_ore_coal_count = 0; } else sust_dig_ore_coal_count++; if (sust_port_flag == 0) { sust_port_flag = 1; sust_port_count = 0; } else sust_port_count++; /* Money must be going up or the same. (ie can't build.) */ if (sust_old_money > total_money) sust_old_money_count = 0; else sust_old_money_count++; sust_old_money = total_money; /* population must be withing 2% of when it started. */ i = (housed_population + people_pool) - sust_old_population; if (abs (i) > (sust_old_population / 40) /* 2.5% */ || (housed_population + people_pool) < SUST_MIN_POPULATION) { sust_old_population = (housed_population + people_pool); sust_old_population_count = 0; } else sust_old_population_count++; /* tech level must be going up or not fall more than 0.5% from it's highest during the sus count */ i = tech_level - sust_old_tech; if (i < 0 || tech_level < SUST_MIN_TECH_LEVEL) { i = -i; if ((i > sust_old_tech / 100) || tech_level < SUST_MIN_TECH_LEVEL) { sust_old_tech_count = 0; sust_old_tech = tech_level; } else sust_old_tech_count++; } else { sust_old_tech_count++; sust_old_tech = tech_level; } /* check fire cover only every three years */ if (total_time % (NUMOF_DAYS_IN_YEAR * 3) == 0) { if (sust_fire_cover () != 0) sust_fire_count += 3; else sust_fire_count = 0; } } int sust_fire_cover (void) { int x, y; for (x = 0; x < WORLD_SIDE_LEN; x++) for (y = 0; y < WORLD_SIDE_LEN; y++) { if (MP_GROUP(x,y) == GROUP_BARE || MP_TYPE(x,y) == CST_USED || MP_GROUP(x,y) == GROUP_WATER || MP_GROUP(x,y) == GROUP_POWER_LINE || MP_GROUP(x,y) == GROUP_OREMINE || MP_GROUP(x,y) == GROUP_ROCKET || MP_GROUP(x,y) == GROUP_MONUMENT || MP_GROUP(x,y) == GROUP_BURNT) ; /* do nothing */ else if ((MP_INFO(x,y).flags & FLAG_FIRE_COVER) == 0) return (0); } return (1); } void debug_mappoints (void) { int x, y; for (x = 0; x < WORLD_SIDE_LEN; x++) { for (y = 0; y < WORLD_SIDE_LEN; y++) { if ((MP_TYPE(x,y) < 0) || (MP_TYPE(x,y) > 400)) { printf ("Error in mappoint %d %d (%d)\n", x, y, MP_TYPE(x,y)); exit(-1); } } } } void initialize_tax_rates (void) { income_tax_rate = INCOME_TAX_RATE; coal_tax_rate = COAL_TAX_RATE; goods_tax_rate = GOODS_TAX_RATE; dole_rate = DOLE_RATE; transport_cost_rate = TRANSPORT_COST_RATE; import_cost_rate = IM_PORT_COST_RATE; } lincity-1.13.1/shrtypes.c0000644000175000017500000003212507344312400012216 00000000000000/* ---------------------------------------------------------------------- * * shrtypes.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include "lcstring.h" #include "common.h" #include "lctypes.h" #include "lin-city.h" #include "typeinit.h" #include "cliglobs.h" #include "engglobs.h" void set_mappoint_used (int fromx, int fromy, int x, int y) { MP_TYPE(x,y) = CST_USED; MP_GROUP(x,y) = GROUP_USED; MP_INFO(x,y).int_1 = fromx; MP_INFO(x,y).int_2 = fromy; } void set_mappoint (int x, int y, short selected_type) { int grp; if ((grp = get_group_of_type(selected_type)) < 0) return; MP_TYPE(x,y) = selected_type; MP_GROUP(x,y) = grp; if (main_groups[grp].size == 2) { set_mappoint_used (x, y, x + 1, y); set_mappoint_used (x, y, x, y + 1); set_mappoint_used (x, y, x + 1, y + 1); } else if (main_groups[grp].size == 3) { set_mappoint_used (x, y, x + 1, y); set_mappoint_used (x, y, x + 2, y); set_mappoint_used (x, y, x + 1, y + 1); set_mappoint_used (x, y, x + 2, y + 1); set_mappoint_used (x, y, x + 1, y + 2); set_mappoint_used (x, y, x + 2, y + 2); set_mappoint_used (x, y, x, y + 1); set_mappoint_used (x, y, x, y + 2); } else if (main_groups[grp].size == 4) { set_mappoint_used (x, y, x + 1, y); set_mappoint_used (x, y, x + 2, y); set_mappoint_used (x, y, x + 1, y + 1); set_mappoint_used (x, y, x + 2, y + 1); set_mappoint_used (x, y, x + 1, y + 2); set_mappoint_used (x, y, x + 2, y + 2); set_mappoint_used (x, y, x, y + 1); set_mappoint_used (x, y, x, y + 2); set_mappoint_used (x, y, x + 3, y); set_mappoint_used (x, y, x + 3, y + 1); set_mappoint_used (x, y, x + 3, y + 2); set_mappoint_used (x, y, x + 3, y + 3); set_mappoint_used (x, y, x, y + 3); set_mappoint_used (x, y, x + 1, y + 3); set_mappoint_used (x, y, x + 2, y + 3); } } void connect_transport (int originx, int originy, int w, int h) { int x, y, mask, tflags; short group, type; static const short power_table[16] = { CST_POWERL_H_D, CST_POWERL_V_D, CST_POWERL_H_D, CST_POWERL_RD_D, CST_POWERL_H_D, CST_POWERL_LD_D, CST_POWERL_H_D, CST_POWERL_LDR_D, CST_POWERL_V_D, CST_POWERL_V_D, CST_POWERL_RU_D, CST_POWERL_UDR_D, CST_POWERL_LU_D, CST_POWERL_LDU_D, CST_POWERL_LUR_D, CST_POWERL_LUDR_D }; static const short track_table[16] = { CST_TRACK_LR, CST_TRACK_LR, CST_TRACK_UD, CST_TRACK_LU, CST_TRACK_LR, CST_TRACK_LR, CST_TRACK_UR, CST_TRACK_LUR, CST_TRACK_UD, CST_TRACK_LD, CST_TRACK_UD, CST_TRACK_LUD, CST_TRACK_DR, CST_TRACK_LDR, CST_TRACK_UDR, CST_TRACK_LUDR }; static const short road_table[16] = { CST_ROAD_LR, CST_ROAD_LR, CST_ROAD_UD, CST_ROAD_LU, CST_ROAD_LR, CST_ROAD_LR, CST_ROAD_UR, CST_ROAD_LUR, CST_ROAD_UD, CST_ROAD_LD, CST_ROAD_UD, CST_ROAD_LUD, CST_ROAD_DR, CST_ROAD_LDR, CST_ROAD_UDR, CST_ROAD_LUDR }; static const short rail_table[16] = { CST_RAIL_LR, CST_RAIL_LR, CST_RAIL_UD, CST_RAIL_LU, CST_RAIL_LR, CST_RAIL_LR, CST_RAIL_UR, CST_RAIL_LUR, CST_RAIL_UD, CST_RAIL_LD, CST_RAIL_UD, CST_RAIL_LUD, CST_RAIL_DR, CST_RAIL_LDR, CST_RAIL_UDR, CST_RAIL_LUDR }; static const short water_table[16] = { CST_WATER, CST_WATER_D, CST_WATER_R, CST_WATER_RD, CST_WATER_L, CST_WATER_LD, CST_WATER_LR, CST_WATER_LRD, CST_WATER_U, CST_WATER_UD, CST_WATER_UR, CST_WATER_URD, CST_WATER_LU, CST_WATER_LUD, CST_WATER_LUR, CST_WATER_LURD }; /* Adjust originx,originy,w,h to proper range */ if (originx <= 0) { w -= 1 - originx; originx = 1; } if (originy <= 0) { h -= 1 - originy; originy = 1; } if (originx + w >= WORLD_SIDE_LEN) { w = WORLD_SIDE_LEN - originx; } if (originy + h >= WORLD_SIDE_LEN) { h = WORLD_SIDE_LEN - originy; } for (x = originx; x < originx + w; x++) { for (y = originy; y < originy + h; y++) { switch (MP_GROUP(x,y)) { case GROUP_POWER_LINE: /* First, set up a mask indicating into which directions power may be transferred */ mask = 0; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif { /* up -- (ThMO) */ group = MP_GROUP(x,y-1); /* see if dug under track, rail or road */ if (y > 1 && (group == GROUP_TRACK || group == GROUP_RAIL || group == GROUP_ROAD || group == GROUP_WATER)) group = MP_GROUP(x,y-2); switch (group) { case GROUP_POWER_LINE: case GROUP_SOLAR_POWER: case GROUP_SUBSTATION: case GROUP_COAL_POWER: mask |= 8; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif { /* left -- (ThMO) */ group = MP_GROUP(x-1,y); if (x > 1 && (group == GROUP_TRACK || group == GROUP_RAIL || group == GROUP_ROAD || group == GROUP_WATER)) group = MP_GROUP(x-2,y); switch (group) { case GROUP_POWER_LINE: case GROUP_SOLAR_POWER: case GROUP_SUBSTATION: case GROUP_COAL_POWER: mask |= 4; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x < WORLD_SIDE_LEN - 1) #endif { /* right -- (ThMO) */ group = MP_GROUP(x+1,y); if (x < WORLD_SIDE_LEN - 2 && (group == GROUP_TRACK || group == GROUP_RAIL || group == GROUP_ROAD || group == GROUP_WATER)) group = MP_GROUP(x+2,y); switch (group) { case GROUP_WINDMILL: if (MP_INFO(x + 1,y).int_2 < MODERN_WINDMILL_TECH) break; case GROUP_POWER_LINE: case GROUP_SOLAR_POWER: case GROUP_SUBSTATION: case GROUP_COAL_POWER: mask |= 2; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y < WORLD_SIDE_LEN - 1) #endif { /* down -- (ThMO) */ group = MP_GROUP(x,y+1); if (y < WORLD_SIDE_LEN - 2 && (group == GROUP_TRACK || group == GROUP_RAIL || group == GROUP_ROAD || group == GROUP_WATER)) group = MP_GROUP(x,y+2); switch (group) { case GROUP_WINDMILL: if (MP_INFO(x,y + 1).int_2 < MODERN_WINDMILL_TECH) break; case GROUP_POWER_LINE: case GROUP_SOLAR_POWER: case GROUP_SUBSTATION: case GROUP_COAL_POWER: ++mask; break; } } /* Next, set the connectivity into MP_TYPE */ MP_TYPE(x,y) = power_table[mask]; /* Finally, adjust MP_TYPE to show electon bolt */ #ifdef commentout WCK: This is done in do_power_line now if (MP_INFO(x,y).int_1 != 0) MP_TYPE(x,y) -= 11; #endif break; case GROUP_TRACK: #if FLAG_LEFT != 1 || FLAG_UP != 2 || FLAG_RIGHT != 4 || FLAG_DOWN != 8 #error check_track_graphics(): you loose #error this algorithm depends on proper flag settings -- (ThMO) #endif mask = 0; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif { if (MP_GROUP(x,y-1) == GROUP_TRACK) mask |= FLAG_UP; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif { if (MP_GROUP(x-1,y) == GROUP_TRACK) mask |= FLAG_LEFT; } tflags = mask; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x+1,y)) { case GROUP_TRACK: tflags |= FLAG_RIGHT; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_RIGHT; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif if (MP_GROUP(x+1,y-1) == GROUP_COAL_POWER) mask |= FLAG_RIGHT; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x,y+1)) { case GROUP_TRACK: tflags |= FLAG_DOWN; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_DOWN; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif if (MP_GROUP(x-1,y+1) == GROUP_COAL_POWER) mask |= FLAG_DOWN; break; } } MP_INFO(x,y).flags &= ~(FLAG_UP | FLAG_DOWN | FLAG_LEFT | FLAG_RIGHT); MP_INFO(x,y).flags |= tflags; MP_TYPE(x,y) = track_table[mask]; break; case GROUP_ROAD: #if FLAG_LEFT != 1 || FLAG_UP != 2 || FLAG_RIGHT != 4 || FLAG_DOWN != 8 #error check_road_graphics(): you loose #error this algorithm depends on proper flag settings -- (ThMO) #endif mask = 0; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif { if (MP_GROUP(x,y-1) == GROUP_ROAD) mask |= FLAG_UP; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif { if (MP_GROUP(x-1,y) == GROUP_ROAD) mask |= FLAG_LEFT; } tflags = mask; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x+1,y)) { case GROUP_ROAD: tflags |= FLAG_RIGHT; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_RIGHT; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif if (MP_GROUP(x+1,y-1) == GROUP_COAL_POWER) mask |= FLAG_RIGHT; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x,y+1)) { case GROUP_ROAD: tflags |= FLAG_DOWN; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_DOWN; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif if (MP_GROUP(x-1,y+1) == GROUP_COAL_POWER) mask |= FLAG_DOWN; break; } } MP_INFO(x,y).flags &= ~(FLAG_UP | FLAG_DOWN | FLAG_LEFT | FLAG_RIGHT); MP_INFO(x,y).flags |= tflags; MP_TYPE(x,y) = road_table[mask]; break; case GROUP_RAIL: #if FLAG_LEFT != 1 || FLAG_UP != 2 || FLAG_RIGHT != 4 || FLAG_DOWN != 8 #error check_rail_graphics(): you loose #error this algorithm depends on proper flag settings -- (ThMO) #endif mask = 0; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif { if (MP_GROUP(x,y-1) == GROUP_RAIL) mask |= FLAG_UP; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif { if (MP_GROUP(x-1,y) == GROUP_RAIL) mask |= FLAG_LEFT; } tflags = mask; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x+1,y)) { case GROUP_RAIL: tflags |= FLAG_RIGHT; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_RIGHT; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif if (MP_GROUP(x+1,y-1) == GROUP_COAL_POWER) mask |= FLAG_RIGHT; break; } } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y < WORLD_SIDE_LEN - 1) #endif { switch (MP_GROUP(x,y + 1)) { case GROUP_RAIL: tflags |= FLAG_DOWN; case GROUP_COMMUNE: case GROUP_COALMINE: case GROUP_OREMINE: case GROUP_INDUSTRY_L: case GROUP_INDUSTRY_H: case GROUP_RECYCLE: case GROUP_TIP: case GROUP_PORT: mask |= FLAG_DOWN; break; default: #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif if (MP_GROUP(x - 1,y + 1) == GROUP_COAL_POWER) mask |= FLAG_DOWN; break; } } MP_INFO(x,y).flags &= ~(FLAG_UP | FLAG_DOWN | FLAG_LEFT | FLAG_RIGHT); MP_INFO(x,y).flags |= tflags; MP_TYPE(x,y) = rail_table[mask]; break; case GROUP_WATER: mask = 0; #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y > 0) #endif { /* up -- (ThMO) */ if (MP_GROUP(x,y - 1) == GROUP_WATER) mask |= 8; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x > 0) #endif { /* left -- (ThMO) */ type = MP_TYPE(x - 1,y); if ((type == CST_USED && MP_GROUP(MP_INFO(x-1,y).int_1,MP_INFO(x-1,y).int_2) == GROUP_PORT) || get_group_of_type(type) == GROUP_WATER) mask |= 4; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (x < WORLD_SIDE_LEN - 1) #endif { /* right -- (ThMO) */ if (MP_GROUP(x + 1,y) == GROUP_WATER) mask |= 2; } #ifdef THOMMY_MAY_BE_WRONG /* just in case -- (ThMO) */ if (y < WORLD_SIDE_LEN - 1) #endif { /* down -- (ThMO) */ if (MP_GROUP(x,y + 1) == GROUP_WATER) ++mask; } MP_TYPE(x,y) = water_table[mask]; break; } /* end switch */ } /* end for */ } /* end for */ } lincity-1.13.1/lintypes.c0000644000175000017500000014305210071466117012214 00000000000000/* ---------------------------------------------------------------------- * * lintypes.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include /* XXX: portability issue? for strcpy */ #include "lcconfig.h" #include "lin-city.h" #include "engglobs.h" #include "lctypes.h" #include "shrglobs.h" #include "lintypes.h" #include "lcintl.h" #include "fileutil.h" #include "readpng.h" struct TYPE main_types[NUM_OF_TYPES]; struct GROUP main_groups[NUM_OF_GROUPS] = { /* 0 */ { N_("Empty"), /* name */ FALSE, /* need credit? */ GROUP_BARE, /* group number */ 1, /* size */ (green(12)), /* color */ 1, /* cost multiplier */ 1, /* bulldoze cost */ 0, /* probability of fire */ 0, /* cost */ 0 /* tech */ }, /* 1 */ { N_("Power line"), FALSE, /* need credit? */ GROUP_POWER_LINE, 1, /* size */ GROUP_POWER_LINE_COLOUR, GROUP_POWER_LINE_COST_MUL, GROUP_POWER_LINE_BUL_COST, GROUP_POWER_LINE_FIREC, GROUP_POWER_LINE_COST, GROUP_POWER_LINE_TECH }, /* 2 */ { N_("Solar PS"), TRUE, /* need credit? */ GROUP_SOLAR_POWER, 4, /* size */ GROUP_SOLAR_POWER_COLOUR, GROUP_SOLAR_POWER_COST_MUL, GROUP_SOLAR_POWER_BUL_COST, GROUP_SOLAR_POWER_FIREC, GROUP_SOLAR_POWER_COST, GROUP_SOLAR_POWER_TECH }, /* 3 */ { N_("Substation"), FALSE, /* need credit? */ GROUP_SUBSTATION, 2, /* size */ GROUP_SUBSTATION_COLOUR, GROUP_SUBSTATION_COST_MUL, GROUP_SUBSTATION_BUL_COST, GROUP_SUBSTATION_FIREC, GROUP_SUBSTATION_COST, GROUP_SUBSTATION_TECH }, /* 4 */ { N_("Residential LL"), FALSE, /* need credit? */ GROUP_RESIDENCE_LL, 3, /* size */ GROUP_RESIDENCE_LL_COLOUR, GROUP_RESIDENCE_LL_COST_MUL, GROUP_RESIDENCE_LL_BUL_COST, GROUP_RESIDENCE_LL_FIREC, GROUP_RESIDENCE_LL_COST, GROUP_RESIDENCE_LL_TECH }, /* 5 */ { N_("Farm"), FALSE, /* need credit? */ GROUP_ORGANIC_FARM, 4, /* size */ GROUP_ORGANIC_FARM_COLOUR, GROUP_ORGANIC_FARM_COST_MUL, GROUP_ORGANIC_FARM_BUL_COST, GROUP_ORGANIC_FARM_FIREC, GROUP_ORGANIC_FARM_COST, GROUP_ORGANIC_FARM_TECH }, /* 6 */ { N_("Market"), FALSE, /* need credit? */ GROUP_MARKET, 2, /* size */ GROUP_MARKET_COLOUR, GROUP_MARKET_COST_MUL, GROUP_MARKET_BUL_COST, GROUP_MARKET_FIREC, GROUP_MARKET_COST, GROUP_MARKET_TECH }, /* 7 */ { N_("Track"), FALSE, /* need credit? */ GROUP_TRACK, 1, /* size */ GROUP_TRACK_COLOUR, GROUP_TRACK_COST_MUL, GROUP_TRACK_BUL_COST, GROUP_TRACK_FIREC, GROUP_TRACK_COST, GROUP_TRACK_TECH }, /* 8 */ { N_("Coalmine"), FALSE, /* need credit? */ GROUP_COALMINE, 4, /* size */ GROUP_COALMINE_COLOUR, GROUP_COALMINE_COST_MUL, GROUP_COALMINE_BUL_COST, GROUP_COALMINE_FIREC, GROUP_COALMINE_COST, GROUP_COALMINE_TECH }, /* 9 */ { N_("Railway"), FALSE, /* need credit? */ GROUP_RAIL, 1, /* size */ GROUP_RAIL_COLOUR, GROUP_RAIL_COST_MUL, GROUP_RAIL_BUL_COST, GROUP_RAIL_FIREC, GROUP_RAIL_COST, GROUP_RAIL_TECH }, /* 10 */ { N_("Coal PS"), FALSE, /* need credit? */ GROUP_COAL_POWER, 4, /* size */ GROUP_COAL_POWER_COLOUR, GROUP_COAL_POWER_COST_MUL, GROUP_COAL_POWER_BUL_COST, GROUP_COAL_POWER_FIREC, GROUP_COAL_POWER_COST, GROUP_COAL_POWER_TECH }, /* 11 */ { N_("Road"), FALSE, /* need credit? */ GROUP_ROAD, 1, /* size */ GROUP_ROAD_COLOUR, GROUP_ROAD_COST_MUL, GROUP_ROAD_BUL_COST, GROUP_ROAD_FIREC, GROUP_ROAD_COST, GROUP_ROAD_TECH }, /* 12 */ { N_("Lt. Industry"), FALSE, /* need credit? */ GROUP_INDUSTRY_L, 3, /* size */ GROUP_INDUSTRY_L_COLOUR, GROUP_INDUSTRY_L_COST_MUL, GROUP_INDUSTRY_L_BUL_COST, GROUP_INDUSTRY_L_FIREC, GROUP_INDUSTRY_L_COST, GROUP_INDUSTRY_L_TECH }, /* 13 */ { N_("University"), FALSE, /* need credit? */ GROUP_UNIVERSITY, 3, /* size */ GROUP_UNIVERSITY_COLOUR, GROUP_UNIVERSITY_COST_MUL, GROUP_UNIVERSITY_BUL_COST, GROUP_UNIVERSITY_FIREC, GROUP_UNIVERSITY_COST, GROUP_UNIVERSITY_TECH }, /* 14 */ { N_("Commune"), FALSE, /* need credit? */ GROUP_COMMUNE, 4, /* size */ GROUP_COMMUNE_COLOUR, GROUP_COMMUNE_COST_MUL, GROUP_COMMUNE_BUL_COST, GROUP_COMMUNE_FIREC, GROUP_COMMUNE_COST, GROUP_COMMUNE_TECH }, /* 15 */ { N_("Ore mine"), FALSE, /* need credit? */ GROUP_OREMINE, 4, /* size */ GROUP_OREMINE_COLOUR, GROUP_OREMINE_COST_MUL, GROUP_OREMINE_BUL_COST, GROUP_OREMINE_FIREC, GROUP_OREMINE_COST, GROUP_OREMINE_TECH }, /* 16 */ { N_("Rubbish tip"), FALSE, /* need credit? */ GROUP_TIP, 4, /* size */ GROUP_TIP_COLOUR, GROUP_TIP_COST_MUL, GROUP_TIP_BUL_COST, GROUP_TIP_FIREC, GROUP_TIP_COST, GROUP_TIP_TECH }, /* 17 */ { N_("Port"), FALSE, /* need credit? */ GROUP_PORT, 4, /* size */ GROUP_PORT_COLOUR, GROUP_PORT_COST_MUL, GROUP_PORT_BUL_COST, GROUP_PORT_FIREC, GROUP_PORT_COST, GROUP_PORT_TECH }, /* 18 */ { N_("Hv. Industry"), FALSE, /* need credit? */ GROUP_INDUSTRY_H, 4, /* size */ GROUP_INDUSTRY_H_COLOUR, GROUP_INDUSTRY_H_COST_MUL, GROUP_INDUSTRY_H_BUL_COST, GROUP_INDUSTRY_H_FIREC, GROUP_INDUSTRY_H_COST, GROUP_INDUSTRY_H_TECH }, /* 19 */ { N_("Park"), TRUE, /* need credit? */ GROUP_PARKLAND, 1, /* size */ GROUP_PARKLAND_COLOUR, GROUP_PARKLAND_COST_MUL, GROUP_PARKLAND_BUL_COST, GROUP_PARKLAND_FIREC, GROUP_PARKLAND_COST, GROUP_PARKLAND_TECH }, /* 20 */ { N_("Recycle"), TRUE, /* need credit? */ GROUP_RECYCLE, 2, /* size */ GROUP_RECYCLE_COLOUR, GROUP_RECYCLE_COST_MUL, GROUP_RECYCLE_BUL_COST, GROUP_RECYCLE_FIREC, GROUP_RECYCLE_COST, GROUP_RECYCLE_TECH }, /* 21 */ { N_("Water"), FALSE, /* need credit? */ GROUP_WATER, 1, /* size */ GROUP_WATER_COLOUR, GROUP_WATER_COST_MUL, GROUP_WATER_BUL_COST, GROUP_WATER_FIREC, GROUP_WATER_COST, GROUP_WATER_TECH }, /* 22 */ { N_("Health centre"), FALSE, /* need credit? */ GROUP_HEALTH, 2, /* size */ GROUP_HEALTH_COLOUR, GROUP_HEALTH_COST_MUL, GROUP_HEALTH_BUL_COST, GROUP_HEALTH_FIREC, GROUP_HEALTH_COST, GROUP_HEALTH_TECH }, /* 23 */ { N_("Rocket pad"), TRUE, /* need credit? */ GROUP_ROCKET, 4, /* size */ GROUP_ROCKET_COLOUR, GROUP_ROCKET_COST_MUL, GROUP_ROCKET_BUL_COST, GROUP_ROCKET_FIREC, GROUP_ROCKET_COST, GROUP_ROCKET_TECH }, /* 24 */ { N_("Windmill"), FALSE, /* need credit? */ GROUP_WINDMILL, 2, /* size */ GROUP_WINDMILL_COLOUR, GROUP_WINDMILL_COST_MUL, GROUP_WINDMILL_BUL_COST, GROUP_WINDMILL_FIREC, GROUP_WINDMILL_COST, GROUP_WINDMILL_TECH }, /* 25 */ { N_("Monument"), FALSE, /* need credit? */ GROUP_MONUMENT, 2, /* size */ GROUP_MONUMENT_COLOUR, GROUP_MONUMENT_COST_MUL, GROUP_MONUMENT_BUL_COST, GROUP_MONUMENT_FIREC, GROUP_MONUMENT_COST, GROUP_MONUMENT_TECH }, /* 26 */ { N_("School"), FALSE, /* need credit? */ GROUP_SCHOOL, 2, /* size */ GROUP_SCHOOL_COLOUR, GROUP_SCHOOL_COST_MUL, GROUP_SCHOOL_BUL_COST, GROUP_SCHOOL_FIREC, GROUP_SCHOOL_COST, GROUP_SCHOOL_TECH }, /* 27 */ { N_("Blacksmith"), FALSE, /* need credit? */ GROUP_BLACKSMITH, 2, /* size */ GROUP_BLACKSMITH_COLOUR, GROUP_BLACKSMITH_COST_MUL, GROUP_BLACKSMITH_BUL_COST, GROUP_BLACKSMITH_FIREC, GROUP_BLACKSMITH_COST, GROUP_BLACKSMITH_TECH }, /* 28 */ { N_("Mill"), FALSE, /* need credit? */ GROUP_MILL, 2, /* size */ GROUP_MILL_COLOUR, GROUP_MILL_COST_MUL, GROUP_MILL_BUL_COST, GROUP_MILL_FIREC, GROUP_MILL_COST, GROUP_MILL_TECH }, /* 29 */ { N_("Pottery"), FALSE, /* need credit? */ GROUP_POTTERY, 2, /* size */ GROUP_POTTERY_COLOUR, GROUP_POTTERY_COST_MUL, GROUP_POTTERY_BUL_COST, GROUP_POTTERY_FIREC, GROUP_POTTERY_COST, GROUP_POTTERY_TECH }, /* 30 */ { N_("Fire sta'n"), FALSE, /* need credit? */ GROUP_FIRESTATION, 2, /* size */ GROUP_FIRESTATION_COLOUR, GROUP_FIRESTATION_COST_MUL, GROUP_FIRESTATION_BUL_COST, GROUP_FIRESTATION_FIREC, GROUP_FIRESTATION_COST, GROUP_FIRESTATION_TECH }, /* 31 */ { N_("Cricket pitch"), FALSE, /* need credit? */ GROUP_CRICKET, 2, /* size */ GROUP_CRICKET_COLOUR, GROUP_CRICKET_COST_MUL, GROUP_CRICKET_BUL_COST, GROUP_CRICKET_FIREC, GROUP_CRICKET_COST, GROUP_CRICKET_TECH }, /* 32 */ /* there is no button for this. */ { N_("Burnt"), FALSE, /* need credit? */ GROUP_BURNT, 1, /* size */ GROUP_BURNT_COLOUR, GROUP_BURNT_COST_MUL, GROUP_BURNT_BUL_COST, GROUP_BURNT_FIREC, GROUP_BURNT_COST, GROUP_BURNT_TECH }, /* 33 */ /* there is no button for this. */ { N_("Shanty town"), FALSE, /* need credit? */ GROUP_SHANTY, 2, /* size */ GROUP_SHANTY_COLOUR, GROUP_SHANTY_COST_MUL, GROUP_SHANTY_BUL_COST, GROUP_SHANTY_FIREC, GROUP_SHANTY_COST, GROUP_SHANTY_TECH }, /* 34 */ /* there is no button for this. */ { N_("Fire"), FALSE, /* need credit? */ GROUP_FIRE, 1, /* size */ GROUP_FIRE_COLOUR, GROUP_FIRE_COST_MUL, GROUP_FIRE_BUL_COST, GROUP_FIRE_FIREC, GROUP_FIRE_COST, GROUP_FIRE_TECH }, /* 35 */ /* there is no button for this. */ { N_("Used"), FALSE, /* need credit? */ GROUP_USED, 1, /* size */ GROUP_USED_COLOUR, GROUP_USED_COST_MUL, GROUP_USED_BUL_COST, GROUP_USED_FIREC, GROUP_USED_COST, GROUP_USED_TECH }, /* 36 */ { N_("Residential ML"), FALSE, /* need credit? */ GROUP_RESIDENCE_ML, 3, /* size */ GROUP_RESIDENCE_ML_COLOUR, GROUP_RESIDENCE_ML_COST_MUL, GROUP_RESIDENCE_ML_BUL_COST, GROUP_RESIDENCE_ML_FIREC, GROUP_RESIDENCE_ML_COST, GROUP_RESIDENCE_ML_TECH }, /* 37 */ { N_("Residential HL"), FALSE, /* need credit? */ GROUP_RESIDENCE_HL, 3, /* size */ GROUP_RESIDENCE_HL_COLOUR, GROUP_RESIDENCE_HL_COST_MUL, GROUP_RESIDENCE_HL_BUL_COST, GROUP_RESIDENCE_HL_FIREC, GROUP_RESIDENCE_HL_COST, GROUP_RESIDENCE_HL_TECH }, /* 38 */ { N_("Residential"), FALSE, /* need credit? */ GROUP_RESIDENCE_LH, 3, /* size */ GROUP_RESIDENCE_LH_COLOUR, GROUP_RESIDENCE_LH_COST_MUL, GROUP_RESIDENCE_LH_BUL_COST, GROUP_RESIDENCE_LH_FIREC, GROUP_RESIDENCE_LH_COST, GROUP_RESIDENCE_LH_TECH }, /* 39 */ { N_("Residential"), FALSE, /* need credit? */ GROUP_RESIDENCE_MH, 3, /* size */ GROUP_RESIDENCE_MH_COLOUR, GROUP_RESIDENCE_MH_COST_MUL, GROUP_RESIDENCE_MH_BUL_COST, GROUP_RESIDENCE_MH_FIREC, GROUP_RESIDENCE_MH_COST, GROUP_RESIDENCE_MH_TECH }, /* 40 */ { N_("Residential"), FALSE, /* need credit? */ GROUP_RESIDENCE_LH, 3, /* size */ GROUP_RESIDENCE_HH_COLOUR, GROUP_RESIDENCE_HH_COST_MUL, GROUP_RESIDENCE_HH_BUL_COST, GROUP_RESIDENCE_HH_FIREC, GROUP_RESIDENCE_HH_COST, GROUP_RESIDENCE_HH_TECH }, /* 41 */ /* End of Data */ { "EOF", FALSE, /* need credit? */ 0, 0, /* size */ 0, 0, 0, 0, 0, 0 } }; void init_types(void) { char png_file[LC_PATH_MAX], txt_file[LC_PATH_MAX]; sprintf (png_file, "%s%c%s", opening_path, PATH_SLASH, "icons.png"); sprintf (txt_file, "%s%c%s", opening_path, PATH_SLASH, "iconlist.txt"); load_png_graphics (txt_file,png_file); #if defined (commentout) main_types[CST_GREEN].group=GROUP_BARE; main_types[CST_GREEN].graphic=load_graphic(CST_GREEN_G); main_types[CST_POWERL_H_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_H_L].graphic=load_graphic(CST_POWERL_H_L_G); main_types[CST_POWERL_V_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_V_L].graphic=load_graphic(CST_POWERL_V_L_G); main_types[CST_POWERL_LD_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LD_L].graphic=load_graphic(CST_POWERL_LD_L_G); main_types[CST_POWERL_RD_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_RD_L].graphic=load_graphic(CST_POWERL_RD_L_G); main_types[CST_POWERL_LU_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LU_L].graphic=load_graphic(CST_POWERL_LU_L_G); main_types[CST_POWERL_RU_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_RU_L].graphic=load_graphic(CST_POWERL_RU_L_G); main_types[CST_POWERL_LDU_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LDU_L].graphic=load_graphic(CST_POWERL_LDU_L_G); main_types[CST_POWERL_LDR_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LDR_L].graphic=load_graphic(CST_POWERL_LDR_L_G); main_types[CST_POWERL_LUR_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LUR_L].graphic=load_graphic(CST_POWERL_LUR_L_G); main_types[CST_POWERL_UDR_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_UDR_L].graphic=load_graphic(CST_POWERL_UDR_L_G); main_types[CST_POWERL_LUDR_L].group=GROUP_POWER_LINE; main_types[CST_POWERL_LUDR_L].graphic =load_graphic(CST_POWERL_LUDR_L_G); main_types[CST_POWERL_H_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_H_D].graphic=load_graphic(CST_POWERL_H_D_G); main_types[CST_POWERL_V_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_V_D].graphic=load_graphic(CST_POWERL_V_D_G); main_types[CST_POWERL_LD_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LD_D].graphic=load_graphic(CST_POWERL_LD_D_G); main_types[CST_POWERL_RD_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_RD_D].graphic=load_graphic(CST_POWERL_RD_D_G); main_types[CST_POWERL_LU_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LU_D].graphic=load_graphic(CST_POWERL_LU_D_G); main_types[CST_POWERL_RU_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_RU_D].graphic=load_graphic(CST_POWERL_RU_D_G); main_types[CST_POWERL_LDU_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LDU_D].graphic=load_graphic(CST_POWERL_LDU_D_G); main_types[CST_POWERL_LDR_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LDR_D].graphic=load_graphic(CST_POWERL_LDR_D_G); main_types[CST_POWERL_LUR_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LUR_D].graphic=load_graphic(CST_POWERL_LUR_D_G); main_types[CST_POWERL_UDR_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_UDR_D].graphic=load_graphic(CST_POWERL_UDR_D_G); main_types[CST_POWERL_LUDR_D].group=GROUP_POWER_LINE; main_types[CST_POWERL_LUDR_D].graphic =load_graphic(CST_POWERL_LUDR_D_G); main_types[CST_POWERS_SOLAR].group=GROUP_SOLAR_POWER; main_types[CST_POWERS_SOLAR].graphic=load_graphic(CST_POWERS_SOLAR_G); main_types[CST_POWERS_COAL_EMPTY].group=GROUP_COAL_POWER; main_types[CST_POWERS_COAL_EMPTY].graphic =load_graphic(CST_POWERS_COAL_EMPTY_G); main_types[CST_POWERS_COAL_LOW].group=GROUP_COAL_POWER; main_types[CST_POWERS_COAL_LOW].graphic =load_graphic(CST_POWERS_COAL_LOW_G); prog_box("",12); main_types[CST_POWERS_COAL_MED].group=GROUP_COAL_POWER; main_types[CST_POWERS_COAL_MED].graphic =load_graphic(CST_POWERS_COAL_MED_G); main_types[CST_POWERS_COAL_FULL].group=GROUP_COAL_POWER; main_types[CST_POWERS_COAL_FULL].graphic =load_graphic(CST_POWERS_COAL_FULL_G); main_types[CST_SUBSTATION_R].group=GROUP_SUBSTATION; main_types[CST_SUBSTATION_R].graphic=load_graphic(CST_SUBSTATION_R_G); main_types[CST_SUBSTATION_G].group=GROUP_SUBSTATION; main_types[CST_SUBSTATION_G].graphic=load_graphic(CST_SUBSTATION_G_G); main_types[CST_SUBSTATION_RG].group=GROUP_SUBSTATION; main_types[CST_SUBSTATION_RG].graphic =load_graphic(CST_SUBSTATION_RG_G); main_types[CST_RESIDENCE_LL].group=GROUP_RESIDENCE_LL; main_types[CST_RESIDENCE_LL].graphic=load_graphic(CST_RESIDENCE_LL_G); main_types[CST_RESIDENCE_ML].group=GROUP_RESIDENCE_ML; main_types[CST_RESIDENCE_ML].graphic =load_graphic(CST_RESIDENCE_ML_G); main_types[CST_RESIDENCE_HL].group=GROUP_RESIDENCE_HL; main_types[CST_RESIDENCE_HL].graphic =load_graphic(CST_RESIDENCE_HL_G); main_types[CST_RESIDENCE_LH].group=GROUP_RESIDENCE_LH; main_types[CST_RESIDENCE_LH].graphic=load_graphic(CST_RESIDENCE_LH_G); main_types[CST_RESIDENCE_MH].group=GROUP_RESIDENCE_MH; main_types[CST_RESIDENCE_MH].graphic=load_graphic(CST_RESIDENCE_MH_G); main_types[CST_RESIDENCE_HH].group=GROUP_RESIDENCE_HH; main_types[CST_RESIDENCE_HH].graphic=load_graphic(CST_RESIDENCE_HH_G); main_types[CST_FARM_O0].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O0].graphic=load_graphic(CST_FARM_O0_G); main_types[CST_FARM_O1].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O1].graphic=load_graphic(CST_FARM_O1_G); main_types[CST_FARM_O2].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O2].graphic=load_graphic(CST_FARM_O2_G); main_types[CST_FARM_O3].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O3].graphic=load_graphic(CST_FARM_O3_G); main_types[CST_FARM_O4].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O4].graphic=load_graphic(CST_FARM_O4_G); main_types[CST_FARM_O5].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O5].graphic=load_graphic(CST_FARM_O5_G); main_types[CST_FARM_O6].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O6].graphic=load_graphic(CST_FARM_O6_G); main_types[CST_FARM_O7].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O7].graphic=load_graphic(CST_FARM_O7_G); main_types[CST_FARM_O8].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O8].graphic=load_graphic(CST_FARM_O8_G); main_types[CST_FARM_O9].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O9].graphic=load_graphic(CST_FARM_O9_G); main_types[CST_FARM_O10].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O10].graphic=load_graphic(CST_FARM_O10_G); main_types[CST_FARM_O11].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O11].graphic=load_graphic(CST_FARM_O11_G); main_types[CST_FARM_O12].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O12].graphic=load_graphic(CST_FARM_O12_G); main_types[CST_FARM_O13].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O13].graphic=load_graphic(CST_FARM_O13_G); main_types[CST_FARM_O14].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O14].graphic=load_graphic(CST_FARM_O14_G); main_types[CST_FARM_O15].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O15].graphic=load_graphic(CST_FARM_O15_G); main_types[CST_FARM_O16].group=GROUP_ORGANIC_FARM; main_types[CST_FARM_O16].graphic=load_graphic(CST_FARM_O16_G); main_types[CST_MARKET_EMPTY].group=GROUP_MARKET; main_types[CST_MARKET_EMPTY].graphic =load_graphic(CST_MARKET_EMPTY_G); main_types[CST_MARKET_LOW].group=GROUP_MARKET; main_types[CST_MARKET_LOW].graphic =load_graphic(CST_MARKET_LOW_G); main_types[CST_MARKET_MED].group=GROUP_MARKET; main_types[CST_MARKET_MED].graphic =load_graphic(CST_MARKET_MED_G); main_types[CST_MARKET_FULL].group=GROUP_MARKET; main_types[CST_MARKET_FULL].graphic =load_graphic(CST_MARKET_FULL_G); main_types[CST_TRACK_LR].group=GROUP_TRACK; main_types[CST_TRACK_LR].graphic=load_graphic(CST_TRACK_LR_G); main_types[CST_TRACK_LU].group=GROUP_TRACK; main_types[CST_TRACK_LU].graphic=load_graphic(CST_TRACK_LU_G); main_types[CST_TRACK_LD].group=GROUP_TRACK; main_types[CST_TRACK_LD].graphic=load_graphic(CST_TRACK_LD_G); main_types[CST_TRACK_UD].group=GROUP_TRACK; main_types[CST_TRACK_UD].graphic=load_graphic(CST_TRACK_UD_G); main_types[CST_TRACK_UR].group=GROUP_TRACK; main_types[CST_TRACK_UR].graphic=load_graphic(CST_TRACK_UR_G); main_types[CST_TRACK_DR].group=GROUP_TRACK; main_types[CST_TRACK_DR].graphic=load_graphic(CST_TRACK_DR_G); main_types[CST_TRACK_LUR].group=GROUP_TRACK; main_types[CST_TRACK_LUR].graphic=load_graphic(CST_TRACK_LUR_G); main_types[CST_TRACK_LDR].group=GROUP_TRACK; main_types[CST_TRACK_LDR].graphic=load_graphic(CST_TRACK_LDR_G); main_types[CST_TRACK_LUD].group=GROUP_TRACK; main_types[CST_TRACK_LUD].graphic=load_graphic(CST_TRACK_LUD_G); main_types[CST_TRACK_UDR].group=GROUP_TRACK; main_types[CST_TRACK_UDR].graphic=load_graphic(CST_TRACK_UDR_G); main_types[CST_TRACK_LUDR].group=GROUP_TRACK; main_types[CST_TRACK_LUDR].graphic=load_graphic(CST_TRACK_LUDR_G); main_types[CST_COALMINE_EMPTY].group=GROUP_COALMINE; main_types[CST_COALMINE_EMPTY].graphic =load_graphic(CST_COALMINE_EMPTY_G); prog_box("",25); main_types[CST_COALMINE_LOW].group=GROUP_COALMINE; main_types[CST_COALMINE_LOW].graphic=load_graphic(CST_COALMINE_LOW_G); main_types[CST_COALMINE_MED].group=GROUP_COALMINE; main_types[CST_COALMINE_MED].graphic=load_graphic(CST_COALMINE_MED_G); main_types[CST_COALMINE_FULL].group=GROUP_COALMINE; main_types[CST_COALMINE_FULL].graphic =load_graphic(CST_COALMINE_FULL_G); main_types[CST_RAIL_LR].group=GROUP_RAIL; main_types[CST_RAIL_LR].graphic=load_graphic(CST_RAIL_LR_G); main_types[CST_RAIL_LU].group=GROUP_RAIL; main_types[CST_RAIL_LU].graphic=load_graphic(CST_RAIL_LU_G); main_types[CST_RAIL_LD].group=GROUP_RAIL; main_types[CST_RAIL_LD].graphic=load_graphic(CST_RAIL_LD_G); main_types[CST_RAIL_UD].group=GROUP_RAIL; main_types[CST_RAIL_UD].graphic=load_graphic(CST_RAIL_UD_G); main_types[CST_RAIL_UR].group=GROUP_RAIL; main_types[CST_RAIL_UR].graphic=load_graphic(CST_RAIL_UR_G); main_types[CST_RAIL_DR].group=GROUP_RAIL; main_types[CST_RAIL_DR].graphic=load_graphic(CST_RAIL_DR_G); main_types[CST_RAIL_LUR].group=GROUP_RAIL; main_types[CST_RAIL_LUR].graphic=load_graphic(CST_RAIL_LUR_G); main_types[CST_RAIL_LDR].group=GROUP_RAIL; main_types[CST_RAIL_LDR].graphic=load_graphic(CST_RAIL_LDR_G); main_types[CST_RAIL_LUD].group=GROUP_RAIL; main_types[CST_RAIL_LUD].graphic=load_graphic(CST_RAIL_LUD_G); prog_box("",30); main_types[CST_RAIL_UDR].group=GROUP_RAIL; main_types[CST_RAIL_UDR].graphic=load_graphic(CST_RAIL_UDR_G); main_types[CST_RAIL_LUDR].group=GROUP_RAIL; main_types[CST_RAIL_LUDR].graphic=load_graphic(CST_RAIL_LUDR_G); main_types[CST_ROAD_LR].group=GROUP_ROAD; main_types[CST_ROAD_LR].graphic=load_graphic(CST_ROAD_LR_G); main_types[CST_ROAD_LU].group=GROUP_ROAD; main_types[CST_ROAD_LU].graphic=load_graphic(CST_ROAD_LU_G); main_types[CST_ROAD_LD].group=GROUP_ROAD; main_types[CST_ROAD_LD].graphic=load_graphic(CST_ROAD_LD_G); main_types[CST_ROAD_UD].group=GROUP_ROAD; main_types[CST_ROAD_UD].graphic=load_graphic(CST_ROAD_UD_G); main_types[CST_ROAD_UR].group=GROUP_ROAD; main_types[CST_ROAD_UR].graphic=load_graphic(CST_ROAD_UR_G); main_types[CST_ROAD_DR].group=GROUP_ROAD; main_types[CST_ROAD_DR].graphic=load_graphic(CST_ROAD_DR_G); main_types[CST_ROAD_LUR].group=GROUP_ROAD; main_types[CST_ROAD_LUR].graphic=load_graphic(CST_ROAD_LUR_G); main_types[CST_ROAD_LDR].group=GROUP_ROAD; main_types[CST_ROAD_LDR].graphic=load_graphic(CST_ROAD_LDR_G); main_types[CST_ROAD_LUD].group=GROUP_ROAD; main_types[CST_ROAD_LUD].graphic=load_graphic(CST_ROAD_LUD_G); main_types[CST_ROAD_UDR].group=GROUP_ROAD; main_types[CST_ROAD_UDR].graphic=load_graphic(CST_ROAD_UDR_G); main_types[CST_ROAD_LUDR].group=GROUP_ROAD; main_types[CST_ROAD_LUDR].graphic=load_graphic(CST_ROAD_LUDR_G); main_types[CST_INDUSTRY_L_C].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_C].graphic =load_graphic(CST_INDUSTRY_L_C_G); main_types[CST_INDUSTRY_L_Q1].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_Q1].graphic =load_graphic(CST_INDUSTRY_L_Q1_G); main_types[CST_INDUSTRY_L_Q2].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_Q2].graphic =load_graphic(CST_INDUSTRY_L_Q2_G); main_types[CST_INDUSTRY_L_Q3].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_Q3].graphic =load_graphic(CST_INDUSTRY_L_Q3_G); main_types[CST_INDUSTRY_L_Q4].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_Q4].graphic =load_graphic(CST_INDUSTRY_L_Q4_G); main_types[CST_INDUSTRY_L_L1].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_L1].graphic =load_graphic(CST_INDUSTRY_L_L1_G); main_types[CST_INDUSTRY_L_L2].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_L2].graphic =load_graphic(CST_INDUSTRY_L_L2_G); main_types[CST_INDUSTRY_L_L3].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_L3].graphic =load_graphic(CST_INDUSTRY_L_L3_G); main_types[CST_INDUSTRY_L_L4].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_L4].graphic =load_graphic(CST_INDUSTRY_L_L4_G); main_types[CST_INDUSTRY_L_M1].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_M1].graphic =load_graphic(CST_INDUSTRY_L_M1_G); main_types[CST_INDUSTRY_L_M2].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_M2].graphic =load_graphic(CST_INDUSTRY_L_M2_G); main_types[CST_INDUSTRY_L_M3].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_M3].graphic =load_graphic(CST_INDUSTRY_L_M3_G); main_types[CST_INDUSTRY_L_M4].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_M4].graphic =load_graphic(CST_INDUSTRY_L_M4_G); main_types[CST_INDUSTRY_L_H1].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_H1].graphic =load_graphic(CST_INDUSTRY_L_H1_G); main_types[CST_INDUSTRY_L_H2].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_H2].graphic =load_graphic(CST_INDUSTRY_L_H2_G); main_types[CST_INDUSTRY_L_H3].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_H3].graphic =load_graphic(CST_INDUSTRY_L_H3_G); main_types[CST_INDUSTRY_L_H4].group=GROUP_INDUSTRY_L; main_types[CST_INDUSTRY_L_H4].graphic =load_graphic(CST_INDUSTRY_L_H4_G); main_types[CST_COMMUNE_1].group=GROUP_COMMUNE; main_types[CST_COMMUNE_1].graphic=load_graphic(CST_COMMUNE_1_G); main_types[CST_COMMUNE_2].group=GROUP_COMMUNE; main_types[CST_COMMUNE_2].graphic=load_graphic(CST_COMMUNE_2_G); main_types[CST_COMMUNE_3].group=GROUP_COMMUNE; main_types[CST_COMMUNE_3].graphic=load_graphic(CST_COMMUNE_3_G); main_types[CST_COMMUNE_4].group=GROUP_COMMUNE; main_types[CST_COMMUNE_4].graphic=load_graphic(CST_COMMUNE_4_G); main_types[CST_COMMUNE_5].group=GROUP_COMMUNE; main_types[CST_COMMUNE_5].graphic=load_graphic(CST_COMMUNE_5_G); main_types[CST_COMMUNE_6].group=GROUP_COMMUNE; main_types[CST_COMMUNE_6].graphic=load_graphic(CST_COMMUNE_6_G); main_types[CST_COMMUNE_7].group=GROUP_COMMUNE; main_types[CST_COMMUNE_7].graphic=load_graphic(CST_COMMUNE_7_G); main_types[CST_COMMUNE_8].group=GROUP_COMMUNE; main_types[CST_COMMUNE_8].graphic=load_graphic(CST_COMMUNE_8_G); main_types[CST_COMMUNE_9].group=GROUP_COMMUNE; main_types[CST_COMMUNE_9].graphic=load_graphic(CST_COMMUNE_9_G); main_types[CST_COMMUNE_10].group=GROUP_COMMUNE; main_types[CST_COMMUNE_10].graphic=load_graphic(CST_COMMUNE_10_G); main_types[CST_COMMUNE_11].group=GROUP_COMMUNE; main_types[CST_COMMUNE_11].graphic=load_graphic(CST_COMMUNE_11_G); main_types[CST_COMMUNE_12].group=GROUP_COMMUNE; main_types[CST_COMMUNE_12].graphic=load_graphic(CST_COMMUNE_12_G); main_types[CST_COMMUNE_13].group=GROUP_COMMUNE; main_types[CST_COMMUNE_13].graphic=load_graphic(CST_COMMUNE_13_G); main_types[CST_COMMUNE_14].group=GROUP_COMMUNE; main_types[CST_COMMUNE_14].graphic=load_graphic(CST_COMMUNE_14_G); main_types[CST_UNIVERSITY].group=GROUP_UNIVERSITY; main_types[CST_UNIVERSITY].graphic=load_graphic(CST_UNIVERSITY_G); main_types[CST_OREMINE_1].group=GROUP_OREMINE; main_types[CST_OREMINE_1].graphic=load_graphic(CST_OREMINE_1_G); main_types[CST_OREMINE_2].group=GROUP_OREMINE; main_types[CST_OREMINE_2].graphic=load_graphic(CST_OREMINE_2_G); main_types[CST_OREMINE_3].group=GROUP_OREMINE; main_types[CST_OREMINE_3].graphic=load_graphic(CST_OREMINE_3_G); main_types[CST_OREMINE_4].group=GROUP_OREMINE; main_types[CST_OREMINE_4].graphic=load_graphic(CST_OREMINE_4_G); main_types[CST_OREMINE_5].group=GROUP_OREMINE; main_types[CST_OREMINE_5].graphic=load_graphic(CST_OREMINE_5_G); main_types[CST_OREMINE_6].group=GROUP_OREMINE; main_types[CST_OREMINE_6].graphic=load_graphic(CST_OREMINE_6_G); main_types[CST_OREMINE_7].group=GROUP_OREMINE; main_types[CST_OREMINE_7].graphic=load_graphic(CST_OREMINE_7_G); main_types[CST_OREMINE_8].group=GROUP_OREMINE; main_types[CST_OREMINE_8].graphic=load_graphic(CST_OREMINE_8_G); main_types[CST_TIP_0].group=GROUP_TIP; main_types[CST_TIP_0].graphic=load_graphic(CST_TIP_0_G); main_types[CST_TIP_1].group=GROUP_TIP; main_types[CST_TIP_1].graphic=load_graphic(CST_TIP_1_G); main_types[CST_TIP_2].group=GROUP_TIP; main_types[CST_TIP_2].graphic=load_graphic(CST_TIP_2_G); main_types[CST_TIP_3].group=GROUP_TIP; main_types[CST_TIP_3].graphic=load_graphic(CST_TIP_3_G); main_types[CST_TIP_4].group=GROUP_TIP; main_types[CST_TIP_4].graphic=load_graphic(CST_TIP_4_G); main_types[CST_TIP_5].group=GROUP_TIP; main_types[CST_TIP_5].graphic=load_graphic(CST_TIP_5_G); main_types[CST_TIP_6].group=GROUP_TIP; main_types[CST_TIP_6].graphic=load_graphic(CST_TIP_6_G); main_types[CST_TIP_7].group=GROUP_TIP; main_types[CST_TIP_7].graphic=load_graphic(CST_TIP_7_G); main_types[CST_TIP_8].group=GROUP_TIP; main_types[CST_TIP_8].graphic=load_graphic(CST_TIP_8_G); main_types[CST_EX_PORT].group=GROUP_PORT; main_types[CST_EX_PORT].graphic=load_graphic(CST_EX_PORT_G); main_types[CST_INDUSTRY_H_C].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_C].graphic =load_graphic(CST_INDUSTRY_H_C_G); main_types[CST_INDUSTRY_H_L1].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L1].graphic =load_graphic(CST_INDUSTRY_H_L1_G); main_types[CST_INDUSTRY_H_L2].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L2].graphic =load_graphic(CST_INDUSTRY_H_L2_G); main_types[CST_INDUSTRY_H_L3].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L3].graphic =load_graphic(CST_INDUSTRY_H_L3_G); main_types[CST_INDUSTRY_H_L4].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L4].graphic =load_graphic(CST_INDUSTRY_H_L4_G); main_types[CST_INDUSTRY_H_L5].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L5].graphic =load_graphic(CST_INDUSTRY_H_L5_G); main_types[CST_INDUSTRY_H_L6].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L6].graphic =load_graphic(CST_INDUSTRY_H_L6_G); main_types[CST_INDUSTRY_H_L7].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L7].graphic =load_graphic(CST_INDUSTRY_H_L7_G); main_types[CST_INDUSTRY_H_L8].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_L8].graphic =load_graphic(CST_INDUSTRY_H_L8_G); main_types[CST_INDUSTRY_H_M1].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M1].graphic =load_graphic(CST_INDUSTRY_H_M1_G); main_types[CST_INDUSTRY_H_M2].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M2].graphic =load_graphic(CST_INDUSTRY_H_M2_G); main_types[CST_INDUSTRY_H_M3].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M3].graphic =load_graphic(CST_INDUSTRY_H_M3_G); main_types[CST_INDUSTRY_H_M4].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M4].graphic =load_graphic(CST_INDUSTRY_H_M4_G); main_types[CST_INDUSTRY_H_M5].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M5].graphic =load_graphic(CST_INDUSTRY_H_M5_G); main_types[CST_INDUSTRY_H_M6].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M6].graphic =load_graphic(CST_INDUSTRY_H_M6_G); main_types[CST_INDUSTRY_H_M7].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M7].graphic =load_graphic(CST_INDUSTRY_H_M7_G); main_types[CST_INDUSTRY_H_M8].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_M8].graphic =load_graphic(CST_INDUSTRY_H_M8_G); main_types[CST_INDUSTRY_H_H1].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H1].graphic =load_graphic(CST_INDUSTRY_H_H1_G); main_types[CST_INDUSTRY_H_H2].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H2].graphic =load_graphic(CST_INDUSTRY_H_H2_G); main_types[CST_INDUSTRY_H_H3].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H3].graphic =load_graphic(CST_INDUSTRY_H_H3_G); main_types[CST_INDUSTRY_H_H4].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H4].graphic =load_graphic(CST_INDUSTRY_H_H4_G); main_types[CST_INDUSTRY_H_H5].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H5].graphic =load_graphic(CST_INDUSTRY_H_H5_G); main_types[CST_INDUSTRY_H_H6].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H6].graphic =load_graphic(CST_INDUSTRY_H_H6_G); main_types[CST_INDUSTRY_H_H7].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H7].graphic =load_graphic(CST_INDUSTRY_H_H7_G); main_types[CST_INDUSTRY_H_H8].group=GROUP_INDUSTRY_H; main_types[CST_INDUSTRY_H_H8].graphic =load_graphic(CST_INDUSTRY_H_H8_G); main_types[CST_PARKLAND_PLANE].group=GROUP_PARKLAND; main_types[CST_PARKLAND_PLANE].graphic =load_graphic(CST_PARKLAND_PLANE_G); prog_box("",50); main_types[CST_PARKLAND_LAKE].group=GROUP_PARKLAND; main_types[CST_PARKLAND_LAKE].graphic =load_graphic(CST_PARKLAND_LAKE_G); main_types[CST_RECYCLE].group=GROUP_RECYCLE; main_types[CST_RECYCLE].graphic=load_graphic(CST_RECYCLE_G); main_types[CST_WATER].group=GROUP_WATER; main_types[CST_WATER].graphic=load_graphic(CST_WATER_G); main_types[CST_WATER_D].group=GROUP_WATER; main_types[CST_WATER_D].graphic=load_graphic(CST_WATER_D_G); main_types[CST_WATER_R].group=GROUP_WATER; main_types[CST_WATER_R].graphic=load_graphic(CST_WATER_R_G); main_types[CST_WATER_U].group=GROUP_WATER; main_types[CST_WATER_U].graphic=load_graphic(CST_WATER_U_G); main_types[CST_WATER_L].group=GROUP_WATER; main_types[CST_WATER_L].graphic=load_graphic(CST_WATER_L_G); main_types[CST_WATER_LR].group=GROUP_WATER; main_types[CST_WATER_LR].graphic=load_graphic(CST_WATER_LR_G); main_types[CST_WATER_UD].group=GROUP_WATER; main_types[CST_WATER_UD].graphic=load_graphic(CST_WATER_UD_G); main_types[CST_WATER_LD].group=GROUP_WATER; main_types[CST_WATER_LD].graphic=load_graphic(CST_WATER_LD_G); main_types[CST_WATER_RD].group=GROUP_WATER; main_types[CST_WATER_RD].graphic=load_graphic(CST_WATER_RD_G); main_types[CST_WATER_LU].group=GROUP_WATER; main_types[CST_WATER_LU].graphic=load_graphic(CST_WATER_LU_G); main_types[CST_WATER_UR].group=GROUP_WATER; main_types[CST_WATER_UR].graphic=load_graphic(CST_WATER_UR_G); main_types[CST_WATER_LUD].group=GROUP_WATER; main_types[CST_WATER_LUD].graphic=load_graphic(CST_WATER_LUD_G); main_types[CST_WATER_LRD].group=GROUP_WATER; main_types[CST_WATER_LRD].graphic=load_graphic(CST_WATER_LRD_G); main_types[CST_WATER_LUR].group=GROUP_WATER; main_types[CST_WATER_LUR].graphic=load_graphic(CST_WATER_LUR_G); main_types[CST_WATER_URD].group=GROUP_WATER; main_types[CST_WATER_URD].graphic=load_graphic(CST_WATER_URD_G); main_types[CST_WATER_LURD].group=GROUP_WATER; main_types[CST_WATER_LURD].graphic=load_graphic(CST_WATER_LURD_G); main_types[CST_HEALTH].group=GROUP_HEALTH; main_types[CST_HEALTH].graphic=load_graphic(CST_HEALTH_G); main_types[CST_ROCKET_1].group=GROUP_ROCKET; main_types[CST_ROCKET_1].graphic=load_graphic(CST_ROCKET_1_G); main_types[CST_ROCKET_2].group=GROUP_ROCKET; main_types[CST_ROCKET_2].graphic=load_graphic(CST_ROCKET_2_G); main_types[CST_ROCKET_3].group=GROUP_ROCKET; main_types[CST_ROCKET_3].graphic=load_graphic(CST_ROCKET_3_G); main_types[CST_ROCKET_4].group=GROUP_ROCKET; main_types[CST_ROCKET_4].graphic=load_graphic(CST_ROCKET_4_G); prog_box("",60); main_types[CST_ROCKET_5].group=GROUP_ROCKET; main_types[CST_ROCKET_5].graphic=load_graphic(CST_ROCKET_5_G); main_types[CST_ROCKET_6].group=GROUP_ROCKET; main_types[CST_ROCKET_6].graphic=load_graphic(CST_ROCKET_6_G); main_types[CST_ROCKET_7].group=GROUP_ROCKET; main_types[CST_ROCKET_7].graphic=load_graphic(CST_ROCKET_7_G); main_types[CST_ROCKET_FLOWN].group=GROUP_ROCKET; main_types[CST_ROCKET_FLOWN].graphic =load_graphic(CST_ROCKET_FLOWN_G); main_types[CST_BURNT].group=GROUP_BURNT; main_types[CST_BURNT].graphic=load_graphic(CST_BURNT_G); main_types[CST_WINDMILL_1_G].group=GROUP_WINDMILL; main_types[CST_WINDMILL_1_G].graphic =load_graphic(CST_WINDMILL_1_G_G); main_types[CST_WINDMILL_2_G].group=GROUP_WINDMILL; main_types[CST_WINDMILL_2_G].graphic =load_graphic(CST_WINDMILL_2_G_G); main_types[CST_WINDMILL_3_G].group=GROUP_WINDMILL; main_types[CST_WINDMILL_3_G].graphic =load_graphic(CST_WINDMILL_3_G_G); main_types[CST_WINDMILL_1_RG].group=GROUP_WINDMILL; main_types[CST_WINDMILL_1_RG].graphic =load_graphic(CST_WINDMILL_1_RG_G); main_types[CST_WINDMILL_2_RG].group=GROUP_WINDMILL; main_types[CST_WINDMILL_2_RG].graphic =load_graphic(CST_WINDMILL_2_RG_G); main_types[CST_WINDMILL_3_RG].group=GROUP_WINDMILL; main_types[CST_WINDMILL_3_RG].graphic =load_graphic(CST_WINDMILL_3_RG_G); main_types[CST_WINDMILL_1_R].group=GROUP_WINDMILL; main_types[CST_WINDMILL_1_R].graphic =load_graphic(CST_WINDMILL_1_R_G); main_types[CST_WINDMILL_2_R].group=GROUP_WINDMILL; main_types[CST_WINDMILL_2_R].graphic =load_graphic(CST_WINDMILL_2_R_G); main_types[CST_WINDMILL_3_R].group=GROUP_WINDMILL; main_types[CST_WINDMILL_3_R].graphic =load_graphic(CST_WINDMILL_3_R_G); main_types[CST_WINDMILL_1_W].group=GROUP_WINDMILL; main_types[CST_WINDMILL_1_W].graphic =load_graphic(CST_WINDMILL_1_W_G); main_types[CST_WINDMILL_2_W].group=GROUP_WINDMILL; main_types[CST_WINDMILL_2_W].graphic =load_graphic(CST_WINDMILL_2_W_G); main_types[CST_WINDMILL_3_W].group=GROUP_WINDMILL; main_types[CST_WINDMILL_3_W].graphic =load_graphic(CST_WINDMILL_3_W_G); main_types[CST_MONUMENT_0].group=GROUP_MONUMENT; main_types[CST_MONUMENT_0].graphic=load_graphic(CST_MONUMENT_0_G); main_types[CST_MONUMENT_1].group=GROUP_MONUMENT; main_types[CST_MONUMENT_1].graphic=load_graphic(CST_MONUMENT_1_G); main_types[CST_MONUMENT_2].group=GROUP_MONUMENT; main_types[CST_MONUMENT_2].graphic=load_graphic(CST_MONUMENT_2_G); main_types[CST_MONUMENT_3].group=GROUP_MONUMENT; main_types[CST_MONUMENT_3].graphic=load_graphic(CST_MONUMENT_3_G); main_types[CST_MONUMENT_4].group=GROUP_MONUMENT; main_types[CST_MONUMENT_4].graphic=load_graphic(CST_MONUMENT_4_G); main_types[CST_MONUMENT_5].group=GROUP_MONUMENT; main_types[CST_MONUMENT_5].graphic=load_graphic(CST_MONUMENT_5_G); main_types[CST_SCHOOL].group=GROUP_SCHOOL; main_types[CST_SCHOOL].graphic=load_graphic(CST_SCHOOL_G); main_types[CST_BLACKSMITH_0].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_0].graphic =load_graphic(CST_BLACKSMITH_0_G); main_types[CST_BLACKSMITH_1].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_1].graphic =load_graphic(CST_BLACKSMITH_1_G); main_types[CST_BLACKSMITH_2].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_2].graphic =load_graphic(CST_BLACKSMITH_2_G); main_types[CST_BLACKSMITH_3].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_3].graphic =load_graphic(CST_BLACKSMITH_3_G); main_types[CST_BLACKSMITH_4].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_4].graphic =load_graphic(CST_BLACKSMITH_4_G); main_types[CST_BLACKSMITH_5].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_5].graphic =load_graphic(CST_BLACKSMITH_5_G); main_types[CST_BLACKSMITH_6].group=GROUP_BLACKSMITH; main_types[CST_BLACKSMITH_6].graphic =load_graphic(CST_BLACKSMITH_6_G); prog_box("",75); main_types[CST_MILL_0].group=GROUP_MILL; main_types[CST_MILL_0].graphic=load_graphic(CST_MILL_0_G); main_types[CST_MILL_1].group=GROUP_MILL; main_types[CST_MILL_1].graphic=load_graphic(CST_MILL_1_G); main_types[CST_MILL_2].group=GROUP_MILL; main_types[CST_MILL_2].graphic=load_graphic(CST_MILL_2_G); main_types[CST_MILL_3].group=GROUP_MILL; main_types[CST_MILL_3].graphic=load_graphic(CST_MILL_3_G); main_types[CST_MILL_4].group=GROUP_MILL; main_types[CST_MILL_4].graphic=load_graphic(CST_MILL_4_G); main_types[CST_MILL_5].group=GROUP_MILL; main_types[CST_MILL_5].graphic=load_graphic(CST_MILL_5_G); main_types[CST_MILL_6].group=GROUP_MILL; main_types[CST_MILL_6].graphic=load_graphic(CST_MILL_6_G); main_types[CST_POTTERY_0].group=GROUP_POTTERY; main_types[CST_POTTERY_0].graphic=load_graphic(CST_POTTERY_0_G); main_types[CST_POTTERY_1].group=GROUP_POTTERY; main_types[CST_POTTERY_1].graphic=load_graphic(CST_POTTERY_1_G); main_types[CST_POTTERY_2].group=GROUP_POTTERY; main_types[CST_POTTERY_2].graphic=load_graphic(CST_POTTERY_2_G); main_types[CST_POTTERY_3].group=GROUP_POTTERY; main_types[CST_POTTERY_3].graphic=load_graphic(CST_POTTERY_3_G); main_types[CST_POTTERY_4].group=GROUP_POTTERY; main_types[CST_POTTERY_4].graphic=load_graphic(CST_POTTERY_4_G); main_types[CST_POTTERY_5].group=GROUP_POTTERY; main_types[CST_POTTERY_5].graphic=load_graphic(CST_POTTERY_5_G); main_types[CST_POTTERY_6].group=GROUP_POTTERY; main_types[CST_POTTERY_6].graphic=load_graphic(CST_POTTERY_6_G); main_types[CST_POTTERY_7].group=GROUP_POTTERY; main_types[CST_POTTERY_7].graphic=load_graphic(CST_POTTERY_7_G); main_types[CST_POTTERY_8].group=GROUP_POTTERY; main_types[CST_POTTERY_8].graphic=load_graphic(CST_POTTERY_8_G); main_types[CST_POTTERY_9].group=GROUP_POTTERY; main_types[CST_POTTERY_9].graphic=load_graphic(CST_POTTERY_9_G); main_types[CST_POTTERY_10].group=GROUP_POTTERY; main_types[CST_POTTERY_10].graphic=load_graphic(CST_POTTERY_10_G); main_types[CST_FIRESTATION_1].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_1].graphic =load_graphic(CST_FIRESTATION_1_G); main_types[CST_FIRESTATION_2].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_2].graphic =load_graphic(CST_FIRESTATION_2_G); main_types[CST_FIRESTATION_3].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_3].graphic =load_graphic(CST_FIRESTATION_3_G); main_types[CST_FIRESTATION_4].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_4].graphic =load_graphic(CST_FIRESTATION_4_G); main_types[CST_FIRESTATION_5].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_5].graphic =load_graphic(CST_FIRESTATION_5_G); main_types[CST_FIRESTATION_6].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_6].graphic =load_graphic(CST_FIRESTATION_6_G); main_types[CST_FIRESTATION_7].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_7].graphic =load_graphic(CST_FIRESTATION_7_G); main_types[CST_FIRESTATION_8].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_8].graphic =load_graphic(CST_FIRESTATION_8_G); main_types[CST_FIRESTATION_9].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_9].graphic =load_graphic(CST_FIRESTATION_9_G); main_types[CST_FIRESTATION_10].group=GROUP_FIRESTATION; main_types[CST_FIRESTATION_10].graphic =load_graphic(CST_FIRESTATION_10_G); main_types[CST_CRICKET_1].group=GROUP_CRICKET; main_types[CST_CRICKET_1].graphic =load_graphic(CST_CRICKET_1_G); main_types[CST_CRICKET_2].group=GROUP_CRICKET; main_types[CST_CRICKET_2].graphic =load_graphic(CST_CRICKET_2_G); main_types[CST_CRICKET_3].group=GROUP_CRICKET; main_types[CST_CRICKET_3].graphic =load_graphic(CST_CRICKET_3_G); main_types[CST_CRICKET_4].group=GROUP_CRICKET; main_types[CST_CRICKET_4].graphic =load_graphic(CST_CRICKET_4_G); prog_box("",90); main_types[CST_CRICKET_5].group=GROUP_CRICKET; main_types[CST_CRICKET_5].graphic =load_graphic(CST_CRICKET_5_G); main_types[CST_CRICKET_6].group=GROUP_CRICKET; main_types[CST_CRICKET_6].graphic =load_graphic(CST_CRICKET_6_G); main_types[CST_CRICKET_7].group=GROUP_CRICKET; main_types[CST_CRICKET_7].graphic =load_graphic(CST_CRICKET_7_G); main_types[CST_FIRE_1].group=GROUP_FIRE; main_types[CST_FIRE_1].graphic =load_graphic(CST_FIRE_1_G); main_types[CST_FIRE_2].group=GROUP_FIRE; main_types[CST_FIRE_2].graphic =load_graphic(CST_FIRE_2_G); main_types[CST_FIRE_3].group=GROUP_FIRE; main_types[CST_FIRE_3].graphic =load_graphic(CST_FIRE_3_G); main_types[CST_FIRE_4].group=GROUP_FIRE; main_types[CST_FIRE_4].graphic =load_graphic(CST_FIRE_4_G); main_types[CST_FIRE_5].group=GROUP_FIRE; main_types[CST_FIRE_5].graphic =load_graphic(CST_FIRE_5_G); main_types[CST_FIRE_DONE1].group=GROUP_FIRE; main_types[CST_FIRE_DONE1].graphic =load_graphic(CST_FIRE_DONE1_G); main_types[CST_FIRE_DONE2].group=GROUP_FIRE; main_types[CST_FIRE_DONE2].graphic =load_graphic(CST_FIRE_DONE2_G); main_types[CST_FIRE_DONE3].group=GROUP_FIRE; main_types[CST_FIRE_DONE3].graphic =load_graphic(CST_FIRE_DONE3_G); main_types[CST_FIRE_DONE4].group=GROUP_FIRE; main_types[CST_FIRE_DONE4].graphic =load_graphic(CST_FIRE_DONE4_G); main_types[CST_SHANTY].group=GROUP_SHANTY; main_types[CST_SHANTY].graphic=load_graphic(CST_SHANTY_G); #endif main_types[CST_USED].group=GROUP_USED; main_types[CST_USED].graphic=0; /* Won't be dereferenced! */ } int get_group_of_type (short type) { return main_types[type].group; } void set_map_groups (void) { int x, y; for (x = 0; x < WORLD_SIDE_LEN; x++) { for (y = 0; y < WORLD_SIDE_LEN; y++) { MP_GROUP(x,y) = get_group_of_type(MP_TYPE(x,y)); } } } int get_group_cost (short group) { return (int) ((float) main_groups[group].cost + ((float) main_groups[group].cost * ((float) main_groups[group].cost_mul * (float) tech_level) / (float) MAX_TECH_LEVEL)); } void get_type_name (short type, char * s) { short g; g = get_group_of_type (type); strcpy (s, _(main_groups[g].name)); } int get_type_cost (short type) { return get_group_cost ((short) get_group_of_type (type)); } lincity-1.13.1/readpng.c0000644000175000017500000005647510071466307012002 00000000000000/* ---------------------------------------------------------------------- * * readpng.c * This file is part of lincity (see COPYRIGHT for copyright information). * ---------------------------------------------------------------------- */ #include #include "png.h" #include "malloc.h" #include "lin-city.h" #include "lctypes.h" #include "lintypes.h" /* Read a PNG file. You may want to return an error code if the read * fails (depending upon the failure). There are two "prototypes" given * here - one where we are given the filename, and we need to open the * file, and the other where we are given an open file (possibly with * some or all of the magic bytes read - see comments above). */ #define ERROR -1 #define OK 0 /* Private functions */ static char* load_png_graphic (short type, short group, char* id, FILE* txt_fp,png_bytep *row_pointers, png_uint_32 width, png_uint_32 height); /* Let errors and warnings be handled by setjmp/longjmp */ void* user_error_ptr = 0; void user_error_fn(png_structp png_ptr, png_const_charp error_msg) { } void user_warning_fn(png_structp png_ptr, png_const_charp warning_msg) { } int load_png_graphics (char *txt_filename, char *png_filename) { png_uint_32 row; png_structp png_ptr; png_infop info_ptr; unsigned int sig_read = 0; png_uint_32 width, height; int bit_depth, color_type, interlace_type; FILE *fp, *txt_fp; png_bytep *row_pointers; if ((fp = fopen(png_filename, "rb")) == NULL) return (ERROR); if ((txt_fp = fopen(txt_filename, "r")) == NULL) return (ERROR); /* Create and initialize the png_struct with the desired error handler * functions. If you want to use the default stderr and longjump method, * you can supply NULL for the last three parameters. We also supply the * the compiler header file version, so that we know if the application * was compiled with a compatible version of the library. REQUIRED */ png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, (png_voidp) user_error_ptr, user_error_fn, user_warning_fn); if (png_ptr == NULL) { fclose(fp); return (ERROR); } /* Allocate/initialize the memory for image information. REQUIRED. */ info_ptr = png_create_info_struct(png_ptr); if (info_ptr == NULL) { fclose(fp); #if defined (commentout) png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL); #endif png_destroy_read_struct(&png_ptr, NULL, NULL); return (ERROR); } /* Set error handling if you are using the setjmp/longjmp method (this is * the normal method of doing things with libpng). REQUIRED unless you * set up your own error handlers in the png_create_read_struct() earlier. */ if (setjmp(png_jmpbuf(png_ptr))) { /* Free all of the memory associated with the png_ptr and info_ptr */ #if defined (commentout) png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); #endif png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); /* If we get here, we had a problem reading the file */ return (ERROR); } /* Set up the input control if you are using standard C streams */ png_init_io(png_ptr, fp); /* If we have already read some of the signature */ png_set_sig_bytes(png_ptr, sig_read); /* OK, you're doing it the hard way, with the lower-level functions */ /* The call to png_read_info() gives us all of the information from the * PNG file before the first IDAT (image data chunk). REQUIRED */ png_read_info(png_ptr, info_ptr); #if defined (commentout) png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, int_p_NULL, int_p_NULL); #endif png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); printf ("PNG Header: %d x %d, bd=%d, ct=%d\n", (int)height, (int)width, bit_depth, color_type); /* Set up the data transformations you want. Note that these are all * optional. Only call them if you want/need them. Many of the * transformations only work on specific types of images, and many * are mutually exclusive. */ /* tell libpng to strip 16 bit/color files down to 8 bits/color */ // png_set_strip_16(png_ptr); /* Strip alpha bytes from the input data without combining with the * background (not recommended). */ // png_set_strip_alpha(png_ptr); /* Extract multiple pixels with bit depths of 1, 2, and 4 from a single * byte into separate bytes (useful for paletted and grayscale images). */ // png_set_packing(png_ptr); /* Change the order of packed pixels to least significant bit first * (not useful if you are using png_set_packing). */ // png_set_packswap(png_ptr); /* Require color fmt w/ palette */ if (color_type != PNG_COLOR_TYPE_PALETTE) { printf ("Error - png image wasn't PNG_COLOR_TYPE_PALETTE\n"); /* Free all of the memory associated with the png_ptr and info_ptr */ #if defined (commentout) png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); #endif png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); /* If we get here, we had a problem reading the file */ return (ERROR); } /* Require 1 byte per pixel */ if (bit_depth != 8) { printf ("Error - png image wasn't bit_depth = 8\n"); /* Free all of the memory associated with the png_ptr and info_ptr */ #if defined (commentout) png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); #endif png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); /* If we get here, we had a problem reading the file */ return (ERROR); } /* The easiest way to read the image: */ row_pointers = malloc (sizeof(void*)*height); for (row = 0; row < height; row++) { row_pointers[row] = png_malloc(png_ptr, png_get_rowbytes(png_ptr, info_ptr)); } png_read_image(png_ptr, row_pointers); #if defined (commentout) for (col = 0; col < 16; col++) { printf (" %02x ",row_pointers[0][col]); } printf ("\n"); for (col = 0; col < 16; col++) { printf ("%3d ",row_pointers[0][col]); } printf ("\n"); #endif /* read rest of file, and get additional chunks in info_ptr - REQUIRED */ png_read_end(png_ptr, info_ptr); /* close the png file */ fclose(fp); /* get the icons out of the png */ #ifdef LG #undef LG #endif #define LG(typ,grp,id) load_png_graphic(typ,grp,id,txt_fp,row_pointers,height,width) LG(CST_GREEN,GROUP_BARE,LCT_GREEN_G); LG(CST_FIRE_1,GROUP_FIRE,LCT_FIRE_1_G); LG(CST_FIRE_2,GROUP_FIRE,LCT_FIRE_2_G); LG(CST_FIRE_3,GROUP_FIRE,LCT_FIRE_3_G); LG(CST_FIRE_4,GROUP_FIRE,LCT_FIRE_4_G); LG(CST_FIRE_5,GROUP_FIRE,LCT_FIRE_5_G); LG(CST_FIRE_DONE1,GROUP_FIRE,LCT_FIRE_DONE1_G); LG(CST_FIRE_DONE2,GROUP_FIRE,LCT_FIRE_DONE2_G); LG(CST_FIRE_DONE3,GROUP_FIRE,LCT_FIRE_DONE3_G); LG(CST_FIRE_DONE4,GROUP_FIRE,LCT_FIRE_DONE4_G); LG(CST_BURNT,GROUP_BURNT,LCT_BURNT_G); LG(CST_PARKLAND_PLANE,GROUP_PARKLAND,LCT_PARKLAND_PLANE_G); LG(CST_PARKLAND_LAKE,GROUP_PARKLAND,LCT_PARKLAND_LAKE_G); LG(CST_POWERL_H_L,GROUP_POWER_LINE,LCT_POWERL_H_L_G); LG(CST_POWERL_V_L,GROUP_POWER_LINE,LCT_POWERL_V_L_G); LG(CST_POWERL_LD_L,GROUP_POWER_LINE,LCT_POWERL_LD_L_G); LG(CST_POWERL_RD_L,GROUP_POWER_LINE,LCT_POWERL_RD_L_G); LG(CST_POWERL_LU_L,GROUP_POWER_LINE,LCT_POWERL_LU_L_G); LG(CST_POWERL_RU_L,GROUP_POWER_LINE,LCT_POWERL_RU_L_G); LG(CST_POWERL_LDU_L,GROUP_POWER_LINE,LCT_POWERL_LDU_L_G); LG(CST_POWERL_LDR_L,GROUP_POWER_LINE,LCT_POWERL_LDR_L_G); LG(CST_POWERL_LUR_L,GROUP_POWER_LINE,LCT_POWERL_LUR_L_G); LG(CST_POWERL_UDR_L,GROUP_POWER_LINE,LCT_POWERL_UDR_L_G); LG(CST_POWERL_LUDR_L,GROUP_POWER_LINE,LCT_POWERL_LUDR_L_G); LG(CST_POWERL_H_D,GROUP_POWER_LINE,LCT_POWERL_H_D_G); LG(CST_POWERL_V_D,GROUP_POWER_LINE,LCT_POWERL_V_D_G); LG(CST_POWERL_LD_D,GROUP_POWER_LINE,LCT_POWERL_LD_D_G); LG(CST_POWERL_RD_D,GROUP_POWER_LINE,LCT_POWERL_RD_D_G); LG(CST_POWERL_LU_D,GROUP_POWER_LINE,LCT_POWERL_LU_D_G); LG(CST_POWERL_RU_D,GROUP_POWER_LINE,LCT_POWERL_RU_D_G); LG(CST_POWERL_LDU_D,GROUP_POWER_LINE,LCT_POWERL_LDU_D_G); LG(CST_POWERL_LDR_D,GROUP_POWER_LINE,LCT_POWERL_LDR_D_G); LG(CST_POWERL_LUR_D,GROUP_POWER_LINE,LCT_POWERL_LUR_D_G); LG(CST_POWERL_UDR_D,GROUP_POWER_LINE,LCT_POWERL_UDR_D_G); LG(CST_POWERL_LUDR_D,GROUP_POWER_LINE,LCT_POWERL_LUDR_D_G); LG(CST_RAIL_LR,GROUP_RAIL,LCT_RAIL_LR_G); LG(CST_RAIL_LU,GROUP_RAIL,LCT_RAIL_LU_G); LG(CST_RAIL_LD,GROUP_RAIL,LCT_RAIL_LD_G); LG(CST_RAIL_UD,GROUP_RAIL,LCT_RAIL_UD_G); LG(CST_RAIL_UR,GROUP_RAIL,LCT_RAIL_UR_G); LG(CST_RAIL_DR,GROUP_RAIL,LCT_RAIL_DR_G); LG(CST_RAIL_LUR,GROUP_RAIL,LCT_RAIL_LUR_G); LG(CST_RAIL_LDR,GROUP_RAIL,LCT_RAIL_LDR_G); LG(CST_RAIL_LUD,GROUP_RAIL,LCT_RAIL_LUD_G); LG(CST_RAIL_UDR,GROUP_RAIL,LCT_RAIL_UDR_G); LG(CST_RAIL_LUDR,GROUP_RAIL,LCT_RAIL_LUDR_G); LG(CST_ROAD_LR,GROUP_ROAD,LCT_ROAD_LR_G); LG(CST_ROAD_LU,GROUP_ROAD,LCT_ROAD_LU_G); LG(CST_ROAD_LD,GROUP_ROAD,LCT_ROAD_LD_G); LG(CST_ROAD_UD,GROUP_ROAD,LCT_ROAD_UD_G); LG(CST_ROAD_UR,GROUP_ROAD,LCT_ROAD_UR_G); LG(CST_ROAD_DR,GROUP_ROAD,LCT_ROAD_DR_G); LG(CST_ROAD_LUR,GROUP_ROAD,LCT_ROAD_LUR_G); LG(CST_ROAD_LDR,GROUP_ROAD,LCT_ROAD_LDR_G); LG(CST_ROAD_LUD,GROUP_ROAD,LCT_ROAD_LUD_G); LG(CST_ROAD_UDR,GROUP_ROAD,LCT_ROAD_UDR_G); LG(CST_ROAD_LUDR,GROUP_ROAD,LCT_ROAD_LUDR_G); LG(CST_TRACK_LR,GROUP_TRACK,LCT_TRACK_LR_G); LG(CST_TRACK_LU,GROUP_TRACK,LCT_TRACK_LU_G); LG(CST_TRACK_LD,GROUP_TRACK,LCT_TRACK_LD_G); LG(CST_TRACK_UD,GROUP_TRACK,LCT_TRACK_UD_G); LG(CST_TRACK_UR,GROUP_TRACK,LCT_TRACK_UR_G); LG(CST_TRACK_DR,GROUP_TRACK,LCT_TRACK_DR_G); LG(CST_TRACK_LUR,GROUP_TRACK,LCT_TRACK_LUR_G); LG(CST_TRACK_LDR,GROUP_TRACK,LCT_TRACK_LDR_G); LG(CST_TRACK_LUD,GROUP_TRACK,LCT_TRACK_LUD_G); LG(CST_TRACK_UDR,GROUP_TRACK,LCT_TRACK_UDR_G); LG(CST_TRACK_LUDR,GROUP_TRACK,LCT_TRACK_LUDR_G); LG(CST_WATER,GROUP_WATER,LCT_WATER_G); LG(CST_WATER_D,GROUP_WATER,LCT_WATER_D_G); LG(CST_WATER_R,GROUP_WATER,LCT_WATER_R_G); LG(CST_WATER_U,GROUP_WATER,LCT_WATER_U_G); LG(CST_WATER_L,GROUP_WATER,LCT_WATER_L_G); LG(CST_WATER_LR,GROUP_WATER,LCT_WATER_LR_G); LG(CST_WATER_UD,GROUP_WATER,LCT_WATER_UD_G); LG(CST_WATER_LD,GROUP_WATER,LCT_WATER_LD_G); LG(CST_WATER_RD,GROUP_WATER,LCT_WATER_RD_G); LG(CST_WATER_LU,GROUP_WATER,LCT_WATER_LU_G); LG(CST_WATER_UR,GROUP_WATER,LCT_WATER_UR_G); LG(CST_WATER_LUD,GROUP_WATER,LCT_WATER_LUD_G); LG(CST_WATER_LRD,GROUP_WATER,LCT_WATER_LRD_G); LG(CST_WATER_LUR,GROUP_WATER,LCT_WATER_LUR_G); LG(CST_WATER_URD,GROUP_WATER,LCT_WATER_URD_G); LG(CST_WATER_LURD,GROUP_WATER,LCT_WATER_LURD_G); LG(CST_BLACKSMITH_0,GROUP_BLACKSMITH,LCT_BLACKSMITH_0_G); LG(CST_BLACKSMITH_1,GROUP_BLACKSMITH,LCT_BLACKSMITH_1_G); LG(CST_BLACKSMITH_2,GROUP_BLACKSMITH,LCT_BLACKSMITH_2_G); LG(CST_BLACKSMITH_3,GROUP_BLACKSMITH,LCT_BLACKSMITH_3_G); LG(CST_BLACKSMITH_4,GROUP_BLACKSMITH,LCT_BLACKSMITH_4_G); LG(CST_BLACKSMITH_5,GROUP_BLACKSMITH,LCT_BLACKSMITH_5_G); LG(CST_BLACKSMITH_6,GROUP_BLACKSMITH,LCT_BLACKSMITH_6_G); LG(CST_CRICKET_1,GROUP_CRICKET,LCT_CRICKET_1_G); LG(CST_CRICKET_2,GROUP_CRICKET,LCT_CRICKET_2_G); LG(CST_CRICKET_3,GROUP_CRICKET,LCT_CRICKET_3_G); LG(CST_CRICKET_4,GROUP_CRICKET,LCT_CRICKET_4_G); LG(CST_CRICKET_5,GROUP_CRICKET,LCT_CRICKET_5_G); LG(CST_CRICKET_6,GROUP_CRICKET,LCT_CRICKET_6_G); LG(CST_CRICKET_7,GROUP_CRICKET,LCT_CRICKET_7_G); LG(CST_FIRESTATION_1,GROUP_FIRESTATION,LCT_FIRESTATION_1_G); LG(CST_FIRESTATION_2,GROUP_FIRESTATION,LCT_FIRESTATION_2_G); LG(CST_FIRESTATION_3,GROUP_FIRESTATION,LCT_FIRESTATION_3_G); LG(CST_FIRESTATION_4,GROUP_FIRESTATION,LCT_FIRESTATION_4_G); LG(CST_FIRESTATION_5,GROUP_FIRESTATION,LCT_FIRESTATION_5_G); LG(CST_FIRESTATION_6,GROUP_FIRESTATION,LCT_FIRESTATION_6_G); LG(CST_FIRESTATION_7,GROUP_FIRESTATION,LCT_FIRESTATION_7_G); LG(CST_FIRESTATION_8,GROUP_FIRESTATION,LCT_FIRESTATION_8_G); LG(CST_FIRESTATION_9,GROUP_FIRESTATION,LCT_FIRESTATION_9_G); LG(CST_FIRESTATION_10,GROUP_FIRESTATION,LCT_FIRESTATION_10_G); LG(CST_HEALTH,GROUP_HEALTH,LCT_HEALTH_G); LG(CST_MARKET_EMPTY,GROUP_MARKET,LCT_MARKET_EMPTY_G); LG(CST_MARKET_LOW,GROUP_MARKET,LCT_MARKET_LOW_G); LG(CST_MARKET_MED,GROUP_MARKET,LCT_MARKET_MED_G); LG(CST_MARKET_FULL,GROUP_MARKET,LCT_MARKET_FULL_G); LG(CST_MILL_0,GROUP_MILL,LCT_MILL_0_G); LG(CST_MILL_1,GROUP_MILL,LCT_MILL_1_G); LG(CST_MILL_2,GROUP_MILL,LCT_MILL_2_G); LG(CST_MILL_3,GROUP_MILL,LCT_MILL_3_G); LG(CST_MILL_4,GROUP_MILL,LCT_MILL_4_G); LG(CST_MILL_5,GROUP_MILL,LCT_MILL_5_G); LG(CST_MILL_6,GROUP_MILL,LCT_MILL_6_G); LG(CST_MONUMENT_0,GROUP_MONUMENT,LCT_MONUMENT_0_G); LG(CST_MONUMENT_1,GROUP_MONUMENT,LCT_MONUMENT_1_G); LG(CST_MONUMENT_2,GROUP_MONUMENT,LCT_MONUMENT_2_G); LG(CST_MONUMENT_3,GROUP_MONUMENT,LCT_MONUMENT_3_G); LG(CST_MONUMENT_4,GROUP_MONUMENT,LCT_MONUMENT_4_G); LG(CST_MONUMENT_5,GROUP_MONUMENT,LCT_MONUMENT_5_G); LG(CST_POTTERY_0,GROUP_POTTERY,LCT_POTTERY_0_G); LG(CST_POTTERY_1,GROUP_POTTERY,LCT_POTTERY_1_G); LG(CST_POTTERY_2,GROUP_POTTERY,LCT_POTTERY_2_G); LG(CST_POTTERY_3,GROUP_POTTERY,LCT_POTTERY_3_G); LG(CST_POTTERY_4,GROUP_POTTERY,LCT_POTTERY_4_G); LG(CST_POTTERY_5,GROUP_POTTERY,LCT_POTTERY_5_G); LG(CST_POTTERY_6,GROUP_POTTERY,LCT_POTTERY_6_G); LG(CST_POTTERY_7,GROUP_POTTERY,LCT_POTTERY_7_G); LG(CST_POTTERY_8,GROUP_POTTERY,LCT_POTTERY_8_G); LG(CST_POTTERY_9,GROUP_POTTERY,LCT_POTTERY_9_G); LG(CST_POTTERY_10,GROUP_POTTERY,LCT_POTTERY_10_G); LG(CST_RECYCLE,GROUP_RECYCLE,LCT_RECYCLE_G); LG(CST_SCHOOL,GROUP_SCHOOL,LCT_SCHOOL_G); LG(CST_SHANTY,GROUP_SHANTY,LCT_SHANTY_G); LG(CST_SUBSTATION_R,GROUP_SUBSTATION,LCT_SUBSTATION_R_G); LG(CST_SUBSTATION_G,GROUP_SUBSTATION,LCT_SUBSTATION_G_G); LG(CST_SUBSTATION_RG,GROUP_SUBSTATION,LCT_SUBSTATION_RG_G); LG(CST_WINDMILL_1_G,GROUP_WINDMILL,LCT_WINDMILL_1_G_G); LG(CST_WINDMILL_2_G,GROUP_WINDMILL,LCT_WINDMILL_2_G_G); LG(CST_WINDMILL_3_G,GROUP_WINDMILL,LCT_WINDMILL_3_G_G); LG(CST_WINDMILL_1_RG,GROUP_WINDMILL,LCT_WINDMILL_1_RG_G); LG(CST_WINDMILL_2_RG,GROUP_WINDMILL,LCT_WINDMILL_2_RG_G); LG(CST_WINDMILL_3_RG,GROUP_WINDMILL,LCT_WINDMILL_3_RG_G); LG(CST_WINDMILL_1_R,GROUP_WINDMILL,LCT_WINDMILL_1_R_G); LG(CST_WINDMILL_2_R,GROUP_WINDMILL,LCT_WINDMILL_2_R_G); LG(CST_WINDMILL_3_R,GROUP_WINDMILL,LCT_WINDMILL_3_R_G); LG(CST_WINDMILL_1_W,GROUP_WINDMILL,LCT_WINDMILL_1_W_G); LG(CST_WINDMILL_2_W,GROUP_WINDMILL,LCT_WINDMILL_2_W_G); LG(CST_WINDMILL_3_W,GROUP_WINDMILL,LCT_WINDMILL_3_W_G); LG(CST_INDUSTRY_L_C,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_C_G); LG(CST_INDUSTRY_L_Q1,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_Q1_G); LG(CST_INDUSTRY_L_Q2,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_Q2_G); LG(CST_INDUSTRY_L_Q3,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_Q3_G); LG(CST_INDUSTRY_L_Q4,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_Q4_G); LG(CST_INDUSTRY_L_L1,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_L1_G); LG(CST_INDUSTRY_L_L2,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_L2_G); LG(CST_INDUSTRY_L_L3,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_L3_G); LG(CST_INDUSTRY_L_L4,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_L4_G); LG(CST_INDUSTRY_L_M1,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_M1_G); LG(CST_INDUSTRY_L_M2,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_M2_G); LG(CST_INDUSTRY_L_M3,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_M3_G); LG(CST_INDUSTRY_L_M4,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_M4_G); LG(CST_INDUSTRY_L_H1,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_H1_G); LG(CST_INDUSTRY_L_H2,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_H2_G); LG(CST_INDUSTRY_L_H3,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_H3_G); LG(CST_INDUSTRY_L_H4,GROUP_INDUSTRY_L,LCT_INDUSTRY_L_H4_G); LG(CST_RESIDENCE_LL,GROUP_RESIDENCE_LL,LCT_RESIDENCE_LL_G); LG(CST_RESIDENCE_ML,GROUP_RESIDENCE_ML,LCT_RESIDENCE_ML_G); LG(CST_RESIDENCE_HL,GROUP_RESIDENCE_HL,LCT_RESIDENCE_HL_G); LG(CST_RESIDENCE_LH,GROUP_RESIDENCE_LH,LCT_RESIDENCE_LH_G); LG(CST_RESIDENCE_MH,GROUP_RESIDENCE_MH,LCT_RESIDENCE_MH_G); LG(CST_RESIDENCE_HH,GROUP_RESIDENCE_HH,LCT_RESIDENCE_HH_G); LG(CST_UNIVERSITY,GROUP_UNIVERSITY,LCT_UNIVERSITY_G); LG(CST_COALMINE_EMPTY,GROUP_COALMINE,LCT_COALMINE_EMPTY_G); LG(CST_COALMINE_LOW,GROUP_COALMINE,LCT_COALMINE_LOW_G); LG(CST_COALMINE_MED,GROUP_COALMINE,LCT_COALMINE_MED_G); LG(CST_COALMINE_FULL,GROUP_COALMINE,LCT_COALMINE_FULL_G); LG(CST_COMMUNE_1,GROUP_COMMUNE,LCT_COMMUNE_1_G); LG(CST_COMMUNE_2,GROUP_COMMUNE,LCT_COMMUNE_2_G); LG(CST_COMMUNE_3,GROUP_COMMUNE,LCT_COMMUNE_3_G); LG(CST_COMMUNE_4,GROUP_COMMUNE,LCT_COMMUNE_4_G); LG(CST_COMMUNE_5,GROUP_COMMUNE,LCT_COMMUNE_5_G); LG(CST_COMMUNE_6,GROUP_COMMUNE,LCT_COMMUNE_6_G); LG(CST_COMMUNE_7,GROUP_COMMUNE,LCT_COMMUNE_7_G); LG(CST_COMMUNE_8,GROUP_COMMUNE,LCT_COMMUNE_8_G); LG(CST_COMMUNE_9,GROUP_COMMUNE,LCT_COMMUNE_9_G); LG(CST_COMMUNE_10,GROUP_COMMUNE,LCT_COMMUNE_10_G); LG(CST_COMMUNE_11,GROUP_COMMUNE,LCT_COMMUNE_11_G); LG(CST_COMMUNE_12,GROUP_COMMUNE,LCT_COMMUNE_12_G); LG(CST_COMMUNE_13,GROUP_COMMUNE,LCT_COMMUNE_13_G); LG(CST_COMMUNE_14,GROUP_COMMUNE,LCT_COMMUNE_14_G); LG(CST_EX_PORT,GROUP_PORT,LCT_EX_PORT_G); LG(CST_FARM_O0,GROUP_ORGANIC_FARM,LCT_FARM_O0_G); LG(CST_FARM_O1,GROUP_ORGANIC_FARM,LCT_FARM_O1_G); LG(CST_FARM_O2,GROUP_ORGANIC_FARM,LCT_FARM_O2_G); LG(CST_FARM_O3,GROUP_ORGANIC_FARM,LCT_FARM_O3_G); LG(CST_FARM_O4,GROUP_ORGANIC_FARM,LCT_FARM_O4_G); LG(CST_FARM_O5,GROUP_ORGANIC_FARM,LCT_FARM_O5_G); LG(CST_FARM_O6,GROUP_ORGANIC_FARM,LCT_FARM_O6_G); LG(CST_FARM_O7,GROUP_ORGANIC_FARM,LCT_FARM_O7_G); LG(CST_FARM_O8,GROUP_ORGANIC_FARM,LCT_FARM_O8_G); LG(CST_FARM_O9,GROUP_ORGANIC_FARM,LCT_FARM_O9_G); LG(CST_FARM_O10,GROUP_ORGANIC_FARM,LCT_FARM_O10_G); LG(CST_FARM_O11,GROUP_ORGANIC_FARM,LCT_FARM_O11_G); LG(CST_FARM_O12,GROUP_ORGANIC_FARM,LCT_FARM_O12_G); LG(CST_FARM_O13,GROUP_ORGANIC_FARM,LCT_FARM_O13_G); LG(CST_FARM_O14,GROUP_ORGANIC_FARM,LCT_FARM_O14_G); LG(CST_FARM_O15,GROUP_ORGANIC_FARM,LCT_FARM_O15_G); LG(CST_FARM_O16,GROUP_ORGANIC_FARM,LCT_FARM_O16_G); LG(CST_INDUSTRY_H_C,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_C_G); LG(CST_INDUSTRY_H_L1,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L1_G); LG(CST_INDUSTRY_H_L2,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L2_G); LG(CST_INDUSTRY_H_L3,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L3_G); LG(CST_INDUSTRY_H_L4,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L4_G); LG(CST_INDUSTRY_H_L5,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L5_G); LG(CST_INDUSTRY_H_L6,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L6_G); LG(CST_INDUSTRY_H_L7,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L7_G); LG(CST_INDUSTRY_H_L8,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_L8_G); LG(CST_INDUSTRY_H_M1,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M1_G); LG(CST_INDUSTRY_H_M2,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M2_G); LG(CST_INDUSTRY_H_M3,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M3_G); LG(CST_INDUSTRY_H_M4,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M4_G); LG(CST_INDUSTRY_H_M5,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M5_G); LG(CST_INDUSTRY_H_M6,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M6_G); LG(CST_INDUSTRY_H_M7,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M7_G); LG(CST_INDUSTRY_H_M8,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_M8_G); LG(CST_INDUSTRY_H_H1,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H1_G); LG(CST_INDUSTRY_H_H2,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H2_G); LG(CST_INDUSTRY_H_H3,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H3_G); LG(CST_INDUSTRY_H_H4,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H4_G); LG(CST_INDUSTRY_H_H5,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H5_G); LG(CST_INDUSTRY_H_H6,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H6_G); LG(CST_INDUSTRY_H_H7,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H7_G); LG(CST_INDUSTRY_H_H8,GROUP_INDUSTRY_H,LCT_INDUSTRY_H_H8_G); LG(CST_OREMINE_1,GROUP_OREMINE,LCT_OREMINE_1_G); LG(CST_OREMINE_2,GROUP_OREMINE,LCT_OREMINE_2_G); LG(CST_OREMINE_3,GROUP_OREMINE,LCT_OREMINE_3_G); LG(CST_OREMINE_4,GROUP_OREMINE,LCT_OREMINE_4_G); LG(CST_OREMINE_5,GROUP_OREMINE,LCT_OREMINE_5_G); LG(CST_OREMINE_6,GROUP_OREMINE,LCT_OREMINE_6_G); LG(CST_OREMINE_7,GROUP_OREMINE,LCT_OREMINE_7_G); LG(CST_OREMINE_8,GROUP_OREMINE,LCT_OREMINE_8_G); LG(CST_POWERS_COAL_EMPTY,GROUP_COAL_POWER,LCT_POWERS_COAL_EMPTY_G); LG(CST_POWERS_COAL_LOW,GROUP_COAL_POWER,LCT_POWERS_COAL_LOW_G); LG(CST_POWERS_COAL_MED,GROUP_COAL_POWER,LCT_POWERS_COAL_MED_G); LG(CST_POWERS_COAL_FULL,GROUP_COAL_POWER,LCT_POWERS_COAL_FULL_G); LG(CST_POWERS_SOLAR,GROUP_SOLAR_POWER,LCT_POWERS_SOLAR_G); LG(CST_ROCKET_1,GROUP_ROCKET,LCT_ROCKET_1_G); LG(CST_ROCKET_2,GROUP_ROCKET,LCT_ROCKET_2_G); LG(CST_ROCKET_3,GROUP_ROCKET,LCT_ROCKET_3_G); LG(CST_ROCKET_4,GROUP_ROCKET,LCT_ROCKET_4_G); LG(CST_ROCKET_5,GROUP_ROCKET,LCT_ROCKET_5_G); LG(CST_ROCKET_6,GROUP_ROCKET,LCT_ROCKET_6_G); LG(CST_ROCKET_7,GROUP_ROCKET,LCT_ROCKET_7_G); LG(CST_ROCKET_FLOWN,GROUP_ROCKET,LCT_ROCKET_FLOWN_G); LG(CST_TIP_0,GROUP_TIP,LCT_TIP_0_G); LG(CST_TIP_1,GROUP_TIP,LCT_TIP_1_G); LG(CST_TIP_2,GROUP_TIP,LCT_TIP_2_G); LG(CST_TIP_3,GROUP_TIP,LCT_TIP_3_G); LG(CST_TIP_4,GROUP_TIP,LCT_TIP_4_G); LG(CST_TIP_5,GROUP_TIP,LCT_TIP_5_G); LG(CST_TIP_6,GROUP_TIP,LCT_TIP_6_G); LG(CST_TIP_7,GROUP_TIP,LCT_TIP_7_G); LG(CST_TIP_8,GROUP_TIP,LCT_TIP_8_G); // main_t #undef LG #if defined (commentout) /* PROCESS IMAGE HERE */ while (!feof(txt_fp)) { char buf[128]; char *fnp,*rip,*cip; int ri,ci; /* Get line from text file */ fgets (buf,128,txt_fp); /* Tokenize */ fnp = strtok(buf," \t"); if (!fnp || *fnp == '#') continue; if (*fnp == '@') break; rip = strtok(NULL," \t"); if (!rip) continue; cip = strtok(NULL," \t"); if (!cip) continue; ri = atoi(rip); ci = atoi(cip); /* Copy icon */ if (!strcmp(fnp,LCT_GREEN_G)) { int r,c; char* p; main_types[CST_GREEN].graphic=malloc(16*16); p = main_types[CST_GREEN].graphic; for (r=ri*16;r #include #else #if defined (HAVE_SYS_TIME_H) #include #else #include #endif #endif #if defined(AIX) || defined(__EMX__) #include #endif #include "cliglobs.h" #include "mouse.h" #include "geometry.h" #include "lchelp.h" #include "timer.h" /* ---------------------------------------------------------------------- * * Private Global Variables * ---------------------------------------------------------------------- */ #if defined (WIN32) int usleep_counter = 0; #else struct timeval lc_timeval; int real_start_time; #endif Mouse_Handle * pause_handle; Mouse_Handle * slow_handle; Mouse_Handle * medium_handle; Mouse_Handle * fast_handle; /* ---------------------------------------------------------------------- * * Public Global Variables * ---------------------------------------------------------------------- */ long real_time = 0; /* In milliseconds */ /* ---------------------------------------------------------------------- * * Private Function Declarations * ---------------------------------------------------------------------- */ void pause_handler(int x, int y, int button); void slow_handler(int x, int y, int button); void medium_handler(int x, int y, int button); void fast_handler(int x, int y, int button); /* ---------------------------------------------------------------------- * * Function Definitions * ---------------------------------------------------------------------- */ void lc_usleep (unsigned long t) { #if defined (WIN32) /* This function will usually sleep too long. For example, if t == 0 (e.g. 1 usec), thread will sleep for the remainder of its timeslice, which might be 20 ms. */ SleepEx (t / 1000, FALSE); #else struct timeval timeout; timeout.tv_sec = t / 1000000; timeout.tv_usec = t - 1000000 * timeout.tv_sec; select (1, NULL, NULL, NULL, &timeout); #endif } void reset_start_time (void) { #if !defined (WIN32) if (gettimeofday (&lc_timeval, 0) != 0) do_error ("Can't get timeofday"); real_start_time = lc_timeval.tv_sec; #endif } void get_real_time (void) { #if defined (WIN32) const int CLOCKS_PER_MILLISECOND = CLOCKS_PER_SEC / 1000; real_time = (long) (clock () / CLOCKS_PER_MILLISECOND); #else gettimeofday (&lc_timeval, 0); real_time = (lc_timeval.tv_sec - real_start_time) * 1000 + (lc_timeval.tv_usec / 1000); #endif } /* Game speed functions */ void init_timer_buttons (void) { pause_handle = mouse_register(&scr.pause_button, &pause_handler); slow_handle = mouse_register(&scr.slow_button, &slow_handler); medium_handle = mouse_register(&scr.med_button, &medium_handler); fast_handle = mouse_register(&scr.fast_button, &fast_handler); } /* Mouse handlers */ void pause_handler(int x, int y, int button) { if (button == LC_MOUSE_RIGHTBUTTON) { activate_help ("pause.hlp"); } else { select_pause (); } } void slow_handler(int x, int y, int button) { if (button == LC_MOUSE_RIGHTBUTTON) { activate_help ("slow.hlp"); } else { select_slow (); } } void medium_handler(int x, int y, int button) { if (button == LC_MOUSE_RIGHTBUTTON) { activate_help ("medium.hlp"); } else { select_medium (); } } void fast_handler(int x, int y, int button) { if (button == LC_MOUSE_RIGHTBUTTON) { activate_help ("fast.hlp"); } else { select_fast (); } } void select_fast (void) { hide_mouse (); pause_flag = 0; draw_pause (0); slow_flag = 0; draw_slow (0); med_flag = 0; draw_med (0); fast_flag = 1; draw_fast (1); redraw_mouse (); } void select_medium (void) { hide_mouse (); pause_flag = 0; draw_pause (0); slow_flag = 0; draw_slow (0); med_flag = 1; draw_med (1); fast_flag = 0; draw_fast (0); redraw_mouse (); } void select_slow (void) { hide_mouse (); pause_flag = 0; draw_pause (0); slow_flag = 1; draw_slow (1); med_flag = 0; draw_med (0); fast_flag = 0; draw_fast (0); redraw_mouse (); } void select_pause (void) { if (pause_flag) { /* unpause it */ if (fast_flag) select_fast (); else if (med_flag) select_medium (); else if (slow_flag) select_slow (); else select_medium (); } else { /* pause it */ hide_mouse (); pause_flag = 1; draw_pause (1); draw_slow (0); draw_med (0); draw_fast (0); redraw_mouse (); } } lincity-1.13.1/fileutil.c0000644000175000017500000005007610071466671012172 00000000000000 /* ---------------------------------------------------------------------- * * fileutil.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include /* XXX: GCS FIX: What does configure need to know? */ #include "lcintl.h" #include "lcstring.h" #include "ldsvgui.h" /* XXX: Where are SVGA specific includes? */ /* this is for OS/2 - RVI */ #ifdef __EMX__ #include #include /* required for __XOS2RedirRoot */ #define chown(x,y,z) #define OS2_DEFAULT_LIBDIR "/XFree86/lib/X11/lincity" #endif #include #include #include #if defined (TIME_WITH_SYS_TIME) #include #include #else #if defined (HAVE_SYS_TIME_H) #include #else #include #endif #endif #if defined (WIN32) #include #if defined (__BORLANDC__) #include #include #include #endif #include #include #include #include #endif #if defined (HAVE_DIRENT_H) #include #define NAMLEN(dirent) strlen((dirent)->d_name) #else #define dirent direct #define NAMLEN(dirent) (dirent)->d_namlen #if defined (HAVE_SYS_NDIR_H) #include #endif #if defined (HAVE_SYS_DIR_H) #include #endif #if defined (HAVE_NDIR_H) #include #endif #endif #include #include "common.h" #ifdef LC_X11 #include #include #endif #include "lctypes.h" #include "lin-city.h" #include "cliglobs.h" #include "engglobs.h" #include "fileutil.h" /* GCS: This is from dcgettext.c in the gettext package. */ /* XPG3 defines the result of `setlocale (category, NULL)' as: ``Directs `setlocale()' to query `category' and return the current setting of `local'.'' However it does not specify the exact format. And even worse: POSIX defines this not at all. So we can use this feature only on selected system (e.g. those using GNU C Library). */ #ifdef _LIBC # define HAVE_LOCALE_NULL #endif #define DEBUG_PRINTF_TO_FILE 0 void debug_printf (char* fmt, ...); /* ---------------------------------------------------------------------- * * Private Fn Prototypes * ---------------------------------------------------------------------- */ void dump_screen (void); void verify_package (void); static const char *guess_category_value (int category, const char *categoryname); /* ---------------------------------------------------------------------- * * Public Global Variables * ---------------------------------------------------------------------- */ char LIBDIR[LC_PATH_MAX]; char *lc_save_dir; int lc_save_dir_len; static char *lc_temp_filename; char given_scene[LC_PATH_MAX]; char colour_pal_file[LC_PATH_MAX]; char opening_pic[LC_PATH_MAX]; char graphic_path[LC_PATH_MAX]; char fontfile[LC_PATH_MAX]; char opening_path[LC_PATH_MAX]; char help_path[LC_PATH_MAX]; char message_path[LC_PATH_MAX]; char lc_textdomain_directory[LC_PATH_MAX]; char lincityrc_file[LC_PATH_MAX]; /* The variable make_dir_ok_flag has 2 uses. First, it is initialized to 1, and set to zero if the directory already exists. Later, if it is found to be 1, the "create directory help page (ask-dir) is display, and then set to zero. Next, in the help handler, if the user says it's OK to create the directory, it is reset to 1. Finally, in the main loop, if it is found to have value 1, the directory is created and it is reset to 0. */ #if defined (commentout) int make_dir_ok_flag; #endif /* ---------------------------------------------------------------------- * * Public Functions * ---------------------------------------------------------------------- */ #if defined (__BORLANDC__) int _chdir (const char *dirname) { return chdir (dirname); } int _access (const char *path, int mode) { return access (path, mode) } #endif /* Executes a system command */ int execute_command (char *cmd, char *p1, char *p2, char *p3) { char *sys_cmd = (char *) malloc (strlen (cmd) + strlen (p1) + strlen (p2) + strlen (p3) + 4); int ret_value; if (sys_cmd == 0) { malloc_failure (); } sprintf (sys_cmd, "%s %s %s %s", cmd, p1, p2, p3); ret_value = system (sys_cmd); /* fprintf(stderr, "system(%s)=%i\n", sys_cmd, ret_value); */ free (sys_cmd); return ret_value; } void copy_file (char *f1, char *f2) { int ret_value = execute_command ("cp", f1, f2, ""); if (ret_value != 0) { /* GCS FIX: Need to make do_error into var_args fn? */ printf ("Tried to cp %s %s\n", f1, f2); do_error ("Can't copy requested file"); } } void gunzip_file (char *f1, char *f2) { int ret_value = execute_command ("gzip -c -d", f1, ">", f2); if (ret_value != 0) { /* GCS FIX: Need to make do_error into var_args fn? */ printf ("Tried to gzip -c -d %s > %s\n", f1, f2); do_error ("Can't gunzip requested file"); } } FILE* fopen_read_gzipped (char* fn) { FILE* fp; #if defined (HAVE_GZIP) && defined (HAVE_POPEN) #ifdef __EMX__ const char* cmd_str = "gzip -d -c < %s 2> nul"; #else const char* cmd_str = "gzip -d -c < %s 2> /dev/null"; #endif char *cmd = (char*) malloc (strlen (cmd_str) + strlen (fn) + 1); sprintf (cmd, cmd_str, fn); #ifdef __EMX__ fp=popen(cmd,"rb"); #else fp=popen(cmd,"r"); #endif if (fp==NULL) { fprintf(stderr, "Failed to open pipe cmd: %s\n", cmd); } free(cmd); #elif defined (HAVE_GZIP) && !defined (HAVE_POPEN) gunzip_file (fn, lc_temp_filename); fp = fopen (lc_temp_filename, "rb"); #else /* No gzip */ fp = fopen (fn, "rb"); #endif return fp; } void fclose_read_gzipped (FILE* fp) { #if defined (HAVE_GZIP) && defined (HAVE_POPEN) pclose (fp); #elif defined (HAVE_GZIP) && !defined (HAVE_POPEN) fclose (fp); remove (lc_temp_filename); #else fclose (fp); #endif } int directory_exists (char *dir) { #if defined (WIN32) if (_chdir (dir) == -1) { _chdir (LIBDIR); /* go back... */ return 0; } _chdir (LIBDIR); /* go back... */ #else /* UNIX */ DIR *dp; if ((dp = opendir (dir)) == NULL) { return 0; } closedir (dp); #endif return 1; } int file_exists (char *filename) { FILE* fp; fp = fopen (filename,"rb"); if (fp == NULL) { return 0; } fclose (fp); return 1; } #if defined (WIN32) void find_libdir (void) { const char searchfile[] = "Colour.pal"; /* default_dir will be something like "C:\\LINCITY1.11" */ const char default_dir[] = "C:\\LINCITY" VERSION; // const char default_dir[] = "D:\\LINCITY"; /* For GCS's use */ /* Check 1: environment variable */ _searchenv (searchfile, "LINCITY_HOME", LIBDIR); if (*LIBDIR != '\0') { int endofpath_offset = strlen (LIBDIR) - strlen (searchfile) - 1; LIBDIR[endofpath_offset] = '\0'; return; } /* Check 2: default location */ if ((_access (default_dir, 0)) != -1) { strcpy (LIBDIR, default_dir); return; } /* Finally give up */ HandleError (_("Error. Can't find LINCITY_HOME"), FATAL); } #elif defined (__EMX__) void find_libdir (void) { strcpy(LIBDIR, __XOS2RedirRoot(OS2_DEFAULT_LIBDIR)); } #else /* Unix with configure */ void find_libdir (void) { const char searchfile[] = "colour.pal"; char *home_dir, *cwd; char cwd_buf[LC_PATH_MAX]; char filename_buf[LC_PATH_MAX]; /* Check 1: environment variable */ home_dir = getenv ("LINCITY_HOME"); if (home_dir) { snprintf (filename_buf, LC_PATH_MAX, "%s%c%s", home_dir, PATH_SLASH, searchfile); if (file_exists(filename_buf)) { strncpy (LIBDIR, home_dir, LC_PATH_MAX); return; } } /* Check 2: current working directory */ cwd = getcwd (cwd_buf, LC_PATH_MAX); if (cwd) { snprintf (filename_buf, LC_PATH_MAX, "%s%c%s", cwd_buf, PATH_SLASH, searchfile); if (file_exists(filename_buf)) { strncpy (LIBDIR, cwd_buf, LC_PATH_MAX); return; } } /* Check 3: default (configuration) directory */ snprintf (filename_buf, LC_PATH_MAX, "%s%c%s", DEFAULT_LIBDIR, PATH_SLASH, searchfile); if (file_exists(filename_buf)) { strncpy (LIBDIR, DEFAULT_LIBDIR, LC_PATH_MAX); return; } /* Finally give up */ HandleError (_("Error. Can't find LINCITY_HOME"), FATAL); } #endif /* GCS: This function comes from dcgettext.c in the gettext package. */ /* Guess value of current locale from value of the environment variables. */ /* GCS Feb 23, 2003. This was updated in gettext, but I'm going with the */ /* old version here. */ static const char * guess_category_value (int category, const char *categoryname) { const char *retval; /* The highest priority value is the `LANGUAGE' environment variable. This is a GNU extension. */ retval = getenv ("LANGUAGE"); if (retval != NULL && retval[0] != '\0') return retval; /* `LANGUAGE' is not set. So we have to proceed with the POSIX methods of looking to `LC_ALL', `LC_xxx', and `LANG'. On some systems this can be done by the `setlocale' function itself. */ #if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL retval = setlocale (category, NULL); if (retval != NULL) return retval; else return "C"; #else /* Setting of LC_ALL overwrites all other. */ retval = getenv ("LC_ALL"); if (retval != NULL && retval[0] != '\0') return retval; /* Next comes the name of the desired category. */ retval = getenv (categoryname); if (retval != NULL && retval[0] != '\0') return retval; /* Last possibility is the LANG environment variable. */ retval = getenv ("LANG"); if (retval != NULL && retval[0] != '\0') return retval; /* We use C as the default domain. POSIX says this is implementation defined. */ return "C"; #endif } /* GCS: This function is modified from gettext. It finds the language portion of the locale. */ static void lincity_nl_find_language (char *name) { while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '+' && name[0] != ',') ++name; *name = '\0'; } void find_localized_paths (void) { int messages_done = 0; int help_done = 0; const char* intl_suffix = ""; char intl_lang[128]; /* First, try the locale "as is" */ #if defined (ENABLE_NLS) && defined (HAVE_LC_MESSAGES) intl_suffix = guess_category_value(LC_MESSAGES,"LC_MESSAGES"); #else intl_suffix = guess_category_value(0,"LC_MESSAGES"); #endif debug_printf ("GUESS 1 -- intl_suffix is %s\n", intl_suffix); if (strcmp(intl_suffix,"C") && strcmp(intl_suffix,"")) { sprintf (message_path, "%s%c%s%c%s%c", LIBDIR, PATH_SLASH, "messages", PATH_SLASH, intl_suffix, PATH_SLASH); debug_printf ("Trying Message Path %s\n", message_path); if (directory_exists(message_path)) { debug_printf ("Set Message Path %s\n", message_path); messages_done = 1; } sprintf (help_path, "%s%c%s%c%s%c", LIBDIR, PATH_SLASH, "help", PATH_SLASH, intl_suffix, PATH_SLASH); debug_printf ("Trying Help Path %s\n", help_path); if (directory_exists(help_path)) { debug_printf ("Set Help Path %s\n", help_path); help_done = 1; } } if (messages_done && help_done) return; /* Next, try stripping off the country suffix */ strncpy (intl_lang, intl_suffix, 128); intl_lang[127] = '\0'; lincity_nl_find_language (intl_lang); intl_suffix = intl_lang; debug_printf ("GUESS 2 -- intl_suffix is %s\n", intl_suffix); if (strcmp(intl_suffix,"C") && strcmp(intl_suffix,"")) { if (!messages_done) { sprintf (message_path, "%s%c%s%c%s%c", LIBDIR, PATH_SLASH, "messages", PATH_SLASH, intl_suffix, PATH_SLASH); debug_printf ("Trying Message Path %s\n", message_path); if (directory_exists(message_path)) { debug_printf ("Set Message Path %s\n", message_path); messages_done = 1; } } if (!help_done) { sprintf (help_path, "%s%c%s%c%s%c", LIBDIR, PATH_SLASH, "help", PATH_SLASH, intl_suffix, PATH_SLASH); debug_printf ("Trying Help Path %s\n", help_path); if (directory_exists(help_path)) { debug_printf ("Set Help Path %s\n", help_path); help_done = 1; } } } if (messages_done && help_done) return; /* Finally, settle for default English messages */ if (!messages_done) { sprintf (message_path, "%s%c%s%c", LIBDIR, PATH_SLASH, "messages", PATH_SLASH); debug_printf ("Settling for message Path %s\n", message_path); } if (!help_done) { sprintf (help_path, "%s%c%s%c", LIBDIR, PATH_SLASH, "help", PATH_SLASH); debug_printf ("Settling for help Path %s\n", help_path); } } void init_path_strings (void) { char* homedir = NULL; char* dm = NULL; char* td = NULL; find_libdir (); #if defined (WIN32) homedir = LIBDIR; #elif defined (__EMX__) homedir = getenv ("HOME"); #else homedir = getenv ("HOME"); #endif /* Various dirs and files */ lc_save_dir_len = strlen (homedir) + strlen (LC_SAVE_DIR) + 1; if ((lc_save_dir = (char *) malloc (lc_save_dir_len + 1)) == 0) malloc_failure (); sprintf (lc_save_dir, "%s%c%s", homedir, PATH_SLASH, LC_SAVE_DIR); sprintf (colour_pal_file, "%s%c%s", LIBDIR, PATH_SLASH, "colour.pal"); sprintf (opening_path, "%s%c%s", LIBDIR, PATH_SLASH, "opening"); #if defined (WIN32) sprintf (opening_pic, "%s%c%s",opening_path,PATH_SLASH,"open.tga"); #else sprintf (opening_pic, "%s%c%s",opening_path,PATH_SLASH,"open.tga.gz"); #endif sprintf (graphic_path, "%s%c%s%c", LIBDIR, PATH_SLASH, "icons", PATH_SLASH); sprintf (lincityrc_file, "%s%c%s", homedir, PATH_SLASH, LINCITYRC_FILENAME); /* Paths for message & help files, etc */ find_localized_paths (); /* Font stuff */ sprintf (fontfile, "%s%c%s", opening_path, PATH_SLASH, "iso8859-1-8x8.raw"); #if defined (WIN32) /* GCS: Use windows font for extra speed */ strcpy (windowsfontfile, LIBDIR); #if defined (commentout) if (!pix_double) strcat (windowsfontfile, "\\opening\\iso8859-1-8x8.fnt"); else strcat (windowsfontfile, "\\opening\\iso8859-1-9x15.fnt"); #endif if (!pix_double) strcat (windowsfontfile, "\\opening\\winfont_8x8.fnt"); else strcat (windowsfontfile, "\\opening\\winfont_16x16.fnt"); #endif /* Temp file for results */ lc_temp_filename = (char *) malloc (lc_save_dir_len + 16); if (lc_temp_filename == 0) { malloc_failure (); } sprintf (lc_temp_filename, "%s%c%s", lc_save_dir, PATH_SLASH, "tmp-file"); /* Path for localization */ #if defined (ENABLE_NLS) #if defined (WIN32) sprintf (lc_textdomain_directory, "%s%c%s", LIBDIR, PATH_SLASH, "locale"); #else strcpy (lc_textdomain_directory, LOCALEDIR); #endif dm = bindtextdomain (PACKAGE, lc_textdomain_directory); debug_printf ("Bound textdomain directory is %s\n", dm); td = textdomain (PACKAGE); debug_printf ("Textdomain is %s\n", td); #endif } void verify_package (void) { FILE *fp = fopen (colour_pal_file,"rb"); if (!fp) { do_error (_("Error verifying package. Can't find colour.pal.")); } fclose (fp); } void make_savedir (void) { #if !defined (WIN32) DIR *dp; #endif #if defined (commentout) if (make_dir_ok_flag == 0) return; #endif #if defined (WIN32) if (_mkdir (lc_save_dir)) { printf (_("Couldn't create the save directory %s\n"), lc_save_dir); exit (-1); } #else mkdir (lc_save_dir, 0755); chown (lc_save_dir, getuid (), getgid ()); if ((dp = opendir (lc_save_dir)) == NULL) { /* change this to a screen message. */ printf (_("Couldn't create the save directory %s\n"), lc_save_dir); exit (1); } closedir (dp); #endif #if defined (commentout) make_dir_ok_flag = 0; #endif } void check_savedir (void) { #if defined (commentout) int i = 0, j, k, r, l; #endif if (!directory_exists (lc_save_dir)) { make_savedir (); #if defined (commentout) l = lc_save_dir_len; if (l > 160) { i = l - 160; l = 160; } askdir_lines = l / 40 + ((l % 40) ? 1 : 0); r = l / askdir_lines + ((l % askdir_lines) ? 1 : 0); for (j = 0; j < askdir_lines; j++) { if ((askdir_path[j] = (char *) malloc (r + 1)) == 0) malloc_failure (); for (k = 0; k < r; k++, i++) *(askdir_path[j] + k) = lc_save_dir[i]; *(askdir_path[j] + k) = 0; } return; #endif } #if defined (commentout) make_dir_ok_flag = 0; /* don't load the ask-dir */ #endif } void malloc_failure (void) { printf (_("Out of memory: malloc failure\n")); exit (1); } char* load_graphic(char *s) { int x,l; char ss[LC_PATH_MAX],*graphic; FILE *inf; strcpy(ss,graphic_path); strcat(ss,s); if ((inf=fopen(ss,"rb"))==NULL) { strcat(ss," -- UNABLE TO LOAD"); do_error(ss); } fseek(inf,0L,SEEK_END); l=ftell(inf); fseek(inf,0L,SEEK_SET); graphic=(char *)malloc(l); for (x=0;x #include #include "lin-city.h" #include "lctypes.h" #include "engglobs.h" #include "pbar.h" #include "stats.h" /* ---------------------------------------------------------------------- * * Public Global Variables * ---------------------------------------------------------------------- */ /* Daily accumulators */ int food_in_markets; int jobs_in_markets; int coal_in_markets; int goods_in_markets; int ore_in_markets; int steel_in_markets; int waste_in_markets; /* Monthly accumulators */ int tfood_in_markets; int tjobs_in_markets; int tcoal_in_markets; int tgoods_in_markets; int tore_in_markets; int tsteel_in_markets; int twaste_in_markets; int tpopulation; int tstarving_population; int tunemployed_population; /* yearly */ int income_tax; int coal_tax; int goods_tax; int export_tax; int import_cost; int unemployment_cost; int transport_cost; int windmill_cost; int university_cost; int recycle_cost; int deaths_cost; int health_cost; int rocket_pad_cost; int school_cost; int fire_cost; int cricket_cost; int other_cost; /* Last Year's totals */ int ly_income_tax; int ly_coal_tax; int ly_goods_tax; int ly_export_tax; int ly_import_cost; int ly_other_cost; int ly_unemployment_cost; int ly_transport_cost; int ly_university_cost; int ly_recycle_cost; int ly_school_cost; int ly_deaths_cost; int ly_health_cost; int ly_rocket_pad_cost; int ly_interest; int ly_windmill_cost; int ly_cricket_cost; int ly_fire_cost; /* Averaging variables */ int data_last_month; /* ---------------------------------------------------------------------- * * Private Function Prototypes * ---------------------------------------------------------------------- */ void inventory_market(int x, int y); void init_daily(void) { population = 0; starving_population = 0; unemployed_population = 0; food_in_markets = 0; jobs_in_markets = 0; coal_in_markets = 0; goods_in_markets = 0; ore_in_markets = 0; steel_in_markets = 0; } void init_monthly(void) { data_last_month = 0; tpopulation = 0; tstarving_population = 0; tfood_in_markets = 0; tjobs_in_markets = 0; tcoal_in_markets = 0; tgoods_in_markets = 0; tore_in_markets = 0; tsteel_in_markets = 0; tunemployed_population = 0; unnat_deaths = 0; } void init_yearly(void) { income_tax = 0; coal_tax = 0; unemployment_cost = 0; transport_cost = 0; goods_tax = 0; export_tax = 0; import_cost = 0; windmill_cost = 0; university_cost = 0; recycle_cost = 0; deaths_cost = 0; health_cost = 0; rocket_pad_cost = 0; school_cost = 0; fire_cost = 0; cricket_cost = 0; } void init_lastyear(void) { ly_income_tax = 0; ly_coal_tax = 0; ly_goods_tax = 0; ly_export_tax = 0; ly_import_cost = 0; ly_other_cost = 0; ly_unemployment_cost = 0; ly_transport_cost = 0; ly_university_cost = 0; ly_recycle_cost = 0; ly_school_cost = 0; ly_deaths_cost = 0; ly_health_cost = 0; ly_rocket_pad_cost = 0; ly_interest = 0; ly_windmill_cost = 0; ly_cricket_cost = 0; ly_fire_cost = 0; } void inventory(int x, int y) { switch(get_group_of_type(MP_TYPE(x,y))) { case GROUP_MARKET: inventory_market(x, y); break; default: { printf("Default in inventory(%d,%d): got %d\n", x, y, get_group_of_type(MP_TYPE(x,y))); break; } } } void init_inventory(void) { init_daily(); init_monthly(); init_yearly(); init_lastyear(); } void inventory_market(int x, int y) { food_in_markets += MP_INFO(x,y).int_1; jobs_in_markets += MP_INFO(x,y).int_2; coal_in_markets += MP_INFO(x,y).int_3; goods_in_markets += MP_INFO(x,y).int_4; ore_in_markets += MP_INFO(x,y).int_5; steel_in_markets += MP_INFO(x,y).int_6; waste_in_markets += MP_INFO(x,y).int_7; } /* XXX: WCK: Why oh why must we divide by arbitrary values, below? */ /* If this is fixed, make sure to fix it in pbar also! */ void add_daily_to_monthly(void) { data_last_month++; tpopulation += population; tstarving_population += starving_population; tfood_in_markets += food_in_markets / 1000; tjobs_in_markets += jobs_in_markets / 1000; tcoal_in_markets += coal_in_markets / 250; tgoods_in_markets += goods_in_markets / 500; tore_in_markets += ore_in_markets / 500; tsteel_in_markets += steel_in_markets / 25; twaste_in_markets += waste_in_markets; tunemployed_population += unemployed_population; } lincity-1.13.1/picedit.c0000644000175000017500000011243010071452074011757 00000000000000/* ---------------------------------------------------------------------- * * picedit.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * Thanks to Gerben V for X true color support. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include "lcstring.h" #ifdef LC_X11 #include #include #include #include "xpicedit.h" #elif defined (SVGALIB) #include #include #include #endif #define LIBDIR DEFAULT_LIBDIR #ifdef __EMX__ #include /* required for __XOS2RedirRoot */ #define chown(x,y,z) #ifdef LIBDIR #undef LIBDIR /* yes, I know I shouldn't ;-) */ #endif char LIBDIR[256]; #define OS2_DEFAULT_LIBDIR "/XFree86/lib/X11/lincity" #endif #define COLOUR_PAL_FILE "/colour.pal" #define FONTFILE "/opening/iso8859-1-8x8.raw" #define WINSTARTX 240 #define WINSTARTY ((14*16)-1) #define SWINSTARTX 56 #define SWINSTARTY 260 #define MAXIMAGESIZE 4 #define SIZEBUTTONX1x1 540 #define SIZEBUTTONY1x1 260 #define SIZEBUTTONX2x2 540 #define SIZEBUTTONY2x2 276 #define SIZEBUTTONX3x3 540 #define SIZEBUTTONY3x3 292 #define SIZEBUTTONX4x4 540 #define SIZEBUTTONY4x4 308 #define SIZEBUTTONSIZEX 32 #define SIZEBUTTONSIZEY 16 #define FOCUSWINX 40 #define FOCUSWINY 360 /* FOCUSWINSIZE must be a multiple of 4 */ #define FOCUSWINSIZE 56 #define ZOOMBUTX 540 #define ZOOMBUTY 390 #define ZOOMBUTSIZEX 40 #define ZOOMBUTSIZEY 16 #define HALFBUTX 540 #define HALFBUTY 370 #define HALFBUTSIZEX 40 #define HALFBUTSIZEY 16 #define NORMBUTX 540 #define NORMBUTY 350 #define NORMBUTSIZEX 40 #define NORMBUTSIZEY 16 #define DOTBUTX 150 #define DOTBUTY 350 #define DOTBUTSIZEX 40 #define DOTBUTSIZEY 16 #define HFILBUTX 150 #define HFILBUTY 370 #define HFILBUTSIZEX 40 #define HFILBUTSIZEY 16 #define VFILBUTX 150 #define VFILBUTY 390 #define VFILBUTSIZEX 40 #define VFILBUTSIZEY 16 #define red(x) (32 + x) #define green(x) (64 + x) #define yellow(x) (96 + x) #define blue(x) (128 + x) #define magenta(x) (160 + x) #define cyan(x) (192 + x) #define white(x) (224 + x) #define FOCUSWINCOLOUR green(30) #define UNFOCUSWINCOLOUR magenta(20) #define XFOCUSWINCOLOUR red(15) unsigned char mouse_pointer[] = { 255, 255, 255, 255, 1, 1, 1, 1, 255, 1, 1, 1, 255, 255, 1, 1, 255, 1, 255, 255, 255, 1, 255, 1, 255, 1, 255, 1, 1, 255, 1, 1, 1, 255, 255, 1, 1, 1, 255, 1, 1, 255, 1, 255, 1, 1, 1, 1, 1, 1, 255, 1, 255, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; unsigned char under_mouse_pointer[8 * 8], last16[16]; unsigned char image[16 * MAXIMAGESIZE][16 * MAXIMAGESIZE]; char imagefile[100]; int colour = 0, mx, my, mox, moy, zoom_flag = 1, hfill_flag = 0, vfill_flag = 0; int imagesize, newimagesize, focus, focusx, focusy; int old_focusx = 0, old_focusy = 0, stopflag, lc_mouse_type; void do_buttons (int, int); void draw_dot (void); void draw_hfill (void); void draw_vfill (void); void full_zoom (void); void half_zoom (void); void norm_zoom (void); void do_error (char *); void choose_colour (int, int); void fill_colour (int, int); void hfill (int, int); void vfill (int, int); void fill_colourzoom (int, int); void fill_colour1 (int, int); void fill_colour2 (int, int); void fill_colour3 (int, int); void fill_colour4 (int, int); void setcustompalette (void); void initfont (void); void save_image (void); void load_image (void); void setup (void); void draw_focus (void); void draw_swin (void); void draw_big_image (void); void draw_big_imagezoom (void); void draw_big_image1 (void); void draw_big_image2 (void); void draw_big_image3 (void); void draw_big_image4 (void); void change_imagesize (int); void change_focus (int, int); void hide_mouse (void); void reshow_mouse (void); #ifdef LC_X11 void Fgl_hline (int, int, int, int); void Fgl_line (int, int, int, int, int); void Fgl_setpixel (int, int, int); int Fgl_getpixel (int, int); void Fgl_write (int, int, char *); void Fgl_fillbox (int, int, int, int, int); void Fgl_putbox (int, int, int, int, unsigned char *); void Fgl_getbox (int, int, int, int, unsigned char *); #else void lincityrc (); #define Fgl_setpixel(a,b,c) gl_setpixel(a,b,c) #define Fgl_getpixel(a,b) gl_getpixel(a,b) #define Fgl_hline(a,b,c,d) gl_hline(a,b,c,d) #define Fgl_line(a,b,c,d,e) gl_line(a,b,c,d,e) #define Fgl_write(a,b,c) gl_write(a,b,c) #define Fgl_fillbox(a,b,c,d,e) gl_fillbox(a,b,c,d,e) #define Fgl_putbox(a,b,c,d,e) gl_putbox(a,b,c,d,e) #define Fgl_getbox(a,b,c,d,e) gl_getbox(a,b,c,d,e) #endif #ifdef LC_X11 int winX, winY, mouse_button; unsigned int winW, winH; disp display; char *bg_color = NULL; char pixmap[(640 + BORDERX * 2) * (480 + BORDERY * 2)]; char myfont[256 * 8]; int verbose = FALSE; int text_bg = 0; int text_fg = 255; int borderx, bordery; long unsigned int colour_table[256]; void parse_args (int, char **, char **); void Create_Window (char *); void HandleError (char *, int); void HandleEvent (XEvent *); void refresh_screen (int, int, int, int); void my_x_putchar (int, int, int); #endif int main (int argc, char *argv[]) { int x, y, c, m, ox, oy; #ifdef LC_X11 XEvent xev; char *geometry = NULL; #endif c = 0; stopflag = 0; newimagesize = 1; #ifdef __EMX__ strcpy(LIBDIR, __XOS2RedirRoot(OS2_DEFAULT_LIBDIR)); #endif #ifdef LC_X11 borderx = BORDERX; bordery = BORDERY; parse_args (argc, argv, &geometry); printf ("Got past parse args\n"); Create_Window (geometry); XSync (display.dpy, FALSE); while (XPending (display.dpy) == 0); XNextEvent (display.dpy, &xev); HandleEvent (&xev); printf ("Got past create window\n"); #else lincityrc (); vga_init (); vga_setmode (G640x480x256); gl_setcontextvga (G640x480x256); #endif setcustompalette (); initfont (); if (argc < 2) strcpy (imagefile, "imagefile.default"); else { strcpy (imagefile, argv[1]); load_image (); } #ifndef LC_X11 m = mouse_init ("/dev/mouse", lc_mouse_type, MOUSE_DEFAULTSAMPLERATE); mouse_setxrange (0, 640 - 1); mouse_setyrange (0, 480 - 1); mouse_setwrap (MOUSE_NOWRAP); #endif setup (); #ifdef LC_X11 XSync (display.dpy, FALSE); #endif printf ("Got past setup\n"); if (newimagesize != imagesize) change_imagesize (newimagesize); change_focus (0, 0); printf ("Got to do loop\n"); do { #ifdef LC_X11 if (XPending (display.dpy)) { XNextEvent (display.dpy, &xev); HandleEvent (&xev); } if (mouse_button != 0) do_buttons (0, 0); #else c = vga_getkey (); mouse_waitforupdate (); mx = mouse_getx (); my = mouse_gety (); if (mx != mox || my != moy) { Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); mox = mx; moy = my; } do_buttons (mx, my); #endif } while (c == 0 && stopflag == 0); printf ("Normal exit\n"); #ifndef LC_X11 mouse_close (); vga_setmode (TEXT); printf ("c=%d mouse %d\n", c, m); #endif save_image (); exit (0); } void do_error (char *s) { #ifdef LC_X11 HandleError (s, FATAL); #else vga_setmode (TEXT); printf ("%s\n", s); exit (1); #endif } void do_buttons (int x, int y) { int b, left = 0, right = 0; #ifdef LC_X11 int dummy_int; Window dummy_win; if (mouse_button == Button1) left = 1; else if (mouse_button == Button3) right = 1; XQueryPointer (display.dpy, display.win, &dummy_win, &dummy_win ,&dummy_int, &dummy_int, &x, &y, (unsigned int *) &dummy_int); x -= borderx; y -= bordery; #else b = mouse_getbutton (); left = b & MOUSE_LEFTBUTTON; right = b & MOUSE_RIGHTBUTTON; #endif if (right != 0 && x < 560) choose_colour (x, y); if (left != 0) { if (y < 16 * 14 - 2) choose_colour (x, y); else if (x < WINSTARTX + 256 && x >= WINSTARTX && y < WINSTARTY + 256 && y > WINSTARTY) fill_colour (x, y); else if (x > SIZEBUTTONX1x1 && x < SIZEBUTTONX1x1 + SIZEBUTTONSIZEX && y > SIZEBUTTONY1x1 && y < SIZEBUTTONY1x1 + SIZEBUTTONSIZEY && imagesize != 1) change_imagesize (1); else if (x > SIZEBUTTONX2x2 && x < SIZEBUTTONX2x2 + SIZEBUTTONSIZEX && y > SIZEBUTTONY2x2 && y < SIZEBUTTONY2x2 + SIZEBUTTONSIZEY && imagesize != 2) change_imagesize (2); else if (x > SIZEBUTTONX3x3 && x < SIZEBUTTONX3x3 + SIZEBUTTONSIZEX && y > SIZEBUTTONY3x3 && y < SIZEBUTTONY3x3 + SIZEBUTTONSIZEY && imagesize != 3) change_imagesize (3); else if (x > SIZEBUTTONX4x4 && x < SIZEBUTTONX4x4 + SIZEBUTTONSIZEX && y > SIZEBUTTONY4x4 && y < SIZEBUTTONY4x4 + SIZEBUTTONSIZEY && imagesize != 4) change_imagesize (4); else if (x > FOCUSWINX && x < FOCUSWINX + FOCUSWINSIZE && y > FOCUSWINY && FOCUSWINY + FOCUSWINSIZE && zoom_flag == 1) change_focus ((x - FOCUSWINX) / (FOCUSWINSIZE / 4) ,(y - FOCUSWINY) / (FOCUSWINSIZE / 4)); else if (x > ZOOMBUTX && x < ZOOMBUTX + ZOOMBUTSIZEX && y > ZOOMBUTY && y < ZOOMBUTY + ZOOMBUTSIZEY) full_zoom (); else if (x > HALFBUTX && x < HALFBUTX + HALFBUTSIZEX && y > HALFBUTY && y < HALFBUTY + HALFBUTSIZEY) half_zoom (); else if (x > NORMBUTX && x < NORMBUTX + NORMBUTSIZEX && y > NORMBUTY && y < NORMBUTY + NORMBUTSIZEY) norm_zoom (); else if (x > DOTBUTX && x < DOTBUTX + DOTBUTSIZEX && y > DOTBUTY && y < DOTBUTY + DOTBUTSIZEY) draw_dot (); else if (x > HFILBUTX && x < HFILBUTX + HFILBUTSIZEX && y > HFILBUTY && y < HFILBUTY + HFILBUTSIZEY) draw_hfill (); else if (x > VFILBUTX && x < VFILBUTX + VFILBUTSIZEX && y > VFILBUTY && y < VFILBUTY + VFILBUTSIZEY) draw_vfill (); } } void draw_dot (void) { Fgl_write (DOTBUTX - 10, DOTBUTY + 3, ">"); Fgl_write (HFILBUTX - 10, HFILBUTY + 3, " "); Fgl_write (VFILBUTX - 10, VFILBUTY + 3, " "); hfill_flag = 0; vfill_flag = 0; } void draw_hfill (void) { Fgl_write (DOTBUTX - 10, DOTBUTY + 3, " "); Fgl_write (HFILBUTX - 10, HFILBUTY + 3, ">"); Fgl_write (VFILBUTX - 10, VFILBUTY + 3, " "); hfill_flag = 1; vfill_flag = 0; } void draw_vfill (void) { Fgl_write (DOTBUTX - 10, DOTBUTY + 3, " "); Fgl_write (HFILBUTX - 10, HFILBUTY + 3, " "); Fgl_write (VFILBUTX - 10, VFILBUTY + 3, ">"); vfill_flag = 1; hfill_flag = 0; } void full_zoom (void) { int y; if (zoom_flag == 0) return; Fgl_write (ZOOMBUTX - 10, ZOOMBUTY + 3, ">"); Fgl_write (HALFBUTX - 10, HALFBUTY + 3, " "); Fgl_write (NORMBUTX - 10, NORMBUTY + 3, " "); if (imagesize == 3) { Fgl_fillbox (WINSTARTX - 1, WINSTARTY - 1 ,258, 258, 0); Fgl_hline (WINSTARTX - 1, WINSTARTY - 1 ,WINSTARTX + 240, 255); Fgl_hline (WINSTARTX - 1, WINSTARTY + 240 ,WINSTARTX + 240, 255); Fgl_line (WINSTARTX - 1, WINSTARTY - 1, WINSTARTX - 1 ,WINSTARTY + 240, 255); Fgl_line (WINSTARTX + 240, WINSTARTY - 1, WINSTARTX + 240 ,WINSTARTY + 240, 255); } zoom_flag = 0; old_focusx = focusx; old_focusy = focusy; change_focus (0, 0); draw_big_image (); } void half_zoom (void) { int y; if (zoom_flag == 2 || imagesize < 2) return; zoom_flag = 2; Fgl_write (ZOOMBUTX - 10, ZOOMBUTY + 3, " "); Fgl_write (HALFBUTX - 10, HALFBUTY + 3, ">"); Fgl_write (NORMBUTX - 10, NORMBUTY + 3, " "); if (zoom_flag != 0) { old_focusx = focusx; old_focusy = focusy; } if (focusx >= (imagesize - 1)) focusx = imagesize - 2; if (focusy >= (imagesize - 1)) focusy = imagesize - 2; change_focus (focusx, focusy); draw_big_image (); } void norm_zoom (void) { int y; if (zoom_flag == 1) return; Fgl_write (ZOOMBUTX - 10, ZOOMBUTY + 3, " "); Fgl_write (HALFBUTX - 10, HALFBUTY + 3, " "); Fgl_write (NORMBUTX - 10, NORMBUTY + 3, ">"); Fgl_hline (WINSTARTX, WINSTARTY - 1, WINSTARTX + 256, 255); Fgl_hline (WINSTARTX, WINSTARTY + 256, WINSTARTX + 256, 255); Fgl_line (WINSTARTX - 1, WINSTARTY, WINSTARTX - 1, WINSTARTY + 256, 255); Fgl_line (WINSTARTX + 256, WINSTARTY ,WINSTARTX + 256, WINSTARTY + 256, 255); for (y = 0; y < 16; y++) { Fgl_hline (WINSTARTX, WINSTARTY + y * 16 + 15 ,WINSTARTX + 255, 253); Fgl_line (WINSTARTX + y * 16 + 15, WINSTARTY, WINSTARTX + y * 16 + 15 ,WINSTARTY + 255, 253); } zoom_flag = 1; change_focus (old_focusx, old_focusy); draw_big_image (); } void choose_colour (int x, int y) { char s[100]; int q, newcolour; newcolour = Fgl_getpixel (x - 1, y - 1); if (newcolour == colour) return; colour = newcolour; for (q = 15; q > 0; q--) last16[q] = last16[q - 1]; last16[0] = colour; for (q = 0; q < 16; q++) { Fgl_fillbox (600, 14 * 16 + q * 16, 39, 15, (int) last16[q]); sprintf (s, "%d", (int) last16[q]); Fgl_write (600 + 3, 14 * 16 + q * 16 + 3, s); } } void fill_colour (int x, int y) { if (hfill_flag != 0) hfill (x, y); else if (vfill_flag != 0) vfill (x, y); else if (zoom_flag == 1) fill_colourzoom (x, y); else if (zoom_flag == 2) fill_colour2 (x, y); else if (imagesize == 1) fill_colour1 (x, y); else if (imagesize == 2) fill_colour2 (x, y); else if (imagesize == 3) fill_colour3 (x, y); else if (imagesize == 4) fill_colour4 (x, y); } void hfill (int x, int y) { int xx = 0, col, d; if (zoom_flag == 1) d = 16; else if (zoom_flag == 2) d = 8; else if (imagesize == 1) d = 16; else if (imagesize == 2) d = 8; else if (imagesize == 3) d = 5; else if (imagesize == 4) d = 4; col = image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16)]; while (((x - WINSTARTX) / d) + (focusx * 16) + xx < 16 * MAXIMAGESIZE && (image[((x - WINSTARTX) / d) + (focusx * 16) + xx] [((y - (WINSTARTY)) / d) + (focusy * 16)] == col)) { image[((x - WINSTARTX) / d) + (focusx * 16) + xx] [((y - (WINSTARTY)) / d) + (focusy * 16)] = colour; xx++; } xx = -1; while (((x - WINSTARTX) / d) + (focusx * 16) + xx >= 0 && (image[((x - WINSTARTX) / d) + (focusx * 16) + xx] [((y - (WINSTARTY)) / d) + (focusy * 16)] == col)) { image[((x - WINSTARTX) / d) + (focusx * 16) + xx] [((y - (WINSTARTY)) / d) + (focusy * 16)] = colour; xx--; } Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); draw_swin (); draw_big_image (); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); } void vfill (int x, int y) { int yy = 0, col, d; if (zoom_flag == 1) d = 16; else if (zoom_flag == 2) d = 8; else if (imagesize == 1) d = 16; else if (imagesize == 2) d = 8; else if (imagesize == 3) d = 5; else if (imagesize == 4) d = 4; col = image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16)]; while (((y - WINSTARTY) / d) + (focusy * 16) + yy < 16 * MAXIMAGESIZE && (image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16) + yy] == col)) { image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16) + yy] = colour; yy++; } yy = -1; while (((y - WINSTARTY) / d) + (focusy * 16) + yy >= 0 && (image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16) + yy] == col)) { image[((x - WINSTARTX) / d) + (focusx * 16)] [((y - (WINSTARTY)) / d) + (focusy * 16) + yy] = colour; yy--; } Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); draw_swin (); draw_big_image (); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); } void fill_colourzoom (int x, int y) { int xx, yy; xx = (x - WINSTARTX) / 16; xx = WINSTARTX + (xx * 16); yy = (y - WINSTARTY) / 16; yy = WINSTARTY + (yy * 16); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_fillbox (xx, yy, 15, 15, colour); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); Fgl_setpixel (((SWINSTARTX + 8) - imagesize * 8) + ((x - WINSTARTX) / 16) + (focusx * 16) ,((SWINSTARTY + 8) - imagesize * 8) + ((y - (WINSTARTY)) / 16) + (focusy * 16) ,colour); image[((x - WINSTARTX) / 16) + (focusx * 16)] [((y - (WINSTARTY)) / 16) + (focusy * 16)] = colour; } void fill_colour1 (int x, int y) { int xx, yy; xx = (x - WINSTARTX) / 16; xx = WINSTARTX + (xx * 16); yy = (y - WINSTARTY) / 16; yy = WINSTARTY + (yy * 16); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_fillbox (xx, yy, 16, 16, colour); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); Fgl_setpixel ((SWINSTARTX) + ((x - WINSTARTX) / 16) + (focusx * 16) ,(SWINSTARTY) + ((y - (WINSTARTY)) / 16) + (focusy * 16) ,colour); image[((x - WINSTARTX) / 16) + (focusx * 16)] [((y - (WINSTARTY)) / 16) + (focusy * 16)] = colour; } void fill_colour2 (int x, int y) { int xx, yy; xx = (x - WINSTARTX) / 8; xx = WINSTARTX + (xx * 8); yy = (y - WINSTARTY) / 8; yy = WINSTARTY + (yy * 8); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_fillbox (xx, yy, 8, 8, colour); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); image[((x - WINSTARTX) / 8) + (focusx * 16)] [((y - (WINSTARTY)) / 8) + (focusy * 16)] = colour; draw_swin (); } void fill_colour3 (int x, int y) { int xx, yy; xx = (x - WINSTARTX) / 5; if (xx > 47) return; xx = WINSTARTX + (xx * 5); yy = (y - WINSTARTY) / 5; if (yy > 47) return; yy = WINSTARTY + (yy * 5); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_fillbox (xx, yy, 5, 5, colour); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); Fgl_setpixel ((SWINSTARTX - 16) + ((x - WINSTARTX) / 5) + (focusx * 5) ,(SWINSTARTY - 16) + ((y - (WINSTARTY)) / 5) + (focusy * 5) ,colour); image[((x - WINSTARTX) / 5) + (focusx * 5)] [((y - (WINSTARTY)) / 5) + (focusy * 5)] = colour; } void fill_colour4 (int x, int y) { int xx, yy; xx = (x - WINSTARTX) / 4; xx = WINSTARTX + (xx * 4); yy = (y - WINSTARTY) / 4; yy = WINSTARTY + (yy * 4); Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); Fgl_fillbox (xx, yy, 4, 4, colour); Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); Fgl_setpixel ((SWINSTARTX - 24) + ((x - WINSTARTX) / 4) + (focusx * 4) ,(SWINSTARTY - 24) + ((y - (WINSTARTY)) / 4) + (focusy * 4) ,colour); image[((x - WINSTARTX) / 4) + (focusx * 4)] [((y - (WINSTARTY)) / 4) + (focusy * 4)] = colour; } #ifdef LC_X11 /* fixed the problem with xpicedit by checking if the colormap is writable*/ void setcustompalette (void) { char s[100], cpf[100]; int i, n, r, g, b, me = 0, flag[256]; long unsigned int plane_masks[3]; FILE *inf; XColor pal[256]; int is_writeable; /* See if the colormap is writable. * Only PseudoColor, GrayScale and DirectColor are writable TrueColor is not. */ Visual *visual = DefaultVisual (display.dpy, display.screen); int visual_class = visual->class; is_writeable = (visual_class == PseudoColor || visual_class == GrayScale || visual_class == DirectColor); printf ("In setcustompalette\n"); display.cmap = XDefaultColormap (display.dpy, display.screen); if (is_writeable) { if (XAllocColorCells (display.dpy, display.cmap, 0 ,plane_masks, 0, colour_table, 256) == 0) { me = (*DefaultVisual (display.dpy, display.screen)).map_entries; printf ("DefaultVisual id=%d bp-rgb=%d map-entries=%d\n" ,(*DefaultVisual (display.dpy, display.screen)).visualid ,(*DefaultVisual (display.dpy, display.screen)).bits_per_rgb ,(*DefaultVisual (display.dpy, display.screen)).map_entries); display.cmap = XCreateColormap (display.dpy, display.win ,DefaultVisual (display.dpy, display.screen) ,AllocNone); if (me == 256 && XAllocColorCells (display.dpy, display.cmap, 0 ,plane_masks, 0, colour_table, 256) != 0) printf ("Allocated 256 cells\n"); else for (i = 0; i < 256; i++) colour_table[i] = i; } if (!display.cmap) HandleError ("No default colour map", FATAL); } printf ("Got past create colourmap\n"); for (i = 0; i < 256; i++) flag[i] = 0; strcpy (cpf, LIBDIR); strcat (cpf, COLOUR_PAL_FILE); if ((inf = fopen (cpf, "r")) == 0) HandleError ("Can't find the colour pallet file", FATAL); while (feof (inf) == 0) { fgets (s, 99, inf); if (sscanf (s, "%d %d %d %d", &n, &r, &g, &b) == 4) { pal[n].red = r << 10; pal[n].green = g << 10; pal[n].blue = b << 10; pal[n].flags = DoRed | DoGreen | DoBlue; if (is_writeable) { pal[n].pixel = colour_table[n]; } else { if (XAllocColor (display.dpy ,display.cmap, &(pal[n])) == 0) HandleError ("alloc colour failed" ,FATAL); colour_table[n] = pal[n].pixel; XSetForeground (display.dpy ,display.pixcolour_gc[n] ,colour_table[n]); } flag[n] = 1; } } fclose (inf); for (i = 0; i < 256; i++) if (flag[i] == 0) { printf ("Colour %d not loaded\n", i); do_error ("Can't continue"); } if(is_writeable) { XStoreColors (display.dpy, display.cmap, pal, 256); XFlush(display.dpy); } XSetWindowColormap (display.dpy, display.win, display.cmap); } #else void setcustompalette (void) { char s[100], cpf[100]; int i, n, r, g, b, flag[256]; FILE *inf; Palette pal; for (i = 0; i < 256; i++) flag[i] = 0; strcpy (cpf, LIBDIR); strcat (cpf, COLOUR_PAL_FILE); if ((inf = fopen (cpf, "r")) == 0) do_error ("Can't find the colour pallet file :("); while (feof (inf) == 0) { fgets (s, 99, inf); if (sscanf (s, "%d %d %d %d", &n, &r, &g, &b) == 4) { pal.color[n].red = r; pal.color[n].green = g; pal.color[n].blue = b; flag[n] = 1; } } fclose (inf); for (i = 0; i < 256; i++) if (flag[i] == 0) { printf ("Colour %d not loaded\n", i); do_error ("Can't continue"); } gl_setpalette (&pal); } #endif void initfont () { #ifdef LC_X11 char cpf[100]; int i; FILE *finf; strcpy (cpf, LIBDIR); strcat (cpf, FONTFILE); if ((finf = fopen (cpf, "r")) == 0) HandleError ("Can't open the font file", FATAL); for (i = 0; i < 256 * 8; i++) myfont[i] = fgetc (finf); fclose (finf); #else void *font; font = malloc (256 * 8 * 8 * BYTESPERPIXEL); gl_expandfont (8, 8, white (24), gl_font8x8, font); gl_setfont (8, 8, font); #endif } void save_image (void) { int x, y; FILE *outf; if ((outf = fopen (imagefile, "wb")) == NULL) { printf ("Can't write image file %s \n", imagefile); return; } for (y = 0; y < 16 * imagesize; y++) for (x = 0; x < 16 * imagesize; x++) putc (image[x][y], outf); fclose (outf); } void load_image (void) { int x, y, l; FILE *inf; if ((inf = fopen (imagefile, "rb")) == NULL) return; fseek (inf, 0L, SEEK_END); l = ftell (inf); fseek (inf, 0L, SEEK_SET); if (l == 256) newimagesize = 1; else if (l == 1024) newimagesize = 2; else if (l == 2304) newimagesize = 3; else if (l == 4096) newimagesize = 4; else { printf ("Can't load file %s, maybe wrong size %d\n" ,imagefile, l); exit (1); } for (y = 0; y < 16 * newimagesize; y++) for (x = 0; x < 16 * newimagesize; x++) image[x][y] = fgetc (inf); fclose (inf); } void setup (void) { char s[50]; short x, y; Fgl_hline (WINSTARTX, WINSTARTY - 1, WINSTARTX + 256, 255); Fgl_hline (WINSTARTX, WINSTARTY + 256, WINSTARTX + 256, 255); Fgl_line (WINSTARTX - 1, WINSTARTY, WINSTARTX - 1, WINSTARTY + 256, 255); Fgl_line (WINSTARTX + 256, WINSTARTY, WINSTARTX + 256, WINSTARTY + 256, 255); for (y = 0; y < 16; y++) { Fgl_hline (WINSTARTX, WINSTARTY + y * 16 + 15, WINSTARTX + 255, 253); Fgl_line (WINSTARTX + y * 16 + 15, WINSTARTY, WINSTARTX + y * 16 + 15 ,WINSTARTY + 255, 253); for (x = 0; x < 16; x++) { Fgl_fillbox (x * 40, y * 14, 38, 12, y * 16 + x); sprintf (s, "%d", y * 16 + x); Fgl_write (x * 40, y * 14, s); } } change_imagesize (1); Fgl_fillbox (SIZEBUTTONX1x1, SIZEBUTTONY1x1, SIZEBUTTONSIZEX - 1 ,SIZEBUTTONSIZEY - 1, 240); Fgl_write (SIZEBUTTONX1x1 + 3, SIZEBUTTONY1x1 + 3, "1x1"); Fgl_fillbox (SIZEBUTTONX2x2, SIZEBUTTONY2x2, SIZEBUTTONSIZEX - 1 ,SIZEBUTTONSIZEY - 1, 240); Fgl_write (SIZEBUTTONX2x2 + 3, SIZEBUTTONY2x2 + 3, "2x2"); Fgl_fillbox (SIZEBUTTONX3x3, SIZEBUTTONY3x3, SIZEBUTTONSIZEX - 1 ,SIZEBUTTONSIZEY - 1, 240); Fgl_write (SIZEBUTTONX3x3 + 3, SIZEBUTTONY3x3 + 3, "3x3"); Fgl_fillbox (SIZEBUTTONX4x4, SIZEBUTTONY4x4, SIZEBUTTONSIZEX - 1 ,SIZEBUTTONSIZEY - 1, 240); Fgl_write (SIZEBUTTONX4x4 + 3, SIZEBUTTONY4x4 + 3, "4x4"); /* this is the focus change window */ Fgl_fillbox (FOCUSWINX - 1, FOCUSWINY - 1, FOCUSWINSIZE + 1, FOCUSWINSIZE + 1, 240); draw_focus (); /* this is the zoom button */ Fgl_fillbox (ZOOMBUTX, ZOOMBUTY, ZOOMBUTSIZEX, ZOOMBUTSIZEY, 240); Fgl_write (ZOOMBUTX + 3, ZOOMBUTY + 3, "ZOOM"); /* this is the half zoom button */ Fgl_fillbox (HALFBUTX, HALFBUTY, HALFBUTSIZEX, HALFBUTSIZEY, 240); Fgl_write (HALFBUTX + 3, HALFBUTY + 3, "HALF"); /* this is the normal zoom button */ Fgl_fillbox (NORMBUTX, NORMBUTY, NORMBUTSIZEX, NORMBUTSIZEY, 240); Fgl_write (NORMBUTX + 3, NORMBUTY + 3, "NORM"); /* this is the dot button */ Fgl_fillbox (DOTBUTX, DOTBUTY, DOTBUTSIZEX, DOTBUTSIZEY, 240); Fgl_write (DOTBUTX + 3, DOTBUTY + 3, "DOT"); /* this id the hline button */ Fgl_fillbox (HFILBUTX, HFILBUTY, HFILBUTSIZEX, HFILBUTSIZEY, 240); Fgl_write (HFILBUTX + 3, HFILBUTY + 3, "HFIL"); /* this is the vline button */ Fgl_fillbox (VFILBUTX, VFILBUTY, VFILBUTSIZEX, VFILBUTSIZEY, 240); Fgl_write (VFILBUTX + 3, VFILBUTY + 3, "VFIL"); Fgl_write (0, 480 - 9, imagefile); Fgl_write (0, 423, " q - to save and quit..."); Fgl_write (0, 433, " - (then move the mouse)"); Fgl_write (0, 448, "^C - to quit without saving"); } void draw_focus (void) { int x, y; hide_mouse (); for (y = 0; y < 4; y++) for (x = 0; x < 4; x++) { if (x == focusx && y == focusy) Fgl_fillbox (FOCUSWINX + (FOCUSWINSIZE / 4) * focusx ,FOCUSWINY + (FOCUSWINSIZE / 4) * focusy ,(FOCUSWINSIZE / 4) - 1 ,(FOCUSWINSIZE / 4) - 1, FOCUSWINCOLOUR); else if (zoom_flag == 2) { if ((x == focusx + 1 && y == focusy) || (x == focusx && y == focusy + 1) || (x == focusx + 1 && y == focusy + 1)) Fgl_fillbox (FOCUSWINX + (FOCUSWINSIZE / 4) * x ,FOCUSWINY + (FOCUSWINSIZE / 4) * y ,(FOCUSWINSIZE / 4) - 1 ,(FOCUSWINSIZE / 4) - 1, FOCUSWINCOLOUR); } else if (x < imagesize && y < imagesize) Fgl_fillbox (FOCUSWINX + (FOCUSWINSIZE / 4) * x ,FOCUSWINY + (FOCUSWINSIZE / 4) * y ,(FOCUSWINSIZE / 4) - 1 ,(FOCUSWINSIZE / 4) - 1, UNFOCUSWINCOLOUR); else Fgl_fillbox (FOCUSWINX + (FOCUSWINSIZE / 4) * x ,FOCUSWINY + (FOCUSWINSIZE / 4) * y ,(FOCUSWINSIZE / 4) - 1 ,(FOCUSWINSIZE / 4) - 1, XFOCUSWINCOLOUR); } reshow_mouse (); } void draw_swin (void) { int x, y; Fgl_fillbox ((SWINSTARTX + 7) - 4 * 8, (SWINSTARTY + 7) - 4 * 8 ,16 * 4 + 2, 16 * 4 + 2, 0); Fgl_hline ((SWINSTARTX + 7) - imagesize * 8, (SWINSTARTY + 7) - imagesize * 8 ,((SWINSTARTX + 8) - imagesize * 8) + 16 * imagesize, 235); Fgl_hline ((SWINSTARTX + 7) - imagesize * 8 ,((SWINSTARTY + 8) - imagesize * 8) + 16 * imagesize ,((SWINSTARTX + 8) - imagesize * 8) + 16 * imagesize, 235); Fgl_line ((SWINSTARTX + 7) - imagesize * 8, (SWINSTARTY + 7) - imagesize * 8 ,(SWINSTARTX + 7) - imagesize * 8 ,((SWINSTARTY + 8) - imagesize * 8) + 16 * imagesize, 235); Fgl_line (((SWINSTARTX + 8) - imagesize * 8) + 16 * imagesize ,(SWINSTARTY + 7) - imagesize * 8 ,((SWINSTARTX + 8) - imagesize * 8) + 16 * imagesize ,((SWINSTARTY + 8) - imagesize * 8) + 16 * imagesize, 235); for (y = 0; y < 16 * imagesize; y++) for (x = 0; x < 16 * imagesize; x++) Fgl_setpixel (((SWINSTARTX + 8) - imagesize * 8) + x ,((SWINSTARTY + 8) - imagesize * 8) + y, image[x][y]); } void draw_big_image (void) { if (zoom_flag == 1) draw_big_imagezoom (); else if (zoom_flag == 2) draw_big_image2 (); else if (imagesize == 1) draw_big_image1 (); else if (imagesize == 2) draw_big_image2 (); else if (imagesize == 3) draw_big_image3 (); else if (imagesize == 4) draw_big_image4 (); } void draw_big_imagezoom (void) { int x, y; for (y = 0; y < 16; y++) for (x = 0; x < 16; x++) Fgl_fillbox (WINSTARTX + x * 16, (WINSTARTY) + y * 16, 15, 15 ,image[x + focusx * 16][y + focusy * 16]); } void draw_big_image1 (void) { int x, y; for (y = 0; y < 16; y++) for (x = 0; x < 16; x++) Fgl_fillbox (WINSTARTX + x * 16, (WINSTARTY) + y * 16, 16, 16 ,image[x + focusx * 16][y + focusy * 16]); } void draw_big_image2 (void) { int x, y; for (y = 0; y < 32; y++) for (x = 0; x < 32; x++) Fgl_fillbox (WINSTARTX + x * 8, (WINSTARTY) + y * 8, 8, 8 ,image[x + focusx * 16][y + focusy * 16]); } void draw_big_image3 (void) { int x, y; for (y = 0; y < 48; y++) for (x = 0; x < 48; x++) Fgl_fillbox (WINSTARTX + x * 5, (WINSTARTY) + y * 5, 5, 5 ,image[x + focusx * 5][y + focusy * 5]); } void draw_big_image4 (void) { int x, y; for (y = 0; y < 64; y++) for (x = 0; x < 64; x++) Fgl_fillbox (WINSTARTX + x * 4, (WINSTARTY) + y * 4, 4, 4 ,image[x + focusx * 4][y + focusy * 4]); } void change_imagesize (int n) { char s[50]; imagesize = n; focus = 0; focusx = 0; focusy = 0; draw_swin (); draw_focus (); sprintf (s, "Image size %dx%d", n, n); Fgl_write (0, 480 - 20, s); } void change_focus (int x, int y) { if (x >= imagesize || y >= imagesize) return; focusx = x; focusy = y; draw_focus (); draw_big_image (); } void hide_mouse (void) { Fgl_putbox (mox, moy, 8, 8, under_mouse_pointer); } void reshow_mouse (void) { Fgl_getbox (mx, my, 8, 8, under_mouse_pointer); Fgl_putbox (mx, my, 8, 8, mouse_pointer); } #ifdef LC_X11 void parse_args (int argc, char **argv, char **geometry) { /* These variables are used to analyze the command line parameters. */ int option; extern int optind; extern char *optarg; int bits; /* Used to set window geometry. */ /* Check the command line. */ while ((option = getopt (argc, argv, "vbg:")) != EOF) { switch (option) { case 'v': verbose = TRUE; break; case 'g': *geometry = optarg; break; case 'b': borderx = 0; bordery = 0; break; } } if (verbose) printf ("Version %s\n", VERSION); if (!(display.dpy = XOpenDisplay (display.dname))) { HandleError ("Cannot open display.\n", FATAL); exit (-1); } /* Record the screen number and root window. */ display.screen = DefaultScreen (display.dpy); display.root = RootWindow (display.dpy, display.screen); winW = WINWIDTH + borderx * 2; winH = WINHEIGHT + bordery * 2; winX = (DisplayWidth (display.dpy, display.screen) - winW) / 2; winY = (DisplayHeight (display.dpy, display.screen) - winH) / 2; if (*geometry != NULL) XParseGeometry (*geometry, &winX, &winY, &winW, &winH); } void Create_Window (char *geometry) { short q; XSetWindowAttributes xswa; XSizeHints sizehint; XWMHints wmhints; unsigned char wname[256]; /* Window Name */ xswa.event_mask = 0; xswa.background_pixel = display.bg; printf ("DefaultVisual id=%d bp-rgb=%d map-entries=%d\n" ,(*DefaultVisual (display.dpy, display.screen)).visualid ,(*DefaultVisual (display.dpy, display.screen)).bits_per_rgb ,(*DefaultVisual (display.dpy, display.screen)).map_entries); display.win = XCreateWindow (display.dpy, display.root, winX, winY, winW, winH, 0, DefaultDepth (display.dpy, display.screen), InputOutput, DefaultVisual (display.dpy, display.screen), /* PseudoColor, */ CWEventMask | CWBackPixel, &xswa); sizehint.x = winX; sizehint.y = winY; sizehint.width = winW; sizehint.height = winH; sizehint.min_width = winW; sizehint.min_height = winH; if (geometry != NULL) sizehint.flags = USPosition | USSize | PMinSize; else sizehint.flags = PPosition | PSize | PMinSize; XSetNormalHints (display.dpy, display.win, &sizehint); display.protocol_atom = XInternAtom (display.dpy, "WM_PROTOCOLS", False); display.kill_atom = XInternAtom (display.dpy, "WM_DELETE_WINDOW", False); /* Title */ sprintf ((char *) wname, "xpicedit, Version %s, by IJ Peters", VERSION); XChangeProperty (display.dpy, display.win, XA_WM_NAME, XA_STRING, 8, PropModeReplace, wname, strlen ((char *) wname)); /* Window Manager Hints (This is supposed to make input work.) */ wmhints.flags = InputHint; wmhints.input = True; XSetWMHints (display.dpy, display.win, &wmhints); XMapWindow (display.dpy, display.win); XSelectInput (display.dpy, display.win, KeyPressMask | ButtonPressMask | ButtonReleaseMask | ExposureMask | StructureNotifyMask); for (q = 0; q < 256; q++) { display.pixcolour_gc[q] = XCreateGC (display.dpy ,display.win, 0, NULL); XSetForeground (display.dpy, display.pixcolour_gc[q], q); XSetBackground (display.dpy, display.pixcolour_gc[q] ,display.bg); } } void HandleError (char *description, int degree) { fprintf (stderr, "An error has occurred. The description is below... \n"); fprintf (stderr, "%s\n", description); if (degree == FATAL) { fprintf (stderr, "Program aborting...\n"); exit (-1); } } void Fgl_setpixel (int x, int y, int col) { int i; col &= 0xff; i = (y + bordery) * (640 + BORDERX) + x + borderx; if ((int) *(pixmap + i) != col) { *(pixmap + i) = (unsigned char) col; XDrawPoint (display.dpy, display.win ,display.pixcolour_gc[col], x + borderx, y + bordery); } } int Fgl_getpixel (int x, int y) { return (*(pixmap + (y + bordery) * (640 + BORDERX) + x + borderx)); } void Fgl_hline (int x1, int y1, int x2, int col) { int x, i; col &= 0xff; i = (y1 + bordery) * (640 + BORDERX); for (x = x1 + borderx; x < x2 + borderx; x++) *(pixmap + i + x) = col; XDrawLine (display.dpy, display.win ,display.pixcolour_gc[col], x1 + borderx ,y1 + bordery, x2 + borderx, y1 + bordery); } void Fgl_line (int x1, int y1, int dummy, int y2, int col) /* vertical lines only. */ { int y, i; col &= 0xff; for (y = y1 + bordery; y < y2 + bordery; y++) *(pixmap + x1 + borderx + (y * (640 + BORDERX))) = col; XDrawLine (display.dpy, display.win ,display.pixcolour_gc[col], x1 + borderx ,y1 + bordery, x1 + borderx, y2 + bordery); } void Fgl_write (int x, int y, char *s) { int i; for (i = 0; i < strlen (s); i++) my_x_putchar (x + i * 8, y, s[i]); } void my_x_putchar (int xx, int yy, int c) { int x, y, b; for (y = 0; y < 8; y++) { b = myfont[c * 8 + y]; for (x = 0; x < 8; x++) { if ((b & 0x80) == 0) Fgl_setpixel (xx + x, yy + y, text_bg); else Fgl_setpixel (xx + x, yy + y, text_fg); b = b << 1; } } } void Fgl_fillbox (int x1, int y1, int w, int h, int col) { int x, y; col &= 0xff; for (y = y1 + bordery; y < y1 + h + bordery; y++) { for (x = x1 + borderx; x < x1 + w + borderx; x++) *(pixmap + y * (640 + BORDERX) + x) = col; XDrawLine (display.dpy, display.win, display.pixcolour_gc[col] ,x1 + borderx, y, x1 + w - 1 + borderx, y); } } void Fgl_putbox (int x1, int y1, int x2, int y2, unsigned char *buf) { } void Fgl_getbox (int x1, int y1, int x2, int y2, unsigned char *buf) { } void HandleEvent (XEvent * event) { switch (event->type) { case (KeyPress): { XKeyEvent *key_event = (XKeyEvent *) event; char buf[128]; KeySym ks; XComposeStatus status; XLookupString (key_event, buf, 128, &ks, &status); if (buf[0] == 'q' || buf[0] == 'Q') stopflag = TRUE; else if (buf[0] == 'r' || buf[0] == 'R') refresh_screen (0, 0, 640, 480); } break; case (ButtonPress): { XButtonEvent *ev = (XButtonEvent *) event; mouse_button = ev->button; } break; case (ButtonRelease): { mouse_button = 0; } break; case (Expose): { XExposeEvent *ev = (XExposeEvent *) event; refresh_screen (ev->x, ev->y ,ev->x + ev->width, ev->y + ev->height); } break; default: printf ("Unknown event %d\n", event->type); } } void refresh_screen (int x1, int y1, int x2, int y2) /* bounds of refresh area */ { int x, y; for (y = y1; y < y2; y++) for (x = x1; x < x2; x++) XDrawPoint (display.dpy, display.win ,display.pixcolour_gc[*(pixmap + x + y * (640 + BORDERX)) & 0xff], x, y); } #endif void lincityrc (void) { char s[256], s1[256]; int i; FILE *rc; strcpy (s, getenv ("HOME")); strcat (s, "/"); strcat (s, ".lincityrc"); if ((rc = fopen (s, "r")) == 0) { do { strcpy (s1, "cat "); strcat (s1, LIBDIR); strcat (s1, "/messages/mousetype.mes"); system (s1); i = getchar (); } while (i < '0' || i > '6'); if ((rc = fopen (s, "w")) == 0) { printf ("Can't open %s for writing, can't continue \n ", s); exit (1); } fprintf (rc, "mouse=%d\n", i - '0'); fclose (rc); chown (s, getuid (), getgid ()); if ((rc = fopen (s, "r")) == 0) { printf ("What!! can't open %s for reading after writing???\n", s); exit (1); } } while (feof (rc) == 0) { fgets (s, 99, rc); if (sscanf (s, "mouse=%d", &i) != 0) lc_mouse_type = i; } fclose (rc); } lincity-1.13.1/help/0000777000175000017500000000000010073426331011204 500000000000000lincity-1.13.1/help/ask-dir.hlp0000644000175000017500000000041607340321762013165 00000000000000text -1 33 LinCity is about to create text -1 45 a (hidden) directory in text -1 57 which to save your games. text -1 70 The path is tcolour 88 0 tbutton -1 170 opening.hlp Yes I want to create this directory tcolour 3 0 tbutton -1 190 return1 NO, get me out of here lincity-1.13.1/help/blacksmith.hlp0000644000175000017500000000156107340321762013756 00000000000000text -1 15 Blacksmiths text -1 30 Blacksmiths turn steel and coal into goods. text -1 40 You will use them mostly early on in the text -1 50 game. They also use jobs, of course. text -1 65 Before you have steel works, you must rely text -1 75 on the steel produced by communes. 5 or 6 text -1 85 per blacksmith is recommended. text -1 120 Blacksmiths do not have to be connected text -1 130 to transport. They can get all they need text -1 140 from markets that are within range. text -1 155 You can see when a blacksmith is working text -1 165 in the usual way, by clicking on it, and text -1 175 every so often the animation will come text -1 185 to life. text 50 220 This is a blacksmith icon 240 210 blacksmith1.csi text 20 300 See also: tbutton 100 300 market.hlp Markets tbutton 100 320 ore.hlp Ore tbutton 100 340 commune.hlp Communes tbutton 100 360 steel.hlp Steel lincity-1.13.1/help/bulldoze.hlp0000644000175000017500000000171407340321762013455 00000000000000text -1 15 Bulldoze text -1 40 To demolish an area, you select the text -1 50 bulldoze button, then click on the area text -1 60 you wish to get rid of. text -1 75 Demolition costs money. When you build text -1 85 an area, the cost to build it and demolish text -1 95 it are shown at the botton left of the screen. text -1 110 Some things, such as monuments, are very text -1 120 expensive to demolish. The cost of text -1 130 demolition takes acount not only of the text -1 140 physical cost of disposal, but also the text -1 150 political cost. For example, to demolish a text -1 160 monument, you will have protesters and court text -1 170 costs as well. text -1 185 At this time, demolishing river areas are the text -1 195 only way to cross them with transport. Think text -1 205 of the demolished river with transport crossing text -1 215 the cleared area as a bridge. text 50 280 See also: tbutton 50 300 transport.hlp Transport tbutton 50 320 river.hlp Rivers lincity-1.13.1/help/button-index.hlp0000644000175000017500000000227307340321763014257 00000000000000text -1 5 Select button index page 1 of 3 text -1 20 Click on a button for a help page text 80 54 Power lines icon 50 50 powerline-button.csi button 48 48 20 20 powerline.hlp text 80 78 Solar Power station icon 50 74 powerssolar-button.csi button 48 72 20 20 powerssolar.hlp text 80 102 Substation icon 50 98 substation-button.csi button 48 96 20 20 substation.hlp text 80 126 Residential area icon 50 122 residence-button.csi button 48 120 20 20 residential.hlp text 80 150 Farm icon 50 146 organic-farm-button.csi button 48 144 20 20 farm.hlp text 80 174 Market icon 50 170 market-button.csi button 48 168 20 20 market.hlp text 80 198 Bulldoze icon 50 194 buldoze-button.csi button 48 192 20 20 bulldoze.hlp text 80 222 Track (transport) icon 50 218 tracklr.csi button 48 216 20 20 track.hlp text 80 246 Coalmine icon 50 242 coalmine-button.csi button 48 240 20 20 coalmine.hlp text 80 270 Railway icon 50 266 rail-button.csi button 48 264 20 20 rail.hlp text 80 294 Coal fired power station icon 50 290 powerscoal-button.csi button 48 288 20 20 powerscoal.hlp text 80 318 Road icon 50 314 road-button.csi button 48 312 20 20 road.hlp text -1 380 Next Page button -1 376 84 14 button-index2.hlp lincity-1.13.1/help/button-index2.hlp0000644000175000017500000000230207340321763014332 00000000000000text -1 5 Select button index page 2 of 3 text -1 20 Click on a button for a help page text 80 54 Light industrial areas icon 50 50 industryl-button.csi button 48 48 20 20 industryl.hlp text 80 78 University icon 50 74 university-button.csi button 48 72 20 20 university.hlp text 80 102 Commune icon 50 98 commune-button.csi button 48 96 20 20 commune.hlp text 80 126 Ore mine icon 50 122 oremine-button.csi button 48 120 20 20 oremine.hlp text 80 150 Import icon 50 146 im_port-button.csi button 48 144 20 20 export.hlp text 80 174 Export icon 50 170 ex_port-button.csi button 48 168 20 20 export.hlp text 80 198 Heavy industry (steel works) icon 50 194 industryh-button.csi button 48 192 20 20 industryh.hlp text 80 222 Parkland icon 50 218 parkland-button.csi button 48 216 20 20 park.hlp text 80 246 Recycle centre icon 50 242 recycle-button.csi button 48 240 20 20 recycle.hlp text 80 270 Water/Rivers icon 50 266 water-button.csi button 48 264 20 20 river.hlp text 80 294 Health Centre icon 50 290 health-button.csi button 48 288 20 20 health.hlp text 80 318 Rocket Launch Pad icon 50 314 rocket-button.csi button 48 312 20 20 rocket.hlp text -1 364 Next Page button -1 360 84 14 button-index3.hlp lincity-1.13.1/help/button-index3.hlp0000644000175000017500000000140507340321763014336 00000000000000text -1 5 Select button index page 3 of 3 text -1 20 Click on a button for a help page text 80 54 Windmill icon 50 50 windmill-button.csi button 48 48 20 20 windmill.hlp text 80 78 Monument icon 50 74 monument-button.csi button 48 72 20 20 monument.hlp text 80 102 School icon 50 98 school-button.csi button 48 96 20 20 school.hlp text 80 126 Blacksmith icon 50 122 blacksmith-button.csi button 48 120 20 20 blacksmith.hlp text 80 150 Mill icon 50 146 mill-button.csi button 48 144 20 20 mill.hlp text 80 174 Pottery icon 50 170 pottery-button.csi button 48 168 20 20 pottery.hlp text 80 198 Fire station icon 50 194 firestation-button.csi button 48 192 20 20 firestation.hlp text 80 222 Cricket pitch icon 50 218 cricket-button.csi button 48 216 20 20 cricket.hlp lincity-1.13.1/help/coal.hlp0000644000175000017500000000161607340321763012555 00000000000000text -1 15 Coal text -1 30 Coal is used by coal fired power stations text -1 40 to make electricity (power). It is also text -1 50 used by potteries, mills and blacksmiths in text -1 60 the process of making goods. Heavy industry text -1 70 (steel works) use coal when they cannot text -1 80 get electricity. text -1 95 Coal is dug from under the ground by text -1 105 coal mines. There is a finite coal text -1 115 reserve which you can see with use of text -1 125 the coal reserve button (see coal mines). text -1 140 Communes provide a little 'coal' as well. text -1 150 Really this is charcoal make from copiced text -1 160 woods. They only provide small amounts, text -1 170 enough for a few potteries and blacksmiths. text 50 300 See also: tbutton 50 320 coalmine.hlp Coal mines tbutton 50 340 commune.hlp Communes tbutton 150 320 pottery.hlp Potteries tbutton 150 340 blacksmith.hlp Blacksmiths lincity-1.13.1/help/coalmine.hlp0000644000175000017500000000262107340321763013423 00000000000000text -1 15 Coal mine - page 1 of 2 text -1 30 Coal mines dig coal from under the ground. text -1 40 There must be a coal vein close to the mine. text -1 50 To see where the veins are, you can click text -1 60 on the coal button just above the mini screen. text 100 80 It looks like this icon 260 75 ms-coal-button.csi text -1 95 The first time you use this button, it will text -1 105 cost you 1 million. After that it is free. text -1 120 You don't need to use this button, but you text -1 130 will have to find the coal by trial and error. text -1 145 Coal mines need jobs to dig coal. icon 120 200 coalmine-full.csi icon 104 200 roadlr.csi icon 88 200 roadlr.csi icon 72 200 roadlr.csi icon 56 200 roaddr.csi /icon 40 200 roaddr.csi icon 40 216 powerscoal-full.csi icon 120 184 raildr.csi icon 136 184 raillr.csi icon 150 184 raillr.csi icon 166 184 raillr.csi icon 180 184 raillr.csi text 210 190 This shows a coal fired text 210 200 power station connected text 210 210 to a coalmine with text 210 220 a road. text 210 235 A railway is coming out text 210 245 of the top gate of the text 210 255 coalmine and going off text 210 265 to the right. text 120 270 Coalmine tbutton 42 285 powerscoal.hlp Coal PS text -1 310 The graphics show the amount of coal text -1 320 already dug but not put onto transport. text -1 330 The above coal mine has maximum stock. tbutton -1 370 coalmine2.hlp More about coal mines lincity-1.13.1/help/coalmine2.hlp0000644000175000017500000000131207340321763013501 00000000000000text -1 15 Coal mine - page 2 of 2 text -1 45 The graphics show the amount of coal text -1 55 already dug but not put onto transport. text -1 65 The following coal mines show the stock text -1 75 levels, from left to right, empty to full. icon 40 100 coalmine-empty.csi icon 125 100 coalmine-low.csi icon 210 100 coalmine-med.csi icon 295 100 coalmine-full.csi text -1 200 Clicking on a coal mine will show you, text -1 210 in the mappoint stats window, the coal stock text -1 220 at the pit, and, more importantly, the text -1 230 coal reserve available to be dug. text 40 280 See also: tbutton 40 300 coal.hlp Coal tbutton 40 320 transport.hlp Transport tbutton -1 360 button-index.hlp Back to button index lincity-1.13.1/help/commune.hlp0000644000175000017500000000234107340321763013276 00000000000000text -1 15 Commune text -1 30 Communes (for want of a better name) are text -1 40 areas where charcoal burners coppice woods text -1 50 to make charcoal (the same as coal here). text -1 60 They also produce small amounts of ore text -1 70 and steel. text -1 140 You will probably need a 'few' communes to text -1 150 provide enough coal and steel for areas such text -1 160 as potteries, blacksmiths and mills. icon 40 200 tracklr.csi icon 56 200 tracklr.csi icon 72 200 tracklr.csi icon 88 200 trackldr.csi icon 88 216 commune1.csi icon 104 200 tracklr.csi icon 120 200 tracklr.csi icon 136 200 tracklr.csi icon 152 200 tracklr.csi icon 168 200 tracklr.csi icon 184 200 tracklr.csi icon 200 200 tracklr.csi icon 216 200 tracklr.csi icon 232 200 trackldr.csi icon 232 216 trackur.csi icon 248 200 trackldr.csi icon 248 216 commune1.csi icon 264 200 tracklr.csi icon 280 200 tracklr.csi icon 296 200 tracklr.csi icon 310 200 tracklr.csi text -1 300 Communes can connect to transport at text -1 310 any point around it, not only to the gate. text 25 342 See also: tbutton 120 340 pottery.hlp Potteries tbutton 230 340 blacksmith.hlp Blacksmiths tbutton 50 360 mill.hlp Mills tbutton 120 360 oremine.hlp Ore mines tbutton 230 360 steel.hlp Steel lincity-1.13.1/help/confinep.hlp0000644000175000017500000000143307340321763013435 00000000000000 text -1 30 This button is used to confine the text -1 40 mouse pointer within the X-window. text -1 60 Press the button again to allow the text -1 70 mouse pointer to leave the window. text -1 100 There are two main reasons why you text -1 110 would want to confine the pointer. text 10 140 1. text -1 150 Your X server can only display 256 text -1 160 colours ( 8 bbp ) and you don't want text -1 170 the display to keep flashing at you. text 10 200 2. text -1 210 You want to play 'full screen'. text -1 230 To play 'full screen', start the game text -1 240 with 'xlincity -b', change your screen text -1 250 resolution to 640x480 (ctrl-alt-numpad+ text -1 260 for linux YMMV). Then confine the pointer text -1 270 and move the mouse to each edge. text -1 280 Hey presto - full screen. lincity-1.13.1/help/cricket.hlp0000644000175000017500000000265007340321763013262 00000000000000text -1 15 Cricket grounds text -1 30 Cricket grounds provide sport and text -1 40 entertainment for your residents. text -1 50 They need goods and jobs to work. text -1 60 They do not have text -1 70 to be connected to transport, if not, text -1 80 they do have to be within range of a text -1 90 market that can supply the jobs and goods. text -1 100 They also cost money to run. text -1 115 When you put a cricket ground in, it does text -1 125 not start straight away. There is usually a text -1 135 three month wait before cricket cover is text -1 145 provided. text -1 155 To see the range that your cricket grounds text -1 165 cover, click on the cricket button text -1 175 above the 'mini screen'. Areas that have text -1 185 cricket cover are displayed as normal, areas text -1 195 not covered are just dark green. text -1 210 The cricket button above the text 80 225 mini-screen looks like this icon 306 221 cricket-button.csi text -1 240 Cricket grounds increase the desirability text -1 250 of residential areas within their range. text 20 270 See also: tbutton 100 270 mini-screen.hlp Mini-Screen tbutton 100 290 goods.hlp Goods tbutton 100 310 market.hlp Markets tbutton 100 330 jobs.hlp Jobs text 220 270 Cricket grounds text 220 280 go through an text 220 290 animation sequence text 220 300 every month to text 220 310 show that they text 220 320 are working. text 50 360 This is a cricket ground icon 260 350 cricket1.csi lincity-1.13.1/help/economy.hlp0000644000175000017500000000170707340321763013311 00000000000000text -1 70 This is the economy window. text -1 100 This shows 4 different economic factors text -1 110 with graphs. text -1 130 The brown line represents your population. text -1 140 It is shown as a log scale. text -1 160 The blue line represents the demand for text -1 170 housing. The height of the graph is text -1 180 proportional to the square root of the text -1 190 'unhoused' population. text -1 210 The solid yellow 'bars' show that there is text -1 220 unemployment. The scale of this graph text -1 230 changes with your population. This graph text -1 240 is solid to draw your attention to it. text -1 260 The solid red 'bars' show that there is text -1 270 starvation. The scale of this graph text -1 280 changes with your population. This graph text -1 290 is solid to draw your attention to it. text -1 310 The unemployment bars are drawn over the text -1 320 top of the two lines. The starvation bars text -1 330 are drawn over everything else. lincity-1.13.1/help/error.hlp0000644000175000017500000000051307340321763012763 00000000000000text -1 200 Can't open requested page text -1 215 (Either the help page is not written text -1 225 yet, your install is not setup correctly, text -1 235 or there is a bug.) text -1 260 Go back to where you came from by clicking text -1 270 on the help button again, or... tbutton -1 290 index.hlp Go back to the start of the help lincity-1.13.1/help/export.hlp0000644000175000017500000000311707340321763013156 00000000000000text -1 15 Import and export areas text -1 30 Importing and exporting work in the same text -1 40 way except that the first costs you money text -1 50 and the second makes you money. For this text -1 60 reason, only exporting will be dealt with text -1 70 in detail. text -1 85 To export, you connect transport to the text -1 95 gate that deals with that product. For text -1 105 example, to export ore, you would connect text -1 115 a road, perhaps, that has ore on it, to text -1 125 the ore 'gate'. The example below shows a text -1 135 road exporting ore. icon 100 170 ex_port.csi icon 68 186 roadlr.csi icon 84 186 roadlr.csi icon 164 154 waterd.csi icon 164 170 waterlud.csi icon 164 186 waterlud.csi icon 164 202 waterlud.csi icon 164 218 waterlur.csi icon 180 218 waterl.csi text 200 170 They MUST be connected text 200 180 to rivers all along text 200 190 the right hand side. tbutton 230 205 river.hlp See rivers text -1 250 The gates, from top to bottom, export coal, text -1 260 ore, goods and steel. text -1 275 The export area will take as much as it is text -1 285 given. If you need to export, but want to text -1 295 restrict the amount, you may want to use a text -1 305 type of transport with less capacity, use a text -1 315 long piece or pass the product through a market. text -1 325 You will need to experiment to get the right text -1 335 transport configuration. text 30 362 See also: tbutton 110 360 transport.hlp Transport tbutton 110 380 market.hlp Markets tbutton 220 360 coal.hlp Coal tbutton 290 360 ore.hlp Ore tbutton 220 380 goods.hlp Goods tbutton 290 380 steel.hlp Steel lincity-1.13.1/help/farm.hlp0000644000175000017500000000247307340321763012566 00000000000000text -1 15 Farms text -1 30 Farms grow food for people to eat, and to text -1 40 supply the raw materials for mills. Farmers text -1 50 can sell food to markets. They deliver it text -1 60 by tractor, so do not need transport. However text -1 70 they can sell to transport if you wish. text -1 90 The left figure shows a market with a farm text -1 100 supplying food to it. The right figure shows text -1 110 almost the same situation, but the farm is text -1 120 not within range. The left market is full text -1 130 of food, the right one has none. icon 28 152 farm3.csi icon 103 160 market-full.csi icon 210 152 farm7.csi icon 338 160 market-low.csi tbutton 98 200 market.hlp Market text 170 180 Farm text -1 230 Farms need jobs to produce more than a minimal text -1 240 amount of food. Giving the farm power also text -1 250 increases the amount of food produced. text -1 260 Power, also includes 'old' style windmills text -1 270 that help the food to be processed, thus text -1 280 cutting down on waste. text -1 295 Note: In the above example there are no jobs text -1 305 being supplied to the markets text -1 315 so they would not produce much food. text 50 342 See also: tbutton 150 340 tech-level.hlp Tech-level tbutton 250 340 transport.hlp Transport tbutton 150 360 windmill.hlp Windmill tbutton 250 360 food.hlp Food lincity-1.13.1/help/fast.hlp0000644000175000017500000000051007340321763012564 00000000000000 text -1 200 This is the fast speed button. text -1 210 It causes the game to run as text -1 220 fast as possible. text -1 230 On slow machines the speed buttons text -1 240 may have no effect. text -1 255 Care should be taken when using text -1 265 fast mode on fast machines; text -1 275 'situations' can develop vary fast! lincity-1.13.1/help/finance.hlp0000644000175000017500000000152407447174402013244 00000000000000text -1 30 This is the finance window. text 20 60 The finance window is updated every January 1st. text 20 70 The figures below 'income' and 'expend' show your text 20 80 income and expenditure for the previous year. text 20 100 The 'Tot' figure is the amount of money in your text 20 110 account. There are certain things you cannot do text 20 120 when you are 'in the red'. text 20 150 The meanings on the abbreviations are: text 20 160 Income: text 100 170 IT = Income tax. text 100 180 CT = Coal tax. text 100 190 GT = Goods tax. text 100 200 XP = Export tax. text 20 220 Expenditure: text 100 230 OC = Other costs. text 100 240 UC = Unemployment costs. text 100 250 TC = Transport costs. text 100 260 IP = Import costs. text 20 310 Left clicking on this window will cycle through text 20 320 windows for finance, other costs and housing. lincity-1.13.1/help/firestation.hlp0000644000175000017500000000273407340321764014171 00000000000000text -1 15 Fire stations text -1 30 Fire stations prevent the start and text -1 40 spread of fire with in the range that text -1 50 they cover. They need to be supplied with text -1 60 goods and jobs to work. They do NOT have text -1 70 to be connected to transport, they do, text -1 80 of course, have to be within range of a text -1 90 market that can supply the jobs and goods. text -1 100 They also cost money to run. text -1 115 When you put a fire station in, it does text -1 125 not start straight away. There is usually a text -1 135 three month wait before fire cover is provided. /text -1 145 provided. text -1 155 To see the area that your fire stations text -1 165 cover, click on the fire station button text -1 175 above the 'mini screen'. Areas that have text -1 185 fire cover are displayed as normal, areas text -1 195 not covered are just dark green. text -1 210 The fire station button above the text 80 225 mini-screen looks like this icon 306 221 firestation-button.csi text -1 240 Fire stations increase the desirability of text -1 250 residential areas within their range. text 20 270 See also: tbutton 100 270 mini-screen.hlp Mini-Screen tbutton 100 290 goods.hlp Goods tbutton 100 310 market.hlp Markets tbutton 100 330 jobs.hlp Jobs text 220 270 Fire stations go text 220 280 through an text 220 290 animation sequence text 220 300 every month to text 220 310 show that they text 220 320 are working. text 60 360 This is a fire station icon 260 350 firestation1.csi lincity-1.13.1/help/fonttest.hlp0000644000175000017500000000077407340321764013512 00000000000000text -1 10 Font test page. text -1 30 Your font looks like this: text -1 40 -------------------------- text -1 60 !"#$%&'()*+,-./0 text -1 75 123456789:;<=>?@ text -1 90 ABCDEFGHIJKLMNOP text -1 105 QRSTUVWXYZ[\]^_` text -1 120 abcdefghijklmnop text -1 135 qrstuvwxyz{|}~€ text -1 150 ‚ƒ„…†‡ˆ‰Š‹ŒŽ text -1 165 ‘’“”•–—˜™š›œžŸ  text -1 180 Ħ˘£¤Ĥ§¨İŞĞĴ­Ż° text -1 195 ħ²³´µĥ·¸ışğĵ½żÀ text -1 210 ÁÂÄĊĈÇÈÉÊËÌÍÎÏ text -1 225 ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßà text -1 240 áâäċĉçèéêëìíîï text -1 255 ñòóôġö÷ĝùúûüŭŝ˙ lincity-1.13.1/help/food.hlp0000644000175000017500000000063007340321764012562 00000000000000 text -1 15 Food text -1 100 Food is grown in farms or can be text -1 110 imported through a port. text -1 125 Your people need food in order to text -1 135 survive. If you starve them, they text -1 145 will move away from that area and text -1 155 some may starve to death. text -1 170 Mills also use food. They turn, say, text -1 180 cotton into cloths. They can use a text -1 190 lot of food - beware. lincity-1.13.1/help/goods.hlp0000644000175000017500000000057607340321764012757 00000000000000 text -1 15 Goods text -1 100 Goods are needed for most areas text -1 110 to work. People also like lots text -1 120 of them, and are attracted to text -1 130 areas where you can get them. text -1 145 Goods are taxed, so making lots text -1 155 will help your finances. text -1 170 Goods are produced by Potteries, text -1 180 Blacksmiths, Mills and Light text -1 190 industry. lincity-1.13.1/help/health.hlp0000644000175000017500000000304407340321764013102 00000000000000text -1 15 Health Centre text -1 30 Health centres provide health cover for text -1 40 residences. They act in an area of about text -1 50 10 'squares' in each direction. text -1 65 Health cover makes the residence a more text -1 75 desirable place to live, less people die text -1 85 from pollution related illness and the text -1 95 people living there are more efficient text -1 105 at providing jobs to the surrounding text -1 115 areas. (They spend less time off sick.) text -1 130 Health centres are very expensive, 60000 text -1 140 per year. However, they reduce the cost text -1 150 of 'unnatural deaths' and can provide text -1 160 extra income tax (as long as there are text -1 170 places for the people to work). text -1 185 After you put a health centre in, it text -1 195 takes three months for it to become text -1 205 active. They use goods. They don't, text -1 215 however, use jobs as such, these are text -1 225 taken into account when calculating the text -1 235 extra jobs created by the reduction in text -1 245 sickness of the surrounding areas. text -1 260 Health centres do not need to be connected text -1 270 transport, if not, they need to be within text -1 280 range of a market. text -1 295 To see the coverage of health cover, click text -1 305 on the health icon above the 'mini screen' text -1 315 (bottom left of centre on the display). The text -1 325 areas that show up as normal have health text -1 335 cover. text -1 350 Both the select and the 'mini screen' text -1 365 buttons look like this. icon 300 362 health-button.csi lincity-1.13.1/help/housing.hlp0000644000175000017500000000175307447174402013321 00000000000000text -1 30 This is the people window. text 20 60 The window shows 7 statistics: text 20 80 1. Pop - this shows the population text 60 90 in your residences. This figure does not text 60 100 include the homeless. text 20 120 2. Housed - this shows the total number of people text 60 130 in your city that live in residences. text 20 150 3. Housed % - this shows the percentage text 60 160 of your city that live in residences. text 20 180 4. Shanties - this shows the number of shanty text 60 190 towns in your city. text 20 210 5. Unn Dths - this shows the number text 60 220 of people that died through starvation text 60 230 or from pollution, in the last month. text 20 250 6. Unemp % - this shows the percentage text 60 260 of your population that is unemployed. text 20 280 7. Starv % - this shows the percentage text 60 290 of your population that is starving. text 20 310 Left clicking on this window will cycle through text 20 320 windows for finance, other costs and housing. lincity-1.13.1/help/index.hlp0000644000175000017500000000120507755465547012763 00000000000000text -1 5 Welcome to Lincity help text -1 90 You can click on words within boxes to text -1 100 select a help page on that topic. text -1 110 Like the 'keyboard' button below. tbutton -1 180 keyboard.hlp Using the KEYBOARD tbutton -1 200 button-index.hlp Click here to see button index page tbutton -1 220 opening.hlp Click here to see the opening screen tbutton -1 240 fonttest.hlp View current font text -1 290 While playing the game, you can get text -1 300 context sensitive help with most things text -1 310 using the right mouse button. text -1 325 Also, the first time you select each area text -1 335 its help screen will be shown. lincity-1.13.1/help/industryh.hlp0000644000175000017500000000312107340321764013662 00000000000000text -1 15 Heavy industry (steel works) text -1 30 Steel works produce steel from ore, power text -1 40 and jobs. Ore is obtained directly from the text -1 50 connected transport, the steel is placed onto text -1 60 the transport as well. Jobs are obtained from text -1 70 a local market. text -1 80 Transport connects to the top left corner. text -1 95 Power can be got to the steel works in two text -1 105 ways. The first is from coal, which is text -1 115 obtained directly from connected transport. text -1 125 The second is from electricity, you must text -1 135 have one, or more, active substations within text -1 145 range of the steel works. (Windmills do NOT text -1 155 supply power to steel works.) text -1 170 A typical steel works is shown below. text 80 185 Steel works produce tbutton 240 183 pollution.hlp Pollution icon 140 220 industryhm1.csi icon 124 220 raillr.csi icon 108 220 raillr.csi text 20 220 Ore and text 20 230 steel come text 20 240 by rail. icon 140 300 market-full.csi icon 124 316 roadlr.csi icon 108 316 roadlr.csi text 20 300 A market to text 30 310 supply text 30 320 jobs. icon 240 226 substation-G.csi icon 240 210 powerlrdl.csi icon 256 210 powerlhl.csi icon 272 210 powerlhd.csi icon 288 210 powerlhl.csi icon 304 210 powerlhl.csi icon 320 210 powerlhd.csi icon 336 210 powerlhl.csi text 280 235 Power from a text 280 245 power station. tbutton 218 262 substation.hlp Substation tbutton 180 310 market.hlp Market text 20 362 See also: tbutton 100 360 transport.hlp Transport tbutton 200 360 power.hlp Power tbutton 265 360 coal.hlp Coal tbutton 320 360 ore.hlp Ore lincity-1.13.1/help/industryl.hlp0000644000175000017500000000274707340321764013703 00000000000000text -1 15 Light industrial areas text -1 30 Light industry converts ore into goods. The text -1 40 conversion becomes more efficient if steel text -1 50 is also available. Power increases the output text -1 60 further still. Windmills do NOT provide power text -1 70 for these areas. text -1 85 As a rule of thumb, ignoring the above, the text -1 95 output of a light industrial area is mainly text -1 105 dependent on the amount of raw materials, text -1 115 including jobs, that it can get, also the text -1 125 amount of goods that can be TAKEN AWAY. text -1 140 These areas connect directly to transport text -1 150 to exchange ore, steel and goods. They text -1 160 may need a market to supply jobs. text -1 175 These areas connect to transport ONLY to text -1 185 the top left hand corner, as shown. text -1 195 Transport will curve in when it is connected. icon 110 250 industrylm1.csi icon 94 250 roadlr.csi icon 78 250 roadlr.csi icon 110 234 railud.csi icon 110 218 railud.csi icon 250 250 industrylm1.csi icon 234 250 roaddr.csi icon 234 266 roadud.csi icon 234 282 roadud.csi icon 234 298 roadud.csi icon 250 234 raildr.csi icon 266 234 raillr.csi icon 282 234 raillr.csi icon 298 234 raillr.csi icon 180 270 market-full.csi text -1 320 The market is within range of both areas. text -1 330 (The market must have jobs to supply) text 25 350 See also: tbutton 65 370 transport.hlp Transport tbutton 160 370 road.hlp Roads tbutton 222 370 rail.hlp Railways tbutton 310 370 market.hlp Markets lincity-1.13.1/help/infowin.hlp0000644000175000017500000000162207340321764013306 00000000000000text -1 90 This is the information window and, text -1 100 for now anyway, the 'diff-graph'. text -1 120 The main purpose of this window is to text -1 130 show information about a particular area. text -1 140 If you click the left button on an area text -1 150 that has already been built, you will see text -1 160 some information about what is happening text -1 170 within that area. The type of information text -1 180 displayed depends on the particular area text -1 190 that you selected. The display reverts to text -1 200 the 'diff-graph' display when the mouse text -1 210 pointer moves out of the main window. text -1 230 I will not explain the 'diff'graph' here, text -1 240 I think I will remove it soon, as it does text -1 250 not give much useful information (not even text -1 260 for me!). If you can read anything into text -1 270 them, feel free to use the information you text -1 280 obtain :) lincity-1.13.1/help/jobs.hlp0000644000175000017500000000310107340321764012564 00000000000000text -1 15 Jobs text -1 30 People living in residential areas text -1 40 provide jobs. Jobs are used by most areas text -1 50 for them to function. Some areas only text -1 60 need jobs when they are under construction, text -1 70 for example monuments. text -1 85 Jobs can be supplied by markets; you text -1 95 can have a market within range of the text -1 105 area you wish to supply. The market, of text -1 115 course, must get it's jobs from somewhere. text -1 125 Markets get their jobs in two ways. First, text -1 135 if there is a residential area within range, text -1 145 it will be supplying jobs to the market in text -1 155 proportion to its population and how many text -1 165 markets the jobs must be shared between. text -1 175 The second way is by transport. A market text -1 185 some distance away that has a surplus of text -1 195 jobs, will put some on transport. Any text -1 205 markets that are short of jobs that are text -1 215 connected to that transport will grab the text -1 225 jobs flowing along the track road or rail. text -1 240 If a market becomes 'full' of jobs, it will text -1 250 stop accepting them from residential areas. text -1 260 When this happens, if there are no other text -1 270 non full markets within range, the people text -1 280 will become unemployed. text -1 295 A health centre within range of a text -1 305 residential area, will increase the number text -1 315 of jobs provided to any local markets. text 20 340 See also: tbutton 140 340 residential.hlp Residences tbutton 140 360 transport.hlp Transport tbutton 140 380 market.hlp Markets lincity-1.13.1/help/keyboard.hlp0000644000175000017500000000163107643727354013450 00000000000000text -1 40 The keyboard interface text -1 50 ====================== text 40 90 H Help text 40 100 L Load text 40 110 P Pause/Unpause text 40 120 Q Quit text 40 130 S Save text 40 150 Arrow Keys Scroll Main Screen (X11,WIN32) text 40 160 Arrow Keys Move Cursor (LIBSVGA) text 40 170 SHIFT-Arrow Faster Scrolling (X11,WIN32) text 40 180 Space Same as left mouse button text 40 190 Enter Same as left mouse button text 40 200 Backspace Same as right mouse button text 40 220 R Display stats text 40 230 O Game options text 40 240 V Toggle overlay mode text 40 260 In dialogue boxes, you can press space text 40 270 or return to select OK. The space, return text 40 280 or the y key to select YES. The backspace text 40 290 or the n key to select NO. lincity-1.13.1/help/loadgame.hlp0000644000175000017500000000111207340321764013400 00000000000000 tbutton -1 46 return1 Good Times text -1 60 You are about 600 years into the game, text -1 70 feeding everyone, making money and text -1 80 increasing your tech level. Good times are here! text -1 90 They won't stay that way without your help... tbutton -1 116 return2 Bad Times text -1 130 The same as the above but with text -1 140 *minus* 25 million, or so, in the bank. text -1 150 The idea here is to try and get back in text -1 160 the black. Not as easy as it sounds as the text -1 170 interest payments can get quite large. tbutton -1 370 return9 Load one of your scenes lincity-1.13.1/help/market.hlp0000644000175000017500000000220207340321764013113 00000000000000text -1 15 Market text -1 30 Market is probably a bad name for these areas. text -1 40 They are more like job centres, shops, text -1 50 warehouses and markets all rolled into one. text -1 65 They buy and sell food, jobs, coal, goods, text -1 75 ore and steel to surrounding areas, and text -1 85 to transport such as roads. text -1 100 In the following example, a residential area text -1 110 is supplying jobs to a market, the market is text -1 120 supplying jobs to the, half built, monument. text -1 130 NOTE, in this example the residents text -1 140 are not being fed! text -1 160 The areas are more or less at the extent text -1 170 of their range. icon 90 200 monument2.csi icon 180 200 market-low.csi icon 270 192 resmedlow.csi tbutton 72 240 monument.hlp Monument text 174 242 Market tbutton 256 252 residential.hlp Residence tbutton -1 280 market2.hlp Controlling what markets can buy and sell text 80 315 See also: tbutton 80 335 food.hlp Food tbutton 140 335 jobs.hlp Jobs tbutton 200 335 coal.hlp Coal tbutton 260 335 goods.hlp Goods tbutton 88 360 ore.hlp Ore tbutton 148 360 steel.hlp Steel tbutton 218 360 transport.hlp Transport lincity-1.13.1/help/market2.hlp0000644000175000017500000000132707340321764013204 00000000000000text -1 15 Controlling what markets can buy and sell text -1 40 You can control the functioning of a market text -1 50 by selecting what may be bought and sold text -1 60 from transport. Click twice on a market text -1 70 (not the select button) and towards the top text -1 80 left hand side a window will appear allowing text -1 90 you to select what is traded. text -1 105 The default is to trade in everything. icon 50 140 checked_box.csi text 80 146 Means the trade is allowed. icon 50 170 unchecked_box.csi text 80 176 Means the trade is NOT allowed. text -1 200 The numbers between the words Buy and Sell text -1 210 are the map reference for that market. text 50 290 See also: tbutton 50 310 transport.hlp Transport lincity-1.13.1/help/medium.hlp0000644000175000017500000000030307340321764013110 00000000000000 text -1 200 This is the medium speed button. text -1 210 It causes the game to run at text -1 220 medium speed. text -1 230 On slow machines the speed buttons text -1 240 may have no effect. lincity-1.13.1/help/menu.hlp0000644000175000017500000000066207755465547012626 00000000000000text -1 50 Main Menu tcolour 226 80 tbutton -1 100 newgame.hlp ============== New Game ============== tbutton -1 140 loadgame.hlp ================ Load ================ tbutton -1 180 return1 ================ Save ================ tbutton -1 220 return2 ============== Options =============== tbutton -1 260 index.hlp ================ Help ================ tbutton -1 300 return3 ================ Quit ================ tcolour -1 -1 lincity-1.13.1/help/mill.hlp0000644000175000017500000000174007340321764012573 00000000000000text -1 15 Mills text -1 30 Mills convert food, coal and jobs into text -1 40 goods. Food?... well, cotton and wool are text -1 50 counted as food in this game. text -1 65 Mills use quite a lot of food, so you can text -1 75 easily get into food shortages if you don't text -1 85 take this into account. (It is less of a text -1 95 problem when you have windmills, as they can text -1 105 power farms which makes them more efficient. text -1 120 Mills do not have to be connected to text -1 130 transport. If not, they do have to be in text -1 140 range of a market with coal, jobs and food. text -1 150 You can tell when mills are working by the text -1 160 smoke and steam coming from the building. text 30 190 This is a non-working mill. icon 290 180 mill0.csi text 20 250 See also: tbutton 100 250 goods.hlp Goods tbutton 100 270 food.hlp Food tbutton 100 290 coal.hlp Coal tbutton 100 310 jobs.hlp Jobs tbutton 100 330 transport.hlp Transport tbutton 100 350 windmill.hlp Windmills lincity-1.13.1/help/mini-screen.hlp0000644000175000017500000000131207340321764014042 00000000000000text -1 100 This is the 'mini' screen. text -1 120 This shows, in reduced scale, the whole text -1 130 of your playing area. The buttons above, text -1 140 when you click on them, show information text -1 150 such as pollution levels over the whole text -1 160 of your playing area. text -1 170 Click the right mouse button on each of text -1 180 the buttons above the mini screen to text -1 190 activate their help pages. text -1 220 Clicking the left button within the mini text -1 230 screen window moves the active playing text -1 240 area to the place where you clicked. text -1 260 The green square shows the area covered text -1 270 by the main screen. (Where this text is text -1 280 being displayed.) lincity-1.13.1/help/monument.hlp0000644000175000017500000000333507340321765013503 00000000000000text -1 15 Monuments text -1 30 Monuments provide a focal point for text -1 40 the teaching and inspiration of text -1 50 inventers. Every monument you build will text -1 60 increase the rate of technology growth, text -1 70 but their effectiveness drops to zero as text -1 80 you get toward 40% tech level. text -1 95 To build a monument, you need to provide text -1 105 jobs, a LOT of jobs. For this reason they text -1 115 are useful for controlling unemployment. text -1 125 This is only a short term solution to an text -1 135 unemployment problem as monuments don't text -1 145 use any jobs after they are fully built. text -1 160 You can tell how far building has text -1 170 progressed by clicking on the monument text -1 180 and looking at the stats window (top left text -1 190 of centre). Also the graphic changes as it text -1 200 is built. The following 6 graphics show the text -1 210 stages of construction from 0% to 100% icon 50 230 monument0.csi icon 100 230 monument1.csi icon 150 230 monument2.csi icon 200 230 monument3.csi icon 250 230 monument4.csi icon 300 230 monument5.csi text -1 270 HINT: How to stop monument building sucking text -1 280 too many jobs out of an area and therefore text -1 290 starving other areas of jobs: Build a text -1 300 monument farm away from other areas. text 10 320 Track connected text 10 330 to the main part text 10 340 of the game. icon 148 330 tracklr.csi icon 164 330 tracklr.csi icon 180 330 tracklr.csi icon 196 330 tracklr.csi icon 212 330 tracklr.csi icon 228 330 tracklr.csi icon 244 330 tracklr.csi icon 260 330 tracklr.csi icon 276 330 tracklr.csi icon 292 330 market-med.csi icon 324 330 monument4.csi text 150 370 You will need a here tbutton 286 368 market.hlp market lincity-1.13.1/help/msb-coal.hlp0000644000175000017500000000154407755465547013357 00000000000000text -1 30 This is the coal mini screen. text -1 80 The coal mini screen shows the text -1 90 coal reserves beneath your 'city'. text -1 100 The coal seams are shown as white on a text -1 110 black background. You will have to build text -1 120 a coal mine close to one of these seams text -1 130 to extract its coal. text -1 150 The first time you ask for this text -1 160 information, you will have to undertake text -1 170 a coal survey, which will cost you one text -1 180 million currency units. After that the text -1 190 information is free to look at again. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-cricket.hlp0000644000175000017500000000116207755465547014061 00000000000000text -1 30 This is the cricket cover mini screen. text -1 80 Areas that have cricket pitches within range text -1 90 are shown as dark green. text -1 110 Areas that are out of range of a text -1 120 cricket pitch are displayed as normal. text -1 140 Remember, cricket pitches take three text -1 150 months to become active. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-fire.hlp0000644000175000017500000000115007755465547013357 00000000000000text -1 30 This is the fire cover mini screen. text -1 80 Areas that have a fire station within text -1 90 range are shown as dark green. text -1 110 The areas out of range of a fire text -1 120 station are displayed as normal. text -1 140 Remember, fire stations take three months text -1 150 to become active. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-health.hlp0000644000175000017500000000115407755465547013703 00000000000000text -1 30 This is the health cover mini screen. text -1 80 Areas that have a health centre within range text -1 90 are shown as dark green. text -1 110 The areas out of range of a text -1 120 health centre are displayed as normal. text -1 140 Remember, health centres take three text -1 150 months to become active. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-money.hlp0000644000175000017500000000115407340321765013544 00000000000000text -1 100 This is the mini screen money button. text -1 130 This shows a breakdown of the 'other text -1 140 costs' figure (just below 'expend', text -1 150 marked OC, in the finance window). text -1 170 The meanings of the abbreviations text -1 180 are as follows: text 50 200 Int - Interest costs. text 50 210 Scl - School costs. text 50 220 Uni - University costs. text 50 230 Und - Unnatural deaths costs. text 50 240 WiM - Windmill costs. text 50 250 Rcy - Recycling costs. text 50 260 Hth - Health costs. text 50 270 Rok - Rocket costs. text 50 280 Fst - Fire station costs. text 50 290 Ckt - Cricket costs. lincity-1.13.1/help/msb-normal.hlp0000644000175000017500000000070407755465547013726 00000000000000text -1 30 This is the land use mini screen. text -1 80 The land use mini screen shows buildings, text -1 90 roads, water and green space in the city. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-pol.hlp0000644000175000017500000000135307755465547013231 00000000000000text -1 30 This is the pollution mini screen. text -1 80 The pollution mini screen shows the text -1 90 pollution levels across the city. text -1 110 Pollution gets stronger as you go from: text -1 125 Light-green -> Dark-green -> Darker-green text -1 135 Dark-red -> Lighter-red -> Bright-red. text -1 150 Places with residential areas that text -1 160 show as red, will cause sickness and make text -1 170 the area less desirable to live in. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-power.hlp0000644000175000017500000000123207755465547013567 00000000000000text -1 30 This is the power mini screen. text -1 80 Areas that have low tech windmill power text -1 90 are shown as dark green. text -1 110 The areas within the main power grid are text -1 120 shown as light green. text -1 140 The unpowerd areas are displayed as normal. text -1 160 This button uses power. Try not to leave it text -1 170 turned on too long. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-starve.hlp0000644000175000017500000000122107755465547013735 00000000000000text -1 30 This is the starvation mini screen. text -1 80 The starvation mini screen shows text -1 90 only residential areas. text -1 110 Bright green means that there is enough text -1 120 food in that residential area. text -1 130 Darker green and bright red show text -1 140 increasingly severe starvation in each text -1 150 residential area shown. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/msb-ub40.hlp0000644000175000017500000000123407755465547013207 00000000000000text -1 30 This is the unemployment mini screen. text -1 80 The unemployment mini screen shows text -1 90 only residential areas. text -1 110 Bright green means that there is no text -1 120 unemployment in that residential area. text -1 130 Darker green and bright red show text -1 140 increasingly severe unemployment in each text -1 150 residential area shown. text -1 270 Left click on the mini screen text -1 280 to reposition the main window. text -1 300 Left click on the mini screen title text -1 310 to choose a different mini screen view. text -1 330 Toggle overlay mode by pressing 'v' text -1 340 or middle click on the mini screen title (X only) lincity-1.13.1/help/newgame.hlp0000644000175000017500000000036507340321765013264 00000000000000text -1 100 New Game Menu tcolour 226 80 tbutton -1 200 return0 === New Game - with random village === tbutton -1 240 return1 ===== New Game - with bare board ===== #tbutton -1 280 return2 ======= Connect - network game ======= tcolour -1 -1 lincity-1.13.1/help/opening.hlp0000644000175000017500000000254607755465547013324 00000000000000text -1 10 Welcome to Lincity text -1 30 To get started, build something like this: icon 76 158 trackdr.csi icon 92 158 trackldr.csi icon 108 158 tracklr.csi icon 124 158 tracklr.csi icon 140 158 tracklr.csi icon 156 158 trackldr.csi icon 172 158 trackldr.csi icon 188 158 tracklr.csi icon 204 158 tracklr.csi icon 220 158 tracklr.csi icon 236 158 tracklr.csi icon 252 158 trackld.csi icon 204 126 market-med.csi icon 140 126 pottery4.csi icon 140 62 farm11.csi icon 204 78 resmedlow.csi icon 92 174 commune8.csi icon 76 174 trackur.csi icon 172 174 commune8.csi icon 156 174 trackur.csi icon 253 174 oremine2.csi tbutton 260 96 residential.hlp Residences tbutton 72 136 pottery.hlp Pottery tbutton 96 96 farm.hlp Farm tbutton 244 136 market.hlp Market tbutton 130 245 commune.hlp Communes tbutton 254 245 oremine.hlp Ore mine tbutton 16 160 track.hlp Tracks #text -1 295 Click in the boxes to find more about #text -1 305 a particular area. tcolour 226 80 tbutton -1 280 openload.hlp === Load - built in or saved scene === tbutton -1 300 return0 === New Game - with random village === tbutton -1 320 return1 ===== New Game - with bare board ===== #tbutton -1 340 return2 ======= Connect - network game ======= tcolour -1 -1 text -1 363 Right mouse button will often get you help #text -1 370 all sorts of help while playing. text -1 380 Enjoy the game - and good luck... lincity-1.13.1/help/openload.hlp0000644000175000017500000000111207340321766013432 00000000000000 tbutton -1 46 return1 Good Times text -1 60 You are about 600 years into the game, text -1 70 feeding everyone, making money and text -1 80 increasing your tech level. Good times are here! text -1 90 They won't stay that way without your help... tbutton -1 116 return2 Bad Times text -1 130 The same as the above but with text -1 140 *minus* 25 million, or so, in the bank. text -1 150 The idea here is to try and get back in text -1 160 the black. Not as easy as it sounds as the text -1 170 interest payments can get quite large. tbutton -1 370 return9 Load one of your scenes lincity-1.13.1/help/ore.hlp0000644000175000017500000000033707340321766012426 00000000000000 text -1 15 Ore text -1 100 Ore is one of the game's basic text -1 110 raw materials. Communes oremines text -1 120 and recyclers produce ore. text -1 135 Potteries, light industry and text -1 145 heavy industry use ore. lincity-1.13.1/help/oremine.hlp0000644000175000017500000000136407340321766013300 00000000000000text -1 15 Ore mine text -1 30 Ore mines provide ore to make goods and text -1 40 steel. You may build an ore mine anywhere. text -1 60 The ore under the area is text -1 70 slowly consumed; you cannot bulldoze it and text -1 80 build another one and hope to get more ore. text -1 95 When an ore mine is exhausted, it turns into text -1 105 a lake. If you then want to reclaim this land text -1 115 you will have to bulldoze 16 water areas! text -1 130 The following 4 graphics show ore mines that text -1 140 are hardly worked to nearly exhausted. text -1 155 Transport (not shown) connects to the top left text -1 165 hand corner of the ore mine. icon 30 200 oremine1.csi icon 125 200 oremine3.csi icon 215 200 oremine5.csi icon 310 200 oremine7.csi lincity-1.13.1/help/other-costs.hlp0000644000175000017500000000122307755465547014126 00000000000000text -1 30 This is the other costs window. text 20 60 This shows a breakdown of the 'other costs' text 20 70 that are shown in the finance window. text 20 90 The meanings on the abbreviations are: text 50 110 It - Interest costs. text 50 120 Sc - School costs. text 50 130 Un - University costs. text 50 140 Dt - Unnatural deaths costs. text 50 150 Wn - Windmill costs. text 50 160 Hl - Health costs. text 50 170 Rk - Rocket costs. text 50 180 Fr - Fire station costs. text 50 190 Ck - Cricket costs. text 50 200 Rc - Recycling costs. text 20 310 Left clicking on this window will cycle through text 20 320 windows for finance, other costs and housing. lincity-1.13.1/help/park.hlp0000644000175000017500000000074307340321766012577 00000000000000text -1 15 Parks text -1 40 Parks are very simple, they clear pollution. text -1 55 A number of areas produce pollution. They are text -1 65 roads, railways, coal mines and light and heavy text -1 75 industry. Some produce more than others. text -1 90 You can use parks to shield residential areas text -1 100 or to stop pollution escaping from the text -1 110 local area of the source. text -1 125 The wind comes FROM the south west, so text -1 135 build you parks accordingly. lincity-1.13.1/help/pause.hlp0000644000175000017500000000022407340321766012751 00000000000000 text -1 200 This is the pause button. text -1 210 It pauses the game. text -1 220 You can restart the game by text -1 230 clicking on it again. lincity-1.13.1/help/pbar-coal.hlp0000644000175000017500000000064307340321766013501 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of coal stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the coal store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the coal store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-food.hlp0000644000175000017500000000064307340321766013512 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of food stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the food store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the food store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-goods.hlp0000644000175000017500000000064607340321766013701 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of goods stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the goods store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the goods store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-jobs.hlp0000644000175000017500000000064207340321766013517 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of jobs stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the jobs store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the job store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-money.hlp0000644000175000017500000000061007340321766013704 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of money. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, your money grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, your money fell. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-ore.hlp0000644000175000017500000000064007340321766013345 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of ore stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the ore store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the ore store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-pop.hlp0000644000175000017500000000062507340321766013361 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of population. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the population grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the population fell. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-steel.hlp0000644000175000017500000000064607340321766013702 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of steel stored in markets. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the steel store grew over text -1 230 the past 12 months. If it is pointing text -1 240 down and red, the steel store shrank. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar-tech.hlp0000644000175000017500000000063007340321766013502 00000000000000text -1 150 This indicator shows the rate of text -1 160 change of technology. text -1 200 It shows the change over the previous 12 text -1 210 months. If the arrow is pointing upwards text -1 220 and is green, the tech level increased text -1 230 in the past 12 months. If it is pointing text -1 240 down and red, the tech level fell. text -1 255 The larger the arrow, text -1 265 the greater the change. lincity-1.13.1/help/pbar.hlp0000644000175000017500000000145507344265630012570 00000000000000text -1 50 This indicator is called the pbar. It shows text -1 60 the change in quantity of things stored at markets. text -1 80 A green bar on the right side indicates an increase. text -1 90 A red bar on the left side indicates a decrease. text -1 100 The size of the bar indicates the amount of change. text -1 120 The number at the right indicates the total quantity. text 50 180 The things are as follows icon 50 190 pbarpop.csi text 75 195 Population icon 50 205 pbartech.csi text 75 210 Technology Level icon 50 220 pbarfood.csi text 75 225 Food icon 50 235 pbarjobs.csi text 75 240 Jobs icon 50 250 pbarcoal.csi text 75 255 Coal icon 50 265 pbarore.csi text 75 270 Ore icon 50 280 pbargoods.csi text 75 285 Goods icon 50 295 pbarsteel.csi text 75 300 Steel icon 50 310 pbarmoney.csi text 75 315 Money lincity-1.13.1/help/pollution.hlp0000644000175000017500000000162407340321766013666 00000000000000text -1 15 Pollution text -1 40 Most areas produce some pollution. text -1 50 The following are areas that can cause text -1 60 heavy pollution: text -1 75 Heavy industry. text -1 85 Light industry. text -1 95 Coal fired power stations. text -1 105 Coal mines. text -1 115 Markets that are full of waste. text -1 125 Roads/Rail, particularly when full of waste. text -1 150 People do not like living in polluted areas. text -1 160 They will move out, or even become ill and die. text -1 200 The prevailing wind is from the bottom left. text -1 210 Therefore the pollution tends to drift towards text -1 220 the top right hand side. text -1 290 Generally you would build strategically so text -1 300 people are not exposed to pollution. This text -1 310 is not always possible however. If this is text -1 320 the case then parks form quite a nice barrier. text -1 330 The more parks, the greater the protection. lincity-1.13.1/help/port.hlp0000644000175000017500000000310407340321766012620 00000000000000text -1 15 Ports text -1 30 Ports let you import and export goods, text -1 40 steel, ore, coal and food. Importing text -1 50 costs you money and exporting makes you text -1 60 money. text -1 85 To be of use a port must be connected to text -1 95 transport at the dock gate at the top left text -1 105 of the area. You chose what to import text -1 115 by double clicking on the area. This text -1 125 brings up a menu with boxes to select text -1 135 what you import or export. icon 100 170 ex_port.csi icon 68 170 roadlr.csi icon 84 170 roadlr.csi icon 164 154 waterd.csi icon 164 170 waterlud.csi icon 164 186 waterlud.csi icon 164 202 waterlud.csi icon 164 218 waterlur.csi icon 180 218 waterl.csi text 200 170 They MUST be connected text 200 180 to rivers all along text 200 190 the right hand side. tbutton 230 205 river.hlp See rivers text -1 250 Nothing will be imported or exported until text -1 260 you have checked the appropriate box. text -1 275 The export area will take as much as it is text -1 285 given. If you need to export, but want to text -1 295 restrict the amount, you may want to use a text -1 305 type of transport with less capacity, use a text -1 315 long piece or pass the product through a market. text -1 325 You will need to experiment to get the right text -1 335 transport configuration. text -1 347 Note: Exporters discount large exports. text 30 362 See also: tbutton 110 360 transport.hlp Transport tbutton 110 380 market.hlp Markets tbutton 220 360 coal.hlp Coal tbutton 290 360 ore.hlp Ore tbutton 220 380 goods.hlp Goods tbutton 290 380 steel.hlp Steel lincity-1.13.1/help/pottery.hlp0000644000175000017500000000134707340321766013351 00000000000000text -1 15 Potteries text -1 30 Potteries use ore, coal and jobs to make text -1 40 goods. They do not have to be connected text -1 50 to transport but they do, of course, have text -1 60 to be within range of a market with ore, text -1 70 coal and jobs and be able to receive goods. text -1 85 You can tell when potteries are working by text -1 95 the kilns producing smoke. If the bottom text -1 105 kiln is not making smoke, then you are text -1 115 producing less than 100% of possible output. text 50 150 This is a pottery icon 200 140 pottery0.csi text 80 200 See also: tbutton 200 220 transport.hlp Transport tbutton 200 240 ore.hlp Ore tbutton 200 260 coal.hlp Coal tbutton 200 280 jobs.hlp Jobs tbutton 200 300 market.hlp Markets lincity-1.13.1/help/powerline.hlp0000644000175000017500000000161207340321766013642 00000000000000text -1 15 Power lines text -1 30 Power lines carry power from solar and coal text -1 40 power stations to substations. text -1 60 Power lines connect to the top left corner of text -1 70 each of the three types of icons, solar and text -1 80 coal power stations and substations. text -1 95 The example below shows a substation being text -1 105 fed by a solar power station, text -1 115 using power lines. icon 220 200 powerssolar.csi icon 220 184 powerlvl.csi icon 204 200 powerlhl.csi icon 188 200 powerlhd.csi icon 172 200 powerlhl.csi icon 156 200 powerlrdl.csi icon 156 216 substation-G.csi text 110 184 Power lines text 126 254 Substation button 124 252 84 12 substation.hlp text 190 280 Solar power station button 188 278 156 12 powerssolar.hlp text -1 325 Power lines can cross tracks, roads, railways text -1 335 and rivers. See... tbutton -1 350 powerline2.hlp Crossing transport and rivers lincity-1.13.1/help/powerline2.hlp0000644000175000017500000000403707340321766013730 00000000000000text -1 15 Crossing transport and rivers text -1 30 Power lines cross UNDER tracks, roads, text -1 40 railways and rivers. If a power line is text -1 50 placed either side of a transport or river text -1 60 area, they act as if they are joined. text -1 75 See the examples below. icon 40 110 powerlhl.csi icon 56 110 powerlhl.csi icon 72 110 powerlhl.csi icon 88 110 roadud.csi icon 104 110 powerlhl.csi icon 120 110 powerlhl.csi icon 88 94 roadud.csi icon 88 126 roadud.csi text 145 108 These power lines are text 145 118 connected under the road. icon 40 170 powerlhl.csi icon 56 170 powerlhl.csi icon 72 170 powerlhl.csi icon 88 170 railud.csi icon 104 170 powerlhl.csi icon 120 170 powerlhl.csi icon 88 154 railld.csi icon 72 154 raillr.csi icon 88 186 raillur.csi icon 72 186 raillr.csi icon 104 186 raillr.csi text 145 168 These power lines are text 145 178 connected under the rails. icon 50 210 water.csi icon 66 210 water.csi icon 50 226 water.csi icon 66 226 water.csi icon 66 242 water.csi /icon 82 242 water.csi icon 66 258 water.csi icon 82 258 water.csi icon 50 274 water.csi icon 66 274 water.csi icon 66 290 water.csi icon 82 290 water.csi icon 66 306 water.csi icon 82 306 water.csi icon 82 322 water.csi icon 98 322 water.csi icon 82 338 water.csi icon 98 338 water.csi icon 34 242 powerlhl.csi icon 50 242 powerlhl.csi icon 82 242 powerlhl.csi icon 98 242 powerlhl.csi icon 34 322 powerlhl.csi icon 50 322 powerlhl.csi icon 66 322 powerlhl.csi /icon 98 322 powerlhd.csi icon 114 322 powerlhd.csi icon 130 322 powerlhd.csi icon 98 306 powerlvd.csi icon 98 290 powerlvd.csi text 130 230 These power lines are connected text 130 240 under the river. Often you will text 130 250 have to bulldoze a bit of river text 130 260 to do this, it's expensive! text 155 300 None of these 3 bits of power text 155 310 line are joined. The leftmost text 155 320 one is not connected because text 155 330 it tries to go under 2 river text 155 340 blocks. The right ones are text 155 350 note joined because they must text 135 360 be in a straight line to connect. lincity-1.13.1/help/powerscoal.hlp0000644000175000017500000000303307340321766014013 00000000000000text -1 15 Coal fired power station text -1 30 Coal fired power stations produce text -1 40 packets of electricity which are placed text -1 50 onto connected power lines. text -1 65 Power lines connect at the top left text -1 75 corner of the station, transport connects text -1 85 to the next possition in. See the example. icon 100 150 powerscoal-full.csi icon 84 150 powerlhl.csi icon 68 150 powerlhl.csi icon 52 150 powerlhl.csi text 180 160 Coal fired power station text 180 180 See also: tbutton 255 178 transport.hlp Transport tbutton 180 200 tech-level.hlp Tech level tbutton 275 200 powerline.hlp Power lines icon 84 166 roadlr.csi icon 68 166 roaddr.csi icon 68 182 roadud.csi icon 100 134 powerlvl.csi icon 100 118 powerlldl.csi icon 84 118 powerlhl.csi icon 68 118 powerlhl.csi icon 116 134 raildr.csi icon 132 134 raillr.csi icon 148 134 raillr.csi icon 164 134 raillr.csi text -1 240 The above example shows a coal fired text -1 250 power station with all its connection text -1 260 points used. To the left there is a road, text -1 270 above this there are two power lines, text -1 280 then to their right a railway is connected text -1 290 to the other transport connection point. text -1 305 The efficiency of the conversion of coal text -1 315 to electricity increases with increasing text -1 325 tech level - when the station is BUILT. text -1 335 You may want to demolish an old station text -1 345 and replace it with a newer, more text -1 355 efficient one, when your tech level has text -1 365 increased by a significant amount. lincity-1.13.1/help/powerssolar.hlp0000644000175000017500000000166507340321766014226 00000000000000text -1 15 Solar power station text -1 30 Solar power stations output their power to text -1 40 power lines in packets. The amount of text -1 50 power that it can produce increases with text -1 60 the tech-level when it was *built*. text -1 100 The example below shows a solar power station text -1 110 feeding a substation. A medium populated text -1 120 residential area is within range. icon 220 200 powerssolar.csi icon 220 184 powerlvl.csi icon 204 200 powerlhl.csi icon 188 200 powerlhd.csi icon 172 200 powerlhl.csi icon 156 200 powerlrdl.csi icon 156 216 substation-G.csi icon 130 280 resmedlow.csi text 60 228 Substation button 58 226 84 12 substation.hlp text 110 184 Power lines button 108 182 92 12 powerline.hlp text 195 280 Solar power station //button 193 278 156 12 powerssolar.hlp text 110 335 Residential button 108 333 92 12 residential.hlp text 280 320 See also text 282 335 Tech-level button 280 333 84 12 tech-level.hlp lincity-1.13.1/help/rail.hlp0000644000175000017500000000071707340321766012572 00000000000000text -1 15 Railways text -1 50 Railways carry even more than roads. text -1 60 They produce slightly less text -1 70 pollution than roads. They are quite text -1 80 expensive to buy and maintain though. text -1 90 They are well worth the expense when you text -1 100 have a lot to transport over a long text -1 110 distance. text 50 150 See also: tbutton 50 170 transport.hlp Transport tbutton 50 190 commune.hlp Communes tbutton 50 210 pollution.hlp Pollution lincity-1.13.1/help/readme.hlp0000644000175000017500000000165007340321767013076 00000000000000text -1 30 Read me for lin city version 0.78 text -1 65 Some things you need to know to get going. text -1 75 Monuments make tech points. text -1 85 Communes provide coal, ore and steel for text -1 95 things like Blacksmiths in the early text -1 105 stages of the game. text -1 165 One of your aims, if you choose, is to text -1 175 evacuate everyone with rockets. It isn't text -1 185 easy. text -1 200 Save writes to a directory Lin-city/ text -1 210 off your HOME directory. Click on save, text -1 220 then choose the number (1-9) of the 'slot' text -1 230 you want to put it, edit the comment and text -1 240 press return. text -1 255 To reload a saved city,click on load and text -1 265 choose a number (1-9) using the comments text -1 280 as your guide to which one you want. text -1 350 Check out the other help screens, text -1 360 they are more colourful than this one. tbutton -1 380 readme2.hlp Next page - IMPORTANT lincity-1.13.1/help/readme2.hlp0000644000175000017500000000040507340321767013155 00000000000000text -1 50 Please read the changes file. text -1 65 This is where all the important text -1 75 information is before it gets to the text -1 85 manual or help screens. text -1 105 less /usr/local/games/lin-city/CHANGES text -1 125 ( Note the upper case CHANGES )lincity-1.13.1/help/recycle.hlp0000644000175000017500000000147607340321767013275 00000000000000text -1 15 Recycle centres text -1 40 Used goods produce waste. text -1 95 Recycle centres convert used goods into ore. text -1 105 They must be connected to transport at the text -1 115 top left hand corner. Jobs and money are text -1 125 used to collect the waste goods and convert text -1 135 them into fresh ore. text -1 150 The efficiency of the centres is dependent text -1 160 on the tech level when the area is built. text -1 175 It is possible to run a sustainable economy, text -1 185 (ie no ore dug etc) with less than 100% text -1 195 efficient recycle centres if you have some text -1 205 mills to make up for the 'lost' waste goods. icon 180 300 roaddr.csi icon 180 316 recycle-centre.csi icon 196 300 roadlr.csi icon 212 300 roadlr.csi icon 164 316 raildr.csi icon 164 332 railud.csi icon 164 348 railud.csi lincity-1.13.1/help/residential.hlp0000644000175000017500000000172107340321767014143 00000000000000text -1 15 Residential area text -1 30 This is where people live. To encorage text -1 40 people to live in this area they must be text -1 50 fed. It also helps to provide them with text -1 60 work and goods to buy. They must be within text -1 70 range of a market or connected to transport. text -1 95 The following 3 icons show low, medium text -1 105 and high density housing, There are text -1 115 different birth and death rates associated text -1 125 with each area, this gives you some control text -1 135 over your population. icon 55 170 reslowlow.csi icon 215 170 resmedlow.csi icon 295 170 reshilow.csi tbutton 155 245 market.hlp Market icon 220 230 market-full.csi text -1 290 The above market is within range of the last text -1 300 two residential areas, however, it is text -1 310 probably out range of the first. text -1 350 Later in the game, if you have sufficient text -1 360 technology, you can build more 'modern' text -1 370 housing, even tower blocks. lincity-1.13.1/help/river.hlp0000644000175000017500000000237007340321767012770 00000000000000text -1 15 Rivers/Water text -1 30 Rivers are here mainly to get in your way. text -1 40 They are expensive to bridge, dig and text -1 50 demolish. Their only 'use' is that ports text -1 60 must be connected to rivers. text -1 75 There are two types of water. Lakes are text -1 85 water that is NOT connected to the river text -1 95 system, river is water that IS connected text -1 105 to the river system. The river system text -1 115 is defined as all the water that is text -1 125 there at the start of the game. text -1 135 For example, when an ore mine empties text -1 145 it turns into water. If this is text -1 155 connected to a piece of river, it text -1 165 becomes part of the river, else it is text -1 175 just a lake. text -1 190 If you demolish some river to make a text -1 200 path for, say, transport, you have text -1 210 built a bridge. Both sides of your gap text -1 220 are still part of the river system. This text -1 230 is one of the reasons it is so expensive text -1 240 to 'demolish' water. text -1 255 Once a piece of water is part of the river text -1 265 system it CANNOT revert to being a lake. text -1 280 Power lines can transfer power under ONE text -1 290 piece of river in the same way that it can text -1 300 pass under transport. lincity-1.13.1/help/road.hlp0000644000175000017500000000063507340321767012570 00000000000000text -1 15 Roads text -1 50 Roads carry more than tracks, but not as text -1 60 much as railways. They produce more text -1 70 pollution than railways as well. They are text -1 80 cheaper to buy and maintain than railways text -1 90 - I knew there must be a reason for them. text 50 140 See also: tbutton 50 160 transport.hlp Transport tbutton 50 180 commune.hlp Communes tbutton 50 220 pollution.hlp Pollution lincity-1.13.1/help/rocket.hlp0000644000175000017500000000314207340321767013126 00000000000000text -1 15 Rocket Launch Pad text -1 30 Rockets enable you to evacuate your text -1 40 population to another world, and thus text -1 50 end the game. text -1 65 You must have five successful unmanned text -1 75 launches before you can start evacuating. text -1 85 Each successful evacuation rocket holds text -1 95 1000 people. text -1 110 If any launch fails, you must launch text -1 120 a further 5 unmanned rockets before you text -1 130 can evacuate any more people. text -1 145 The tech level at the time of launch text -1 155 is the probability of a successful launch. text -1 165 This means that if your tech level is, text -1 175 say, 80%, then you have only a four in text -1 185 five chance of success. 100% or more text -1 195 means that a launch will always succeed. text -1 205 (Some of the _first 5_ may still fail.) text -1 215 You must build a new launch pad for each text -1 225 rocket you build. text -1 240 Rocket Launch Pads do not need to be text -1 250 connected to transport, they can get all they text -1 260 need from local markets. They use large text -1 270 quantities of steel, goods, jobs and money text -1 280 to build. When the rocket is built, you text -1 290 will get a message asking you if you want text -1 300 to launch now or later. If you choose text -1 310 later, then you can launch it when you wish text -1 320 by clicking on the area. You can have any text -1 330 number of rockets waiting to launch. text -1 345 When a rocket is built, but waiting to be text -1 355 launched, it no longer uses steel, goods or text -1 365 jobs, but still continues to cost a lot of text -1 375 money. lincity-1.13.1/help/school.hlp0000644000175000017500000000215107340321767013125 00000000000000text -1 15 Schools text -1 30 Schools use jobs and goods to produce text -1 40 technology in a similar way to text -1 50 universities. They use many less jobs text -1 60 and goods than universities, but text -1 70 produce far fewer tech points. Given text -1 80 the choice of putting 4 or five schools text -1 90 in a given area, or a university, it is text -1 100 often (but not always) better to put a text -1 110 university in. text -1 125 Schools do NOT need to connect to text -1 135 transport, but do need to be within text -1 145 range of a market than can supply the text -1 155 quantity of jobs and goods to make the text -1 165 school work. text -1 180 Schools cost money to run. You can see text -1 190 the total cost for the LAST year by text -1 205 clicking on the money button. icon 316 202 ms-ocost-button.csi text -1 220 The value 'scl' is the school cost. text 20 250 See also: tbutton 100 250 market.hlp Markets tbutton 100 270 university.hlp Universities tbutton 100 290 transport.hlp Transport tbutton 100 310 goods.hlp Goods tbutton 100 330 jobs.hlp Jobs text 275 264 A school icon 290 280 school0.csi lincity-1.13.1/help/slow.hlp0000644000175000017500000000030107340321767012615 00000000000000 text -1 200 This is the slow button. text -1 210 It causes the to game run at text -1 220 it's slowest speed. text -1 230 On slow machines the speed buttons text -1 240 may have no effect. lincity-1.13.1/help/stats.hlp0000644000175000017500000000225607340321767013002 00000000000000text -1 30 This is the stats window. text -1 60 The stats window shows 8 variables: text 20 80 1. Population - this shows the population text 60 90 in your residences. This figure does not text 60 100 include the homeless. text 20 120 2. % Starving - this shows the percentage text 60 130 of your popluation that are starving. text 20 150 3. Foodstore - this shows the total food text 60 160 held in markets. text 20 180 4. % u-ployed - this shows the percentage text 60 190 of your population that is unemployed. text 20 210 5. Tech Level - this shows your technology text 60 220 level. The scale is the percentage text 60 230 chance of a successful rocket launch. text 60 240 (A good a measure as any other, I feel.) text 20 260 6. un-nat deaths - this shows the number text 60 270 of people that died through starvation text 60 280 or from pollution, in the last month. text 20 300 7. Rockets - this shows the number of text 60 310 *successful* launches in a row, over text 60 320 the total number of launches. text 20 340 8. Peoplepool - this shows the homeless text 60 350 population. Don't worry about this text 60 360 figure at the moment, it has little text 60 370 effect. lincity-1.13.1/help/steel.hlp0000644000175000017500000000200207340321767012745 00000000000000text -1 15 Steel text -1 40 Steel is generally made by heavy industry text -1 50 (steel works). You must have attained text -1 60 a sufficient tech level to build a steel text -1 70 works. Before this, communes are your only text -1 80 source of steel. Communes produce a small text -1 90 amount of steel (from ore), so you will text -1 100 usually need a number of communes to text -1 110 provide enough steel for your needs. text -1 125 Steel is used by blacksmiths to make goods. text -1 135 Steel is used by light industry for tools text -1 145 and products (goods). Light industry works text -1 155 without steel, though its output is much text -1 165 reduced. text -1 180 Rockets use a lot of steel, mainly to build text -1 190 the launch site, (seems that there is no text -1 200 aluminium or titanium, 'steel' is used in the text -1 210 construction of the rockets as well - don't text -1 220 worry about it, I don't). text -1 235 Railways also use steel to maintain them. text -1 250 Steel production is taxed. lincity-1.13.1/help/substation.hlp0000644000175000017500000000167507340321767014043 00000000000000text -1 15 Substations text -1 35 Substations take power packets from power text -1 45 lines and distribute the power to the text -1 55 surrounding area. You can see if, for example, text -1 65 your residential area is powered by clicking text -1 75 on the icon, then looking at the mappoint text -1 85 stats window. text -1 100 The example below shows a solar power station text -1 110 feeding a substation. A medium populated text -1 120 residential area is within range. icon 220 200 powerssolar.csi icon 220 184 powerlvl.csi icon 204 200 powerlhl.csi icon 188 200 powerlhd.csi icon 172 200 powerlhl.csi icon 156 200 powerlrdl.csi text 60 228 Substation icon 156 216 substation-G.csi icon 130 280 resmedlow.csi tbutton 108 182 powerline.hlp Power lines //text 110 184 Power lines //button 108 182 92 12 powerline.hlp text 195 280 Solar power station button 193 278 156 12 powerssolar.hlp text 110 335 Residential button 108 333 92 12 residential.hlp lincity-1.13.1/help/sustain.hlp0000644000175000017500000000260507340321767013330 00000000000000 text -1 15 Sustainability progress window text -1 30 This window contains six coloured lines. When they text -1 40 all reach the right hand side of the window, text -1 50 you have a sustainable economy. text 16 70 MIN (orange) you are not digging any ore text 48 80 or coal, and are not dumping waste on a tip. text 16 105 PRT (grey) you are not importing or exporting. text 16 130 MNY (green) your money is stable or rising, text 48 140 this means you cannot build anything but text 48 150 the cheapest of areas. text 16 175 POP (blue) your population is stable to within text 48 185 2% of the value when the 180 year count text 48 195 started. If it goes outside of this band, text 48 205 the new population will be the new value and text 48 215 the year count will be set back to zero. text 48 225 Also, your population must be at least 5000. text 16 250 TEC (yellow) your technology is increasing text 48 260 or falling by only a very small amount. text 48 270 If it falls by more than 1%, the year text 48 280 is set back to zero. Also, your tech level text 48 290 must be at least 50. text 16 315 FIR (red) all areas that can catch fire have text 48 325 fire cover. The following areas do *not* have text 48 335 to have fire cover: monuments, oremines, text 48 345 power lines and rockets. text 16 365 Years required for sustainability: text -1 375 MIN=180 PRT=180 MNY=60 POP=60 TEC=120 FIR=60 lincity-1.13.1/help/tech-level.hlp0000644000175000017500000000254607340321767013676 00000000000000 text -1 15 Tech Level text -1 40 Your city's technology level determines text -1 50 a number of things such as what you can text -1 60 build and the efficiency of certain text -1 70 processes. text -1 85 To increase your technology, you must text -1 95 build (and supply with the appropriate text -1 105 inputs) Monuments, Schools and text -1 115 Universities. text -1 130 When your tech level is very low, you text -1 140 can only build monuments. When a few of text -1 150 these have been around for a while, you text -1 160 will then 'invent' schools. Schools text -1 170 produce more technology than monuments. text -1 185 When your tech level reaches a higher text -1 195 value still, you will 'invent' text -1 205 universities. These produce even more text -1 215 technology than schools, but are VERY text -1 225 resource hungry. text -1 240 The more technology you have, the faster text -1 250 it 'erodes'. This means that the higher text -1 260 you want your tech level to be, the more text -1 270 schools and universities you will need. text -1 280 Also, be aware that if for some reason you text -1 290 need to take out, say, a university or two text -1 300 (or they are suddenly starved of resources) text -1 310 your tech level is likely to start FALLING. text 20 335 See also: tbutton 100 347 school.hlp Schools tbutton 100 365 university.hlp Universities lincity-1.13.1/help/tip.hlp0000644000175000017500000000141307340321767012432 00000000000000text -1 15 Tips (rubbish dumps) text -1 30 Tips provide a place to put your text -1 40 rubbish. If you accumulate too much text -1 50 at markets, they are forced to burn text -1 60 some. This makes quite a lot of text -1 70 pollution so you should be wary of text -1 80 letting rubbish accumulate. text -1 95 As the tip is filled, it slowly turns text -1 105 into a hill, which is grassed over text -1 115 when it is full. text -1 130 The following 4 graphics show tips that text -1 140 are hardly worked to nearly exhausted. text -1 155 Transport (not shown) connects to the top left text -1 165 hand corner of the tip as usual. icon 30 200 tip1.csi icon 125 200 tip2.csi icon 215 200 tip3.csi icon 310 200 tip4.csi text 40 300 See also: tbutton 40 320 market.hlp Markets lincity-1.13.1/help/tover.hlp0000644000175000017500000000073307340321767013001 00000000000000 text -1 35 This is the OVERWRITE transport button. text -1 50 When active (green) it allows you to text -1 60 overwrite one type of transport with another. text -1 70 You can *upgrade* or *downgrade* existing text -1 80 transport. text -1 100 Remember to turn this off (red), once text -1 110 you have finished. text -1 130 The cost for using this option is the text -1 140 same as if you had bulldozed the existing text -1 150 transport, and built the new one, by hand. lincity-1.13.1/help/track.hlp0000644000175000017500000000045507340321767012747 00000000000000text -1 15 Tracks text -1 50 Tracks are the simplest, and cheapest, text -1 60 form of transport. They also have the lowest text -1 70 capacity. On the other hand, they produce text -1 80 no pollution. text 50 140 See also: tbutton 50 160 transport.hlp Transport tbutton 50 180 commune.hlp Communes lincity-1.13.1/help/transport.hlp0000644000175000017500000000207407340321770013670 00000000000000text -1 15 Transport - page 1 of 4 text -1 30 There are three types of transport in lin-city, text -1 40 tracks, roads and railways. There is a fourth text -1 50 form that consists of 'hopping across a field'. text -1 60 This is a short range form of trading and will text -1 70 not be referred to as transport again. However, text -1 80 it is very important and will be dealt with text -1 90 before tracks, roads and railways. text -1 115 People can obtain food, goods and employment text -1 125 from markets that are within walking distance text -1 135 of their residential area. See below for an text -1 145 example of the distances involved. Be text -1 155 conservative until you have got the feel of it. icon 60 200 resmedlow.csi icon 130 270 resmedlow.csi icon 220 230 market-full.csi tbutton 30 270 residential.hlp Residences tbutton 210 270 market.hlp Market text 120 204 This residence is out of range. text 192 304 This one is within text 188 314 range of the market. text -1 341 [This is only a rough guide, no rulers please] tbutton -1 375 transport2.hlp Next Page lincity-1.13.1/help/transport2.hlp0000644000175000017500000000237307340321770013754 00000000000000text -1 15 Transport page 2 of 4 text -1 40 All areas that require jobs (employees) get text -1 50 them from markets. (For example a steel works text -1 60 will get its employees from a local market.) text -1 70 They can also get them from passing transport. text -1 85 Farms can sell their food directly to markets, text -1 95 they do not have to deal with transport at all. text -1 110 Mills, Potteries and blacksmiths sell goods text -1 120 directly to nearby markets, they also get text -1 130 their raw materials from the same markets. #text -1 140 text -1 160 The following areas deal with transport text -1 170 and markets. It's up to you what you use, text -1 180 - markets hold more 'stock' than transport. tbutton 65 215 residential.hlp Residences tbutton 65 235 powerssolar.hlp Solar Power Stations tbutton 65 255 farm.hlp Farms tbutton 65 275 university.hlp Universities tbutton 65 295 health.hlp Medical Centres tbutton 65 315 rocket.hlp Rocket Launch Sites tbutton 250 215 windmill.hlp Wind Mills tbutton 250 235 monument.hlp Monuments tbutton 250 255 school.hlp Schools tbutton 250 275 blacksmith.hlp Blacksmiths tbutton 250 295 mill.hlp Mills tbutton 250 315 pottery.hlp Potteries tbutton -1 360 transport3.hlp Next Page - tracks, roads and railways lincity-1.13.1/help/transport3.hlp0000644000175000017500000000316207340321770013752 00000000000000text -1 15 Tracks Roads and Railways Page 3 of 4 text -1 30 Tracks, roads and railways are used to text -1 40 carry food, jobs, goods, coal, ore and steel text -1 50 between areas. text -1 65 The following areas connect to transport text -1 75 at the top left hand edge (see example text -1 85 below). tbutton 34 100 industryl.hlp Light indusrty tbutton 180 100 oremine.hlp Ore mines tbutton 280 100 tip.hlp Tips tbutton 34 120 port.hlp Ports tbutton 100 120 coalmine.hlp Coal mines tbutton 220 120 industryh.hlp Heavy industry tbutton 100 140 recycle.hlp Recycling centres text -1 165 An exception is the coal power station. icon 120 200 coalmine-full.csi icon 104 200 roadlr.csi icon 88 200 roadlr.csi icon 72 200 roadlr.csi icon 56 200 roaddr.csi /icon 40 200 roaddr.csi icon 40 216 powerscoal-full.csi icon 120 184 raildr.csi icon 136 184 raillr.csi icon 150 184 raillr.csi icon 166 184 raillr.csi icon 180 184 raillr.csi text 210 190 This shows a coal fired text 210 200 power station connected text 210 210 to a coalmine with text 210 220 a road. text 210 235 A railway is coming out text 210 245 of the top gate of the text 210 255 coalmine and going off text 210 265 to the right. icon 104 248 roadud.csi icon 104 264 roadud.csi icon 104 280 roadud.csi icon 104 296 roadud.csi icon 88 296 market-full.csi text 130 296 This market is connected to this text 130 306 road, the road is NOT connected text 130 316 to either the mine nor the text 130 326 power station. tbutton 130 270 coalmine.hlp Coalmine tbutton 21 285 powercoal.hlp Coal PS tbutton 25 310 market.hlp Market tbutton -1 350 transport4.hlp Next page - Crossing rivers lincity-1.13.1/help/transport4.hlp0000644000175000017500000000134307340321770013752 00000000000000 text -1 15 Transport - page 4 of 4 text -1 30 Crossing rivers text -1 45 To cross a river with transport, text -1 55 simply bulldoze the river away and text -1 65 build a road, or whatever, through text -1 75 the gap. text -1 90 (With a little imagination), think text -1 100 of this as building a bridge. text -1 110 It costs you enough as bulldozing text -1 120 water is very expensive. icon 200 200 waterd.csi icon 200 216 waterurd.csi icon 216 216 waterld.csi icon 200 232 waterur.csi icon 216 232 waterlu.csi icon 184 248 roadlr.csi icon 200 248 roadlr.csi icon 216 248 roadlr.csi icon 232 248 roadlr.csi icon 248 248 roadlr.csi icon 216 264 waterrd.csi icon 232 264 waterld.csi icon 216 280 waterur.csi icon 232 280 waterlu.csi lincity-1.13.1/help/university.hlp0000644000175000017500000000215607340321770014056 00000000000000text -1 15 University text -1 30 Universities help to increase your text -1 40 technology level. In the process they text -1 50 consume goods and jobs. They produce more text -1 60 than schools for a given goods/jobs input. text -1 70 However, they use a lot of these text -1 80 and also cost quite a lot of money to run, text -1 90 so you should have the economic and text -1 100 industrial capacity to supply them. text -1 115 You will need a number of universities to text -1 125 achieve a tech level close to 100% text -1 145 Universities do not need to be connected to text -1 155 transport; they can get all thier requirements text -1 165 from markets (which must be in range and have text -1 175 goods and jobs available). text -1 190 ---- NOTE ---- text -1 203 You MUST have 5 schools PER university to text -1 213 supply it with students. text 40 245 See also: tbutton 50 265 market.hlp Markets tbutton 50 285 transport.hlp Transport tbutton 50 305 goods.hlp Goods tbutton 50 325 jobs.hlp Jobs icon 220 260 university.csi text 195 320 A university /text 150 335 [ Thanks to: /text 150 345 jasper@wulfrun.demon.co.uk ] lincity-1.13.1/help/windmill.hlp0000644000175000017500000000201307340321770013444 00000000000000text -1 15 Windmills text -1 30 Windmills provide power for residences text -1 40 and farms. They enable the farmer to text -1 50 process food more eficiently and make text -1 60 residences more desirable. text -1 75 Providing power to residences makes the text -1 85 people there use more goods. text -1 95 Low tech windmills do NOT provide power text -1 105 to industries. (Heavy industry text -1 115 can get power from coal, light industry text -1 125 needs 'real' electricity to be text -1 135 'powered', they still work without power text -1 145 at a lower output.) text -1 160 There are two forms of windmills. The text -1 170 first is a low-tech 'wooden' windmill. text -1 180 The second is a 'modern' wind-farm type. icon 130 210 windmill1w.csi icon 230 210 windmill1g.csi text -1 255 The type you get depends on your text -1 265 tech-level when you build it. icon 216 316 windmill1g.csi icon 216 300 powerlldl.csi icon 200 300 powerlhd.csi icon 184 300 powerlhl.csi text -1 360 High tech ones can supply power lines. lincity-1.13.1/icons/0000777000175000017500000000000010073426331011367 500000000000000lincity-1.13.1/icons/blacksmith-button.csi0000644000175000017500000000040007340321770015433 00000000000000ààààààààààààààààààààààààààààààààààààààààààààààààààààààààààààlincity-1.13.1/icons/blacksmith0.csi0000644000175000017500000000200007340321770014200 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444ġÖÖġġġġġġ!!ġġġġġġġġġġġġġġġġġ4ġÖÖġġġġġ !!!ġġġġġġġġġġġġġġġġ4ġÖÖġġġġ!!!!!ġġġġġġġġġġġġġġġ4ġÖÖġġġġ! !!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ!!!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ! !!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ!!!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ! !!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ!!!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ! !!!!!ġġġġġġġ!!!ġġġġ4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!áá ġġÖÖóġóġġġóġóġñġóóġó!!!!á ġġÖÖġóġóġòġóġóġóġóġġóġ!!á ġġÖÖóġóġñġóġóġóġóġóóġġ!òñáá ġġÖÖġóġóġóġòġóġóġòġġóġ!óòñááá ġġÖÖóġóġòġòġġòñòġġóóġġ!óòñááá ġġÖÖġñġóòòġòòġòġġòġġóġ!óòñá ġġÖÖóġóġòġòġòġóġóġóóġ!á ġġÖÖġóġòġóġóġñġóġòġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith1.csi0000644000175000017500000000200007340321770014201 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444ġÖÖġġġġġġ!!ġġġġġġġġġġġġġġġġġ4ġÖÖġġġġġ !!!ġġġġġġġġ ġġ4ġÖÖġġġġ!!!!!ġëëëġġġ ġ4ġÖÖġġġġ! !!!!!ëëîëġġ ġġġ ġ 4ġÖÖġġġ!!!!!!ëëëëġġîġġġîġġġ4ġÖÖġġġ! !!!!!ġġġġġġġġġġġġġġ4ġÖÖġġġ!!!!!!ġġëëġġġġġġġġ4ġÖÖġġġ! !!!!!ëîëîëġġġġĝġ4ġÖÖġġġ!!!!!!ëëëëëġġġĝĝĝġ4ġÖÖġġġ! !!!!!ġġġġġġġ!!!ġġ4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!áá ġġÖÖóġóġġġóġóġñġóóġó!!!!á ġġÖÖġóġóġòġóġóġóġóġġóġ!!á ġġÖÖóġóġñġóġóġóġóġóóġġ!òñáá ġġÖÖġóġóġóġòġóġóġòġġóġ!óòñááá ġġÖÖóġóġêêêêêêñêêġóóġġ!óòñááá ġġÖÖġñġóêêêêêêêêġìġġóġ!óòñá ġġÖÖóġóġêġòġêġóġóìóóġ!á ġġÖÖġóġòêóġóêñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith2.csi0000644000175000017500000000200007340321770014202 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444ġÖÖġġġġġġ!!ġġġġġġġġġġġġġġġġġ4ġÖÖġġġġġ !!!ġġġġġġġġ ġġ4ġÖÖġġġġ!!!!!ġëëëġġġ ġ4ġÖÖġġġġ! !!!!!ëëîëġġ ġġġ ġ 4ġÖÖġġġ!!!!!!ëëëëġġîġġġîġġġ4ġÖÖġġġ! !!!!!ġġġġġġġġġġġ4ġÖÖġġġ!!!!!!ġġëëġġġġġġĝ4ġÖÖġġġ! !!!!!ëîëîëġġġġĝĝ4ġÖÖġġġ!!!!!!ëëëëëġġġuuĝ4ġÖÖġġġ! !!!!!ġġġġġġġ!!!ġ4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!uáá ġġÖÖóġóġġġóġóġñġóóġó!!!!uu7áó ġġÖÖġóġóġòġóġóêêġóġġuu!!u7áó ġġÖÖóġóġñġêêêêêêġġóóġu!uòñááó ġġÖÖġóġóġêêêêêġġġòġġóġ!óòñáááó ġġÖÖóġóġêêêġêġġġġġóóġġ!óòñáâáó ġġÖÖġñġóêêêġêêġġġìġġóġ!óòñáó ġġÖÖóġóġêġòġġġġġóìóóġ!óóóáó ġġÖÖġóġòêóġóġñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith3.csi0000644000175000017500000000200007340321770014203 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444ġÖÖġġġġġġ!!ġġġġġġġġġġġġġġġġġ4ġÖÖġġġġġ !!!ġġġġġġġġ ġġ4ġÖÖġġġġ!!!!!ġëëëġġġ ġêêÖÖġġġġ! !!!!!ëëîëġġ ġġġ ġ êêÖÖġġġ!!!!!!ëëëëġġîġġġîġêêâêÖÖġġġ! !!!!!ġġġġġġġġġġġêââêÖÖġġġ!!!!!!ġġëëġġġġġġê=â=êġÖÖġġġ! !!!!!ëîëîëġġġġêââĝê4ġÖÖġġġ!!!!!!ëëëëëġġġê=â=ê4ġÖÖġġġ! !!!!!ġġġġġġġ!!!ê4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!âáá ġġÖÖóġóġġġóġóġñġóóġó!!!!<<âáġ ġġÖÖġóġóġòġóġóêêġóġġââ!!<ââġ ġġÖÖóġóġñġêêêêêêġġóóġâ!uââáġáġ ġġÖÖġóġóġêêêêêġġġòġâóġ!âòñááġáġ ġġÖÖóġóġêêêġêġġġġġóóġġ!óòâááġâġ ġġÖÖġñġóêêêġêêġġġìġġóġ!óòñġġġáġ ġġÖÖóġóġêġòġġġġġóìóóġ!ġâġġáġ ġġÖÖġóġòêóġóġñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith4.csi0000644000175000017500000000200007340321770014204 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ4444444444444Öġġġġġġ!!ġġġġġġġġġġġġġġġġêêÖġġġġġ !!!ġġġġġġġġ êêêÖġġġġ!!!!!ġëëëġġġ êêêÖġġġġ! !!!!!ëëîëġġ ġġê ââêÖġġġ!!!!!!ëëëëġġîġêââ=âêÖġġġ! !!!!!ġġġġġġġġêâââââêÖġġġ!!!!!!ġġëëġġġġġêâ=â=êêÖġġġ! !!!!!ëîëîëġġġêââââêêêÖġġġ!!!!!!ëëëëëġġġê=â=êÖġġġ! !!!!!ġġġġġġġ!!!ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!â ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! âġÖÖġġġóġñġóġóġóġóóġ!!!!!ââááâ ġġÖÖóġóġġġóġóġñġóóġó!!!!<<âáĝ ġâÖÖġóġóġòġóġóêêġóġâââ!!<ââáâ ġġÖÖóġóġñġêêêêêêġġóâââ!uââáġáĝ âġÖÖġóġóġêêêêêġġġòġġââ!ââñááġâĝ ġġÖÖóġóġêêêġêġġġġġóóġġ!âòòááġáĝ ġġÖÖġñġóêêêġêêġġġìġġóġ!óòñġâġáĝ ġġÖÖóġóġêġòġġġġġóìóóġ!âĝĝĝĝâĝ ġġÖÖġóġòêóġóġñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith5.csi0000644000175000017500000000200007340321770014205 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444Öġġġġġġ!!ġġġġġġġġġġġġġġġġ4êêÖġġġġġ !!!ġġġġġġġġ êÖġġġġ!!!!!ġëëëġġġ êêÖġġġġ! !!!!!ëëîëġġ ġġê âêÖġġġ!!!!!!ëëëëġġîġââêÖġġġ! !!!!!ġġġġġġġġêâââêÖġġġ!!!!!!ġġëëġġġġġêââêêÖġġġ! !!!!!ëîëîëġġġêââêÖġġġ!!!!!!ëëëëëġġġê=âêÖġġġ! !!!!!ġġġġġġġ!!!4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!âñáá÷ ġġÖÖóġóġġġóġóġñġóóġó!!!!<<âá÷ ġġÖÖġóġóġòġóġóġñġóġġââ!!<âñá÷ ġġÖÖóġóġñġñġñġñġġġóġââ!uâñáġá÷ ġġÖÖġóġóġñġñġñġñġòġġġâ!âññááġá÷ ġġÖÖóġóġêêêêêêġêêġóóġġ!ñòòááġá÷ ġġÖÖġñġóêêêêêêêêġìġġóġ!óòñġġġá÷ ġġÖÖóġóġêġòġêġġġóìóóġ!÷÷÷÷÷á÷ ġġÖÖġóġòêóġóêñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blacksmith6.csi0000644000175000017500000000200007340321770014206 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġ44444444444444ġÖÖġġġġġġ!!ġġġġġġġġġġġġġġġġġ4ġÖÖġġġġġ !!!ġġġġġġġġ ġ4ġÖÖġġġġ!!!!!ġëëëġġġ ġ ġ4ġÖÖġġġġ! !!!!!ëëîëġġ ġġġ ÖÖġġġ!!!!!!ëëëëġġîġġġ ĝĝĝêÖÖġġġ! !!!!!ġġġġġġġġġġĝĝÖÖġġġ!!!!!!ġġëëġġġġġêĝêêÖÖġġġ! !!!!!ëîëîëġġġêĝĝêÖÖġġġ!!!!!!ëëëëëġġġêĝêêêġ4ġÖÖġġġ! !!!!!ġġġġġġġ!!!ġġ4ġÖÖġġġ! !!!!ġġġġġġ!!!!ġġġġ4ġÖÖġġġ!! !!! !!ġġġġġ!!!!ġġġġġ4ġÖÖġġġ !!! !! !ġġġġ!!!!ġġġġġġ4ġÖÖġġġ !!!! !!!! óġġ!!!!!!!!!! ġġÖÖġġġ !!!! !!!! ġġ!!!!!!! ġġÖÖġġġóġñġóġóġóġóóġ!!!!!âñááô ġġÖÖóġóġġġóġóġñġóóġó!!!!<<ġáô ġġÖÖġóġóġòġóġóġñġóġġġâ!!<âñáô ġġÖÖóġóġñġñġñġñġġġóġġâ!uġñáġáô ġġÖÖġóġóġñġñġñġñġòġġġġ!âññááġáô ġġÖÖóġóġêêêêêêġêêġóóġġ!ñòòááġáô ġġÖÖġñġóêêêêêêêêġìġġóġ!óòñġġġáô ġġÖÖóġóġêġòġêġġġóìóóġ!ôôôôôáô ġġÖÖġóġòêóġóêñġóġìġġ!! ġġÖÖóġóġñġóġóġòġñġóġ!!!!!!!!!! ġġġÖÖġóġóġóġñġóġóġóġġ!!!!!!!!! ġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/blank.csi0000644000175000017500000000040007340321770013070 00000000000000lincity-1.13.1/icons/buldoze-button.csi0000644000175000017500000000040007340321770014756 00000000000000óóóóóóóóóóóóóóóóóóóóóólincity-1.13.1/icons/burnt_land.csi0000644000175000017500000000040007340321770014131 00000000000000#####################ĝĝĝòöĝĝĝ#######ĝĝòòòöëëëë######ĝòì;ĝ;ëë#####ĝĝò;ĝĝëë#####ĝòòìòòëë####ĝĝòòòòòëëë####ĝòòòòòìòöëìì###ĝĝĝ:::òòëëëìì###ĝĝĝ;::::ëë;ìì###;;;;5::ì;;ììì####;;5ìììì;;;ì#####ìì;;;;;ì;;ìì######ììì###;;ì##############ìì###################lincity-1.13.1/icons/checked_box.csi0000644000175000017500000000040007340321770014237 00000000000000ñññññññññññññññññññññññññññöññûûûûûûûûûûööññûûûûûûûööññûûûûûûööññûûûûûûööññûûûûûûûööññûûûûûûûööññûûûûûûööññûûûûûûööññûûûûûûûööññûûûûûûûûûûööñööööööööööööööööööööööööööölincity-1.13.1/icons/coalmine-button.csi0000644000175000017500000000040007340321770015101 00000000000000rrrrïïrïrìïïrììïrììììrìììììrìì òòò ò òòò ò ò ò ò òòò ò ò ò ò ò lincity-1.13.1/icons/coalmine-empty.csi0000644000175000017500000001000007340321771014722 00000000000000ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏyyyyyyyÏÏ????????ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""""""""""" ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ô ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"ï˙ôâô ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ï˙˙ôâô˙ ÏÏ?;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""ïïï˙ôâô˙˙ï ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ïôëâôôïïï ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""ôëâôô ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ôëâôô ÏÏ;;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"ôëâôô ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"úïëâôúú ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"úúïôâôúú ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"úïôâôúú ÏÏ;;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏyâ ÏÏ;;;;1666ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏyúúúúâúúúú ÏÏ;;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏ]VVVPÏÏÏÏÏ"ú÷÷÷â÷÷÷ú ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏ]]VVVPÏÏÏÏÏyú÷óóâëó÷ú ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[Ï]V]VVVPÏÏÏÏÏ"ú÷óïâëó÷ú ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[VV]VóVPÏÏÏÏÏyú÷óïëïó÷ú ÍÍ;;;11666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ]V V]V÷óPÏÏÏÏÏ"ú÷óëóóó÷ú ÍÍ;;111166ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÏÏ]VVVVPPP÷óÏÏÏÏÏyú÷÷÷÷÷÷÷ú ÍÍ11111116ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÏ]VVVPVVVP÷óÏÏÏÏ"úúúúúúúúú ÍÍÏÏÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍ]VVPVVVPÏÏ÷óÏÏÏy ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ]VPVVVPÏÏÏÏ÷óÏÏ" ÍÍÍÏÏÏ#####ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ]PVVVPÍÍÏÏÏÏ÷óÏ ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ]PPPPÍÍÍÍÏÏÏÏ÷ó ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏ###ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏ#ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏÏ÷óÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏÏ÷ó ÍÏÏÏÏÏÏïïïïïïïïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏÏÍÍÏÏÏÏ÷ó ÍÏÏÏÏÏïïïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏÏ!÷ó ÍÍÏÏÏï!:!:!:ïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏ!!÷ó:: ÍÍ!!!ïïïïïïïïïïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏ!!:÷ó: ÍÍÏÏÏïï:!:ï:!:ïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍ!:÷ó: ÍÍÏÏ!ïïïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍ:::: ÍÍ!!ÏÏïï:ï:!:ïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏÏÏï!ïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏÏ!ïïï:!:ï:ïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏ!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏ!!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍ!ÏÏÏÏÏÏÏÏïïïïÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/coalmine-full.csi0000644000175000017500000001000007340321771014526 00000000000000ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîÏÏÏÏîîîîîîîÏìììÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîìÏÏÏÏîîîîîîììéììÏÏÏÏyyyyyyyÏÏ????????ÍÏÏÏîîîîîîéìììéîéìéÏîîîîîîîîìîììéÏÏÏ""""""""""" ÏÏ??;;1666ÍÏÏîîîîîììììéìîìììéÏîîîîîîîéììììÏÏÏÏy"ô ÏÏ??;;1666ÍÏÏîîîéììììééîîìììéÏîîîîîîéìììììéÏÏÏ"ï˙ôâô ÏÏ??;;1666ÍÏÏîììììììììéîîìììéîîîîîéìììììëìéÏÏÏy"ï˙˙ôâô˙ ÏÏ?;;;16ż6ÍÏÏîîîîììììéÍììììééîîìéîìììììëëëéÏÏÏ""ïïï˙ôâô˙˙ï ÏÏ;;;;1666ÍÏÏîîîéìììéÍÍÍìììéìììììììììììëìëéÏÏÏy"ïôëâôôïïï ĝĝ;;;;1666ÍÏÏÏÏîîìììéÍÍÍÏéééìììììììììëëëëëéÏÏÏ""ôëâôô ĝĝ;;;;1666ÍÏÏÏîîìììéééÍÏV[ÏÏììììììììëëëìëééÏÏÏy"ôëâôô ÏÏ;;;;16ż6ÍÏÏÏîéììììéÍÍÏÏV[ÏééìëëëëëëëëëëééÏÏÏ"ôëâôô ÏÏ;;;;1666ÍÏÏîîîììììéÍÍÏéÏV[ÏéééììëëëìéééééÏÏÏy"úïëâôúú ÏÏ;;;;1666ÍÏÏÏîîìééééÍÏÏÏÏÏV[ÏÏééééééééééÏÏÏÏÏ"úúïôâôúú ÏÏ;;;;1666ÍÏÏÏéééééééÍÏÏéÏÏÏV[ÏÏÏ!ÏÏéééÏÏÏÏÏÏÏy"úïôâôúú ÏÏ;;;;16ż6ÍÏÏÏÏîîîîÏÏÏÏÏÏÏÏÏÏV[ÏÏ!ÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÏÏÏÏÏîîîììÍÍÏÏéÏÏÏÏÏV[Ï!!!ÏÏÏÏÏÏÏÏÏÏyâ ÏÏ;;;;1666ÏÏÏÏÏîîîìÍÍÍÏÏÏÏÏÏÏÏÏV[ÏÏÏ!!ÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÍÏÏÏÏîìééîìÏÏÏéÏÏÏÏÏÏÏV[ÏÏÏ!ÏÏÏÏÏÏÏÏyúúúúâúúúú ÏÏ;;;;16ż6ÍÏÏÏÏÏééìììììÏÏÏÏÏÏÏÏÏÏV[Ï]VVVPÏÏÏÏÏ"ú÷÷÷â÷÷÷ú ÏÏ;;;;1666ÍÏÏÏÏééîìììììééÏÏÏÏÏÏÏÏÏV]]VVVPÏÏÏÏÏyú÷óóâëó÷ú ĝĝ;;;;1666ÍÏÏÏÏîîîììììééÏìììÏÏÏÏÏÏ]V]VVVP!ÏÏÏÏ"ú÷óïâëó÷ú ĝĝ;;;;1666ÍÏÏÏîîîîìììéééìììéÏÏÏÏV[VV]VóVPÏ!ÏÏÏyú÷óïëïó÷ú ÍÍ;;;11666ÍÏÏÏîîîììééìééìììéÏÏÏÏ]V V]V÷óPÏ!!ÏÏ"ú÷óëóóó÷ú ÍÍ;;111166ÍÏÏÏîîîìééééééìììéÍÏ#]VVVVPPP÷óÏÏÏÏÏyú÷÷÷÷÷÷÷ú ÍÍ11111116ÍÏÏÏÏîîìéééééìéééé#ÍÏ]VVVPVVVP÷óÏÏÏÏ"úúúúúúúúú ÍÍÏÏÍÍÍÍÍÍÍÏÏÏÏîéééééÍÍÍééééÏÏ#]VVPVVVPÏÏ÷óÏÏÏy ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏìÍìììéÍÍÍ#ÏÏ]VPVVVPÏÏÏÏ÷óÏÏ" ÍÍÍÏÏÏ#####ÏÏÏÏÏÏÏììììììéÍÍÍÏÏ#]PVVVPÍÍÏÏÏÏ÷óÏ ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏìììììééÍÏÏ#ÏÏ]PPPP#ÍÍÍÏÏÏÏ÷ó ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏééééÍÍÏÏÏÏ#Í#Í#ÍÍÍÍÍÍÏÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏ###ÏÏÏÏÏîîîîîîÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏ#ÏÏÏÏÏîîîìîîîîîîÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏîîîîìîîîìîîìÏÏÏÏÏÏîÍÍÍÍÍÏÏÏÏÏ÷óÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîéììîîîìîììÏÏÏÏÏîîîîÍÍÍÍÏÏÏÏÏ÷ó ÍÏÏÏÏÏÏïïïïïïïïvvÏÏîìììîîîéììììÏÏììîîÏÏÏÍÍÏÏÏÏ÷ó ÍÏÏÏÏÏïïïïïïïïïïvÏÏîîìììéîîîîììììéÏÏìîîîììÏÏÏÏÍÍÏÏÏ!÷ó ÍÍÏÏÏï!:!:!:ïïïïvÏÏìììéîîîéìììììéììîîìììéÍÏÏÏÏÍÍÏÏ!!÷ó:: ÍÍ!!!ïïïïïïïïïïvvÏÏìéìîîîîîììììééìîîîîìéìéÍÏÏÏÏÏÍÍÏ!!:÷ó: ÍÍÏÏÏïï:!:ï:!:ïvÏÏÏÏîîîîîéìììììéÍìîîìîìéìììÍÍÏÏÏÏÏÍÍ!:÷ó: ÍÍÏÏ!ïïïïïïïïïïvÏÏÏÏîîîîéîìììììééÍìîîîîììììéÍÍÍÍÏÏÏÏÍ:::: ÍÍ!!ÏÏïï:ï:!:ïïvÏÏÏÏÏéîìììììììéÍÍÍìîìîìîéìììéÍÍÍÍÏÏÏÏÏ ÍÍÏÏÏÏï!ïïïïïïïïvÏÏÏéééììììììééÍÍÍìîîîîìììììéÍÍÍÍÍÏÏÏÏ ÍÍÏÏÏ!ïïï:!:ï:ïvvÏÏÏÏÏÏìììììééÍÍÍÍìììéîéìììééÍÍÍÍÍÏÏÏÏ ÍÍÏÏ!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏìììéééÍÍÍÍÏììììééììéééÍÍÍÍÍÍÏÏÏ ÍÍÏ!!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÍÍéÍÍÍÍÍÍÏÏîîìììììééééÍÍÍÍÍÍÏÏÏÍÍÍÍÍÍÍÍÍÍÍ!ÏÏÏÏÏÏÏÏïïïïÏÏÏÏÏÏÏÏÏÍÍÍÏÍÍÍÍÍÍîîîîììéééééÍÍÍÍÍÍÍÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÏÏÏÏÏÏÍÍéééÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîÍÍÍÍÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏîÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîîîîîÏîîÏÏÏÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏîîîîîîÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîîéîìîÏîîîîîîÏÍÍÍÏÏîîÏÏÏÏÏÏÏîîîîîîîîîîÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîîìììîîîîîîîîîîîîîîîîîÏÏÏÏîîîîîîîéééììÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîîìììììîîîîîîîîîîîîéééìÏîîîîîîîîééìììììÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîéìîìììîîîîéééîîîéééìììîîîîîîéééìììììììÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîéîììììììîîîìéìéìééììììììîééééééììììììéééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîììììììììîîééììììììììììììîéééìììììììììéééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîÏîîéîîìîîìììììîììììììììììììììììììììììììììììééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîéîîîìììîìììììììììììììììììììéééìììììììììììììééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏììììììììììììééììÏéééìììììììÏéééÏììììììììììììééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏìééééììéééééîéééÏÏÏééééééééééÏÏÏéééìììììììììéÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏééééÏÏÏééÏÏÏÏÏÏÏÏÏéÏÏÏÏÏÏÏÏÏÏéééééééééééÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏìÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/coalmine-low.csi0000644000175000017500000001000007340321771014365 00000000000000ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏyyyyyyyÏÏ????????ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""""""""""" ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ô ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"ï˙ôâô ÏÏ??;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ï˙˙ôâô˙ ÏÏ?;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""ïïï˙ôâô˙˙ï ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ïôëâôôïïï ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ""ôëâôô ĝĝ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"ôëâôô ÏÏ;;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"ôëâôô ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏéÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"úïëâôúú ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"úúïôâôúú ÏÏ;;;;1666ÍÏÏÏÏÏÏÏÏÏÏÏÏÏéÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏy"úïôâôúú ÏÏ;;;;16ż6ÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÏÏÏÏÏÏÏÏÏÏÏÏÏÏéÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏÏyâ ÏÏ;;;;1666ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÍÏÏÏÏÏÏîîîìÏÏÏéÏÏÏÏÏÏÏV[ÏÏÏÏÏÏÏÏÏÏÏÏyúúúúâúúúú ÏÏ;;;;16ż6ÍÏÏÏÏÏîîìììììÏÏÏÏÏÏÏÏÏÏV[Ï]VVVPÏÏÏÏÏ"ú÷÷÷â÷÷÷ú ÏÏ;;;;1666ÍÏÏÏÏîîîìììììééÏÏÏÏÏÏÏÏÏV]]VVVPÏÏÏÏÏyú÷óóâëó÷ú ĝĝ;;;;1666ÍÏÏÏÏîîîììììééÏìììÏÏÏÏÏÏ]V]VVVPÏÏÏÏÏ"ú÷óïâëó÷ú ĝĝ;;;;1666ÍÏÏÏîîîîìììéééìììéÏÏÏÏV[VV]VóVPÏÏÏÏÏyú÷óïëïó÷ú ÍÍ;;;11666ÍÏÏÏîîîììééìééìììéÏÏÏÏ]V V]V÷óPÏÏÏÏÏ"ú÷óëóóó÷ú ÍÍ;;111166ÍÏÏÏîîîìééééééìììéÍÏÏ]VVVVPPP÷óÏÏÏÏÏyú÷÷÷÷÷÷÷ú ÍÍ11111116ÍÏÏÏÏîîìéééééìééééÏÍÏ]VVVPVVVP÷óÏÏÏÏ"úúúúúúúúú ÍÍÏÏÍÍÍÍÍÍÍÏÏÏÏîéééééÏÏÏééééÏÏÍ]VVPVVVPÏÏ÷óÏÏÏy ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏìÏìììéÏÏÏÏÏÏ]VPVVVPÏÏÏÏ÷óÏÏ" ÍÍÍÏÏÏ#####ÏÏÏÏÏÏÏììììììéÏÏÏÏÏÏ]PVVVPÍÍÏÏÏÏ÷óÏ ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏìììììééÏÏÏÏÏÏ]PPPPÍÍÍÍÏÏÏÏ÷ó ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏééééÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏ###ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏ#ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏÏ÷óÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏÏ÷ó ÍÏÏÏÏÏÏïïïïïïïïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏÏÍÍÏÏÏÏ÷ó ÍÏÏÏÏÏïïïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏÏ!÷ó ÍÍÏÏÏï!:!:!:ïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏÏ!!÷ó:: ÍÍ!!!ïïïïïïïïïïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÏ!!:÷ó: ÍÍÏÏÏïï:!:ï:!:ïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍ!:÷ó: ÍÍÏÏ!ïïïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍ:::: ÍÍ!!ÏÏïï:ï:!:ïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏÏÏï!ïïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏÏ!ïïï:!:ï:ïvvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏÏ!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÍÍÏ!!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍ!ÏÏÏÏÏÏÏÏïïïïÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/coalmine-med.csi0000644000175000017500000001000007340321773014333 00000000000000ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîîîîîÏÏÏÏîîîîîîîÏìììÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝÏÏÏÏÏÏÏÏÏÏÏîîîîîîîîîìÏÏÏÏîîîîîîììéììÏÏÏÏyyyyyyyÏÏ????????ÍÏÏÏîîîîîîéìììéîéìéÏîîîîîîîîìîììéÏÏÏ""""""""""" ÏÏ??;;1666ÍÏÏîîîîîììììéìîìììéÏîîîîîîîéììììÏÏÏÏy"ô ÏÏ??;;1666ÍÏÏîîîéììììééîîìììéÏîîîîîîéìììììéÏÏÏ"ï˙ôâô ÏÏ??;;1666ÍÏÏîììììììììéîîìììéîîîîîéìììììëìéÏÏÏy"ï˙˙ôâô˙ ÏÏ?;;;16ż6ÍÏÏîîîîììììéÍììììééîîìéîìììììëëëéÏÏÏ""ïïï˙ôâô˙˙ï ÏÏ;;;;1666ÍÏÏîîîéìììéÍÍÍìììéìììììììììììëìëéÏÏÏy"ïôëâôôïïï ĝĝ;;;;1666ÍÏÏÏÏîîìììéÍÍÍÏéééìììììììììëëëëëéÏÏÏ""ôëâôô ĝĝ;;;;1666ÍÏÏÏîîìììéééÍÏV[ÏÏììììììììëëëìëééÏÏÏy"ôëâôô ÏÏ;;;;16ż6ÍÏÏÏîéììììéÍÍÏÏV[ÏééìëëëëëëëëëëééÏÏÏ"ôëâôô ÏÏ;;;;1666ÍÏÏîîîììììéÍÍÏéÏV[ÏéééììëëëìéééééÏÏÏy"úïëâôúú ÏÏ;;;;1666ÍÏÏÏîîìééééÍÏÏÏÏÏV[ÏÏééééééééééÏÏÏÏÏ"úúïôâôúú ÏÏ;;;;1666ÍÏÏÏéééééééÍÏÏéÏÏÏV[ÏÏÏ!ÏÏéééÏÏÏÏÏÏÏy"úïôâôúú ÏÏ;;;;16ż6ÍÏÏÏÏîîîîÏÏÏÏÏÏÏÏÏÏV[ÏÏ!ÏÏÏÏÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÏÏÏÏÏîîîììÍÍÏÏéÏÏÏÏÏV[Ï!!!ÏÏÏÏÏÏÏÏÏÏyâ ÏÏ;;;;1666ÏÏÏÏÏîîîìÍÍÍÏÏÏÏÏÏÏÏÏV[ÏÏÏ!!ÏÏÏÏÏÏÏÏ"â ÏÏ;;;;1666ÍÏÏÏÏîìééîìÏÏÏéÏÏÏÏÏÏÏV[ÏÏÏ!ÏÏÏÏÏÏÏÏyúúúúâúúúú ÏÏ;;;;16ż6ÍÏÏÏÏÏééìììììÏÏÏÏÏÏÏÏÏÏV[Ï]VVVPÏÏÏÏÏ"ú÷÷÷â÷÷÷ú ÏÏ;;;;1666ÍÏÏÏÏééîìììììééÏÏÏÏÏÏÏÏÏV]]VVVPÏÏÏÏÏyú÷óóâëó÷ú ĝĝ;;;;1666ÍÏÏÏÏîîîììììééÏìììÏÏÏÏÏÏ]V]VVVP!ÏÏÏÏ"ú÷óïâëó÷ú ĝĝ;;;;1666ÍÏÏÏîîîîìììéééìììéÏÏÏÏV[VV]VóVPÏ!ÏÏÏyú÷óïëïó÷ú ÍÍ;;;11666ÍÏÏÏîîîììééìééìììéÏÏÏÏ]V V]V÷óPÏ!!ÏÏ"ú÷óëóóó÷ú ÍÍ;;111166ÍÏÏÏîîîìééééééìììéÍÏ#]VVVVPPP÷óÏÏÏÏÏyú÷÷÷÷÷÷÷ú ÍÍ11111116ÍÏÏÏÏîîìéééééìéééé#ÍÏ]VVVPVVVP÷óÏÏÏÏ"úúúúúúúúú ÍÍÏÏÍÍÍÍÍÍÍÏÏÏÏîéééééÍÍÍééééÏÏ#]VVPVVVPÏÏ÷óÏÏÏy ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏìÍìììéÍÍÍ#ÏÏ]VPVVVPÏÏÏÏ÷óÏÏ" ÍÍÍÏÏÏ#####ÏÏÏÏÏÏÏììììììéÍÍÍÏÏ#]PVVVPÍÍÏÏÏÏ÷óÏ ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏìììììééÍÏÏ#ÏÏ]PPPP#ÍÍÍÏÏÏÏ÷ó ÍÍÍÍÏÏÏ####ÏÏÏÏÏÏÏÏÏééééÍÍÏÏÏÏ#Í#Í#ÍÍÍÍÍÍÏÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏ###ÏÏÏÏÏîîîîîîÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏ÷óÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏ#ÏÏÏÏÏîîîìîîîîîîÏÏÏÏÏÏÏÍÍÍÍÍÍÍÏÏÏÏ÷óÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏîîîîìîîîìîîìÏÏÏÏÏÏîÍÍÍÍÍÏÏÏÏÏ÷óÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏîîéììîîîìîììÏÏÏÏÏîîîîÍÍÍÍÏÏÏÏÏ÷ó ÍÏÏÏÏÏÏïïïïïïïïvvÏÏîìììîîîéììììÏÏììîîÏÏÏÍÍÏÏÏÏ÷ó ÍÏÏÏÏÏïïïïïïïïïïvÏÏîîìììéîîîîììììéÏÏìîîîììÏÏÏÏÍÍÏÏÏ!÷ó ÍÍÏÏÏï!:!:!:ïïïïvÏÏìììéîîîéìììììéììîîìììéÍÏÏÏÏÍÍÏÏ!!÷ó:: ÍÍ!!!ïïïïïïïïïïvvÏÏìéìîîîîîììììééìîîîîìéìéÍÏÏÏÏÏÍÍÏ!!:÷ó: ÍÍÏÏÏïï:!:ï:!:ïvÏÏÏÏîîîîîéìììììéÍìîîìîìéìììÍÍÏÏÏÏÏÍÍ!:÷ó: ÍÍÏÏ!ïïïïïïïïïïvÏÏÏÏîîîîéîìììììééÍìîîîîììììéÍÍÍÍÏÏÏÏÍ:::: ÍÍ!!ÏÏïï:ï:!:ïïvÏÏÏÏÏéîìììììììéÍÍÍìîìîìîéìììéÍÍÍÍÏÏÏÏÏ ÍÍÏÏÏÏï!ïïïïïïïïvÏÏÏéééììììììééÍÍÍìîîîîìììììéÍÍÍÍÍÏÏÏÏ ÍÍÏÏÏ!ïïï:!:ï:ïvvÏÏÏÏÏÏìììììééÍÍÍÍìììéîéìììééÍÍÍÍÍÏÏÏÏ ÍÍÏÏ!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏìììéééÍÍÍÍÏììììééììéééÍÍÍÍÍÍÏÏÏ ÍÍÏ!!ÏÏÏïïïïïïïvÏÏÏÏÏÏÏÍÍéÍÍÍÍÍÍÏÏîîìììììééééÍÍÍÍÍÍÏÏÏÍÍÍÍÍÍÍÍÍÍÍ!ÏÏÏÏÏÏÏÏïïïïÏÏÏÏÏÏÏÏÏÍÍÍÏÍÍÍÍÍÍîîîîììéééééÍÍÍÍÍÍÍÏÏÏÏÏÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÏÏÏÏÏÏÍÍéééÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÍÍÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÍÍÍÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/commune-button.csi0000644000175000017500000000040007340321773014760 00000000000000 TTOOOTTOOOTTPOOTTTTTTTPPPPOOOTTTTTTTPPPPPOOOOTTTTTTTPPPPPOOlincity-1.13.1/icons/commune.csi0000644000175000017500000001000007340321773013444 00000000000000RRRRRRRRRRRRRRRRllllRRRRROOORRRROORRRRROOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRRRROOOOOOROMSOOOROOSOROORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRRROSMOSMOOOOOOOOOOOMOOMORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRROOMOSOOOOMSOOMOOOSOOOSOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllROOOOOOMSOOMOSMOOOMSOMORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRRMMOOOOMOOOOOOOOSOOOOORRRRRRRRRRRRRRRRRRRRġġġíRRRRRlllllRROOOOOOOOOOOOOOOOSORRRRRRRRRRRRRRRRRRRRġġġRRRRRRRlllllRROOOOOOOOOOOOOOOOORRRRRRRRRRRRRRRRRRíRíRRRRRRRRlllllRROOOOOOOOOOOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRkRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRRRRRRkRRRRRRRkkkRRRRRRRRRRRRíġġġRRRRRRRRRRRlllllRRRRkkkRRRRRRkkkRRRRRRRRRRRRRġġġRRRRRRRRRRRRlllllRRROkkRRRRRRRkkkRRRRRRRRRRRRRRíRíRRRRRRRRRRRRRlllllRRROOkORRRRRRRROOOOOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRROOOOOOOOOORRRRRRRRROOOOOOORRRRRRRRRRRhhhhhRRRRRRRRRRRRRRRlllllRRROOOOOOOORRRRRRRRRROOOOOORRRRRRRRRRhhhhhhRRRRRRRRRRRRRRRRlllllRRROOOOOOORRRRRRRRRRROOORRRRRRRRRhhRhRRhRRRRRRRRRRRRRRRRRlllllRRROOOOOORRRRRRRRRRRROORRRRRRRRRhRRhRRhRRRRRRRRRRRRRRRRRRlllllRRROOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRlllllRRROOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRġġġíRRRRRRRRRRRlllllRRROORRRRRRRRRRRRRRRRhhhhRRRRRRRRRRRRġġġRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRRRRRRhhhhhRRRRRRhhRRRíRíRRRRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRhRRhhhRRhhhhRRRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRkRRRRhRRhRhRRhhhhRRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRkkkRRRRRRRRRRRhRRhRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRkkkRRRRRRRRRRRhRRhRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRRRkkkRRRRRRRRRRRRRRRRRRRRhhhhhRRRRRRRlllllRRRRRRRRRRRRRRRRRROOOOOOOOORRRRRRRRRRRRRRRRRRRhhhhhhRRRRRRlllllRRRRRRRRRRRRRRRRRRROOOOOOOOORRRRRRRRRRRRRRRRRRhRhRRhRRRRRRllllRRRRRRRRRRRRRRRRRRRROOOOOOOOORRRRRRRRRRRRRRRRRRRhRRhRRRRRRllllRRRRRRRRRRRRRRRRRRRROOOOOOOORRRRRRRNNNRRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRRRRROOOOOORRRRRNNNNNRRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRRRROOOOORRRRRNNNNNNRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRRRRROOOORRRRRNNNNNNRRRRRRRRRRRRRRRRRRlllllRRRRRRRRRRRRRRRRRRRROOORRRNNNNNNNNNRRRRRRRRRRRRRRRRRllllllRRRRRRRRRRRRRRRRRRRROORRRNNNNNNNNNRRRRRRRRRRRRRRRRRRllllllRRRRRRRRRRRRRRRRRRRRRRNNNNNNNNNRRRRRRRRRRRRRRRRRRRllllllRRRRRkRRRRRRRRRRRRRRRNNNNNNNNNRRRRRRRRRRRRRRRRRRRRllllllRRRRkkkRRRRRRRRRRRRRRNNNNNNNNNRRRRRRíġġġRRRRRRRRRRRllllllRRRkkkRRRRRRRRRRRRRRRRNNjjNNNRRRRRRRġġġRRRRRRRRRRRRllllllRRRkkkRRRRRRRRRRRRRRRRRRRjjRRRRRRRRRRíRíRRRRRRRRRRRRRllllllRROOOOOOOOOORRRRRRRRRRRRRRRRRRjjRRRRRRRRRRRRRRRRRRRRRRRRRRRllllllRROOOOOOOOORRRRRRRRRRRRRRRRRRjjRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllllllkkkkkkkkllllllRRRRRlRRRRlROORlRRRRlRRRRlRRRRlRRRRlRRRRlRlllillllikkkkikkllilllllRRRlRRRRlRROOlRRRRlRRRRlRRRRlRRRRlRRRRlRRllillllilkkkikkllillllllRRlRRRRlRRROlOORRlRRRRlRRRRlRRRRlRRRRlRRRlillllillkkikkklillllllRRRRRRRRRROOOOOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRROOOOORRRllllllRRRRRRRRROOOOOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRROOOORRRRlllllRRRRRRRRRROOOOOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRROORRRRRRllllRRRRRRRRRRRRROOOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRRRROOORRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRllllRRRllllllllllllllllRRRRRRRRllllRRRRllllllllllllllllRRRRRRRllllRRRRRllllllllllllllllRRRRRRllllRRRRRRllllllllllllllllRRRRRllllRRRRRRRllllllllllllllllRRRRllllRRRRRRRRllllllllllllllllRRRllllRRRRRRRRRllllllllllllllllRRllllRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRllllRlincity-1.13.1/icons/commune1.csi0000644000175000017500000001000007340321773013525 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLNNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRKKKKKKNġNNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRRjġġKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRRjġġġRRġġNġNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPRġġRRRRRRġġRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùġRRRR÷÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭ÷RRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷÷lllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġġRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune10.csi0000644000175000017500000001000007340321773013605 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRġġKLLLLġġNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRġġġKKKNġġNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRġġKKKKNNġġNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRRġġPPRRRġNġNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPRġġġġRRRRġġRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPRùùġRRRRR÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭùRRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRR÷RllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷RlllllRRlllllRġġRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRRġġRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġġRRRRRRRRġġġġRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRùġġRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ŭ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune11.csi0000644000175000017500000001000007340321773013606 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMLMMLPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLMMMMMJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKLLMMMOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKġġKKLLLMġġOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKġġKKKLLLMġġNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRġġKġKKKKġġNNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRġRjġKKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRġjjġPRRRġġNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġġġRRRRRġRRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPP÷ùùRRRRR÷÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭùRRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRġRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRġRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷ġlllllRRlllllRġġRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRR÷÷ú÷ġlllRRRRlllRġġRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRġRRóRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġġRRRRRRRRġġġRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRùġġRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ġ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune12.csi0000644000175000017500000001000007340321773013607 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRóKKLLLL÷÷NOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRóóóóKKKKNóûNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRóûûóKKKNóóûNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRóûûóPRRR÷ûNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġġRRRRRRġ÷RRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPP÷ùùRRRRRR÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭRRRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllùŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRR÷÷÷ġlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRR÷÷ú÷ġlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRġRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġRRRRRRRRRġġġRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpRRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRġùġRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ù1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune13.csi0000644000175000017500000001000007340321774013611 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLNNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRġùùKKKKġġġNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRġġjġġKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRġġġùùRRRġġNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġġRRRRRRġ÷÷RPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPP÷ùùRRRRRR÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭRRRRRRŭù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllùŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRR÷RRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRR÷÷÷ġlllllRRlllllRġRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷ġlllRRRRlllRġġRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġRRRRRRRRRRRRġġRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġRRRRRRRRRġġġġRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRġùġRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ŭ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune14.csi0000644000175000017500000001000007340321774013612 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLLNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRġġKKKKNġNĝOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRġġĝKKKNġġNĝOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRRġĝĝĝRRRġNġġNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġRĝRRRRRġ÷RRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPP÷ùùRRRRRR÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭRRRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllùŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷ġlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġRRRRRRRRRRġRġRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġRRRRRRRRRġġġRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRġùġRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ŭ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune2.csi0000644000175000017500000001000007340321774013527 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLL÷÷NOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRK÷KLLL÷÷NNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRK÷KKKK÷N÷÷OOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRR÷ĝKKKN÷óúNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRR÷ĝPPRRR÷N÷NNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPRġġŭRRRRRġġRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùġRRRR÷÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭ÷RRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllöllRRllöŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRRR÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷ġlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune3.csi0000644000175000017500000001000007340321775013531 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMM÷OPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKLLLLOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRLLL÷N÷NOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRR÷÷KKKN÷÷NOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRR÷÷÷KKKNN÷NNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRġj÷PRRRPġNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġRRRRRRRġRRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùRRRRR÷÷RRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭ÷RRRRR÷ùRRRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPP÷RRl÷ŭRRRRlúúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRR÷÷ġllöllRRllöŭlRRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRRR÷÷÷llllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune4.csi0000644000175000017500000001000007340321775013532 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKK÷KKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKK÷÷÷KLLLL÷÷NOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRR÷÷KKKKK÷÷÷÷OOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRġ÷÷÷KKKN÷ñ÷÷OOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPR÷÷jPPRRR÷÷NNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġRRRRRR÷ġRRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPRùùRRRR÷÷úRRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPñġRRRŭ÷RRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPPġġl÷ŭRRRRlúúŭ÷RRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRR÷ġllöllRRllöñlRRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷ġlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġRRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppŭŭġġRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpRRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune5.csi0000644000175000017500000001000007340321775013533 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRùKKLLLLùNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRùùKKKKKNùNNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRùùùùKKKNùùNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRPùùPPRRRùùNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġRRRRRR÷ġRRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPRùùRRRRR÷ġúRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRRRŭ÷RRRRR÷ùRRRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPPRRl÷ŭRRRRlúúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRR÷÷RllöllRRllöúlRRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRR÷÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġġRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppŭŭġġRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpRRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune6.csi0000644000175000017500000001000007340321776013535 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLM÷OPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRK÷÷LLLL÷÷NOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRR÷ġKKK÷N÷÷NOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPR÷÷jKKKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPR÷÷jPPRRRġNNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġRġġRRô÷ġġRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùRRRRR÷ġRRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRRRŭ÷RRRRR÷ôRRRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPP÷RRl÷ŭRRRRlúúôRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRR÷÷RllöllRRllöúlRRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷ġlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġRRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppŭŭġRRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpRRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune7.csi0000644000175000017500000001000007340321776013536 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLNùNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRùùKKKKùùùNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRRùùKKKNùNNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRRùjùPRRRùNNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPġġġġRRRR÷ġRġRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùRRRRR÷ġRRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRRRŭ÷RRRRR÷ôRRRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPPRRl÷ŭRRRRlúúôRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRR÷÷RllöllRRllöúlRRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷ġlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġRRRRRRRRRRRRRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppŭŭġòRRRRRRRRRRRRRRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpRRRRRRRRRRRRRRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRRRRRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRRRRRRRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRRRRRRRRRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRRRRRRRRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRRRRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune8.csi0000644000175000017500000001000007340321776013537 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLNNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRRRKKKKKKNġNNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRRġjġKKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRġjġPRRRRġġNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPRġġRRRRRRġġRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùġRRRR÷÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭ÷RRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRRR÷÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷÷lllRRRRlllRġġRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRġRRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġġRRRRRRRRġġġġġRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġġRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRùŭùRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ŭ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/commune9.csi0000644000175000017500000001000007340321776013540 00000000000000PPPPPPP ! PPPPPPPPPPPPPPPKPPPPNNPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQ ! QQQQMMQPPPQQQKKKKQQNNNMQQQQQQ O QQQQQQQQQMMKMMQQQMMMMPPQRRRRR ! MMMMMMPPOPRKKKKKKKNNNMMRRRR OLOORRRRRRRKKKMMKMRMMMMMMPPQRRRRR ! LMMMMMOPPOKKKKKKKNMMMMMRRPPOPOPRRRRRRKKKKMKMMMLMMMMMMPPQRRRRR !KLLLLLLOOOPKKKKKKKLMMLLRR PLLPPRRRRRKKKKKKMMKLLLLMMMQPPQRRRRR !KLLLLLLNNOPKKKKKPPPNNNMROLOLOOPNRRRMMKKJKKKKKKKKKLLMRQP !KKKKKKKNNOOMMKKPPPPMMMLNOOOOLOORMMMMLLKJKKKKKKKKKLLLRQP!!!!!!!!!KKKKKKKNMLMLMPOOPPMMMLMNNOOOOLOMMMMMMLKJJKKPKKPOKKKLRQP ! KKKKKKNMMMMMOOOLLMLMMLRNOLOOMMMMMLMMMPJKPPPKPPPPKRRRQPPQRRRRRR ! KKKKPLLLLMOOOOLLLLMMMRNNNOMLLLMMMMMOPJPPPPKOOOPKRRRQPPQRRRRRRR ! KOONKLLLMNNNOKKKLLLRRjNNMKKKLLLMMMOOPOOOKPOOOOORRRQPPQRRRRRRRR !OOLOKKLLLRNNNKKKKKLRjjNNKKKKKLLLLMNOPOOPOPNNOKKRRRQPPQRRRRMMMRPPPNPNRKKKLPNNNNRjKKRRjRNKKRKKKLLLLNNNOOOPNNNKJKJKKRQPPQRRMMMMMRPNPPLLRRPPPPPjjPjjPPPRPPPRġġġKKKKKġġNNOOONKKKKKKKKRRQPPQMMMMMMMPPOLLONRRPPPPPRPPPPRPPPPPPRġġjKKKKNġġNNOOONJKKJKKKKRRQPPMMMMMMMMNPPOPNNRRRRPPPRRRPPRRRPRRPRġjjġPRRRġNNNNNNJJJJJJKKRRRQPPPMMMMLKKKNOOOLNRRRsrpqRRRPPPPPPPPPRġġġġRRRRġRRRPIIIJJJKKMMRRRQPMMLLLKKKJKNNNNLNRRrsrpqpRRPPPPPPRPPġùùġRRRR÷÷ġRRPPIIIJJMMLMMRRQPKLLKKKJKJKJNLNN!RursrpqpRRRPPPPPRRR÷ŭ÷RRRRR÷ù÷RRPPjIIIMMLMMMRRQPKLKKJJJKKKKRRR !sursrpqpPRPPPPPRRRl÷ŭRRRRllúŭRRRRRRRLLLMLMMPPRQPPKKJJJJJJKKRRR !jursrpqpPPPRRRRRRllŭllRRllŭŭ÷RRRRRKKLLMMMMLPPRQPPQIIIIJJJJRRRR !sursrpqpPPPRR÷÷÷RlllllRRlllllRRRRRLKKLMLLLLPPRQPPQRRjIIIIIPRRR !sursrpqpPPPRRR÷ú÷RlllRRRRlllRRRRRRKKLLLLMLMPRRQPPQRjjPIIIPPPRR !jursppqpPPPRRRúŭġġRRRRRRRRRRġġRRRRKKKKKLLLPPRRQPPQRRPPPPPPPPRR !suqqqqqppppppúŭġġġRRRRRRRRġġġġRRRRPKKLKLKLPRRRQPPQRRRRPPPPPPPR !susuqqqqqqqqúŭġpġRRRRRRRRġġŭġRRRRRRjKKKKKKRRRRQPPQQRRRRRPPPPRR !susurrrrrrrrrrsrqRRRRRRRRùŭùRRRRRRjjjRKKKLRRRRQPPQRRRRRRMMMMRR !sjsussssssssssrrqqRRRRRR1ŭ1RRRRRRRRjPPPPPPRRRRQPPQRRRMLMMLMLMR !jjssrrrrrrrrrrrrsssRRRR11111PRRRRRRRPPPPPPRRRRQPPQRRMMMLMMLKKR !jusmmmmmmmmmmmmrssssRRRR111PPRRRRRRRR PPPPRRQPPQRMMLLLLLKKRR !suoooEEoooEEooooooooPPPRRRPPRRRRRR PMMMMQPPQRLLKKKKKKRRR !smmmmmmmmmmmmmmmEoooPPPRRRRRRRRRRR MMMMMQPPQRKKPOPOPOPRR ! #PQOOOOOO NNONNNMMMMLLKQPPQRKOPPNNNNRRR #####################PQONNOOO OOONNNLLMMLLLKQPPQRROONNPPPPPRRRPPPKLLKPKPPPPPPPPPPPPMMMONNNNNQQNONNNMLLLLLLKRQPPQOONNNPPPPPPRRRQQKLKKKKKQQQQQQMQQMMMMMKKMMNNQPPONNNNKKKKKLLKRQPPQRONPPOPOPPPRRMRKKKKKLKKRRRMMMMMMMMOKKKKMMMNPPPONNOKKKKKKKKRRQPQQRNNPPOPPOOOLMMKKKKKKKKJRRRMMMMMMMKKKKKKKQPPPPPNNOOOKKOOOORRRQPPQRPPPPPOOOMMMMLJJKKKJJIRRRMMMMMMMKJJKJKKMQPPPOONNOOOOOOOONRRRQPPQOOOPPOONNNMLMMMMJJJJIOOOOOMMMMMMKKKKKJKPPPPOOO NNNNOOOONNRRRQPPQONOPOPNNMLMMMMLMIJJIONOOOOOMMMMJJJJJJKMPPPPOON NNONNOONNNRRRQPPQRNOOONNMLMMLMLMMIIINOONONNNMMPMMJJJIIJPPPOOPONMNNNNNNNNNNRRRQPPQRNNNNNNKLLMMLLMLLIOOOONONNNMPPMIIIIMMMPOOOOOONMMNNNNNNORRRRRQPPQRRRjjRRKKLLLLKLLKKNONOONNNNMPPM M RNNOOONNNMMMMMMNNRRRRRRQPPQRRRjPPPRKKKKKKLKKMMMMMNNNNMPPPO OO RONNNONNNMMMMMMRRRRRRPPQPPQRRRRRPPPKKKKOOKKMMMMMMNNNMPPPP OO RRRjjRRPPPMMMMMMRRRRR PPPPPQRRRRRRKKKOOOOOMMMMMMMMMMMMOO P RRjjRPPPPORRMLMMLLRPPNPNPPPQRRRRKKKKOOOOOOMMMMMMMMMMMMOOOPOOO ORRRRPPPPOOOMLMMLMMLMPNPPNPPPQRRRKKKJIIOONMMMMMMNNOOOOOOMMMMOOOO RRPPPPPPOPLMMMMLLKONNNNLLRPQRKKJKKJNNOONOMMMMMNNNNNNNRMMMMOONONRNOOOOOOOOPMLMMLLKNNMMMKKLRPQKKJKJJJINMMMOOMMMMMNNMMNMMMMMMNNNNNNNNOONNONNKMMLLLKNNNMKKLLLRPIJKKJJIIIMMMMMNMMMMMMMMMMMMMMLLNNNNNRRNNMMNNNRKLLLLKKMMMMKKKKKRPIJJJJIIMIMMLMMMMPMMMMMMMMMMLLLLRRRRRMMMMMMMPPPPKKKKKKMMMKLJLKKRPIIJJIIMMMMMMMOMPPOPMMLMMMLLLLLLRRRMMMMLLMLMPPPPKKKKKKKMJKKKJKKRPIIIIIMMMMLMMMM OOPLMLMLMKKLLLLKRRRMMMMMMMMMPPOKKKKKKKjIJJJKJLQRPQIIMMMLLMMMM OPOMMMMMMKKKKMKKRRKKMLLLLMMPPPPPKjKKKPPIIIJJJJQRPQRILLMLLLLLM OPPLLMMLLMKKKKKKRKLKLLLLLMOOOOOPRjjPPPPIIIIIIRQRPQRMKLLLLLLLLOOOOOPKKLLLLKRjKKKRRKKKLLLLLNOOOOOOjjPPRRRRjjIIIRQRPQRRKKKKKKKKLNOOPPPKKKKKKRjjPPPRRKKKLLLKKMNNONNNRRRPPPPRjPPPRRQRPQRRRKKKKKKRLNNNNNPRjKKKKRRPPPPRRRKKKKKKRRNNNNNRRRPPPPPPPPPPPPPRPQRRRlljRRRRRRNNjPPjjPPPRRRRRPPPRRljRRRRRRRllRRRRRRRPPPPRRPPPPPPPQRRlljPRRRRRRRRRPPPRRPPPRRRRRPPRljPRRRRRRRPPPPRRRRRRRPPPRRPPPPPPQQQQQPPPPQQQQQQQQQPPQQQPPQQQQQPQQPPPPQQQQQQQPPPQQQQQQQQPPQQPPPQPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlincity-1.13.1/icons/cricket-button.csi0000644000175000017500000000040007340321776014744 00000000000000 " # " # " # " # " # " # # # # 77 77?6 7?66 66lincity-1.13.1/icons/cricket1.csi0000644000175000017500000000200007340321776013512 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPñóí ###NààPPPPPPPPPPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPPPPPPöñóí ###NààPPPPPPPPPPPPPPPPPöñóí ###NLLPPPPPPPPPPPPPPPPPöPóí ###NààPPPPPPPPíPíPPPPPPPPóó######NLLPPPPPPPíSíPPPPPPPPPó#######NààPPPPPPPSSSPPPPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPPPPPPPPPóîNNPPPààPPPPPPPíSíPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket2.csi0000644000175000017500000000200007340321776013513 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPñóí ###NààPPPPPPPPPPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPöPPPPöñóí ###NààPPPPPPPPPPPPPPPPPöñóí ###NLLPPPPPPPPPPPPPPPPPöPóí ###NààPPPPPPPPíPíöPPPöPPPóó######NLLPPPPPPPíSíPPPPPPPPPó#######NààPPPPPPPSSSPPöPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPPPPPPPPPóîNNPPPààPPPPPPPíSíPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket3.csi0000644000175000017500000000200007340321776013514 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPöPPPPPPPPPñóí ###NààPPPPPPPPPPPöPPPPöñó÷ ###NLLPPPPPPPPPPPPPPPPPöñóí ###NààPPPPPPPPPPPPPPPPPöñóí ###NLLPPPPPPPPöPPPPPPPPöPóí ###NààPPPPPPPPíPíöPPPPPPPóó######NLLPPPPPPPíSíPPPPPPPPPó#######NààPPPPöPPSöSPPöPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPPPPPPPPPóîNNPPPààPPPöPPPíSíPPöPPPPPPġóîNNPPPLLPPPPPPPPPPöPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPöPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPöPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket4.csi0000644000175000017500000000200007340321777013516 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPöPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPöPPPPPñóí ###NààPPPPPPPPPPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPPPPPPöñóí ###NààPPPPPPPPöPPPPPPPPöñóí ###NLLPPPPPPPPPPPPPPPPPöPóí ###NààPPPPPPPPíPíöPPPPPPPóó######NLLPPPPPPPíSíPPPPPPPPPó#######NààPPPPöPPSöSPPöPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPöPPPPPPPóîNNPPPààPPPöPPPíSíPPPPPPPPPġóîNNPPPLLPPPPPPPPöPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPöPPPPöPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket5.csi0000644000175000017500000000200007340321777013517 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPöPPPPPPPPPPPó÷ ###NààPPPPPPPPPPPöPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPñóí ###NààPPPPPPPPPPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPPPPPPöñóí ###NààPPPPPPPPPPPPPPPPPöñóí ###NLLPPPPPPPöPPöPöPPPPöPóí ###NààPPPPPPPPíPíPPPPPPPPóó######NLLPPPPPPPíSíPPPPPPPPPó#######NààPPPPöPPSöSPPPPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPöPPPPPPPóîNNPPPààPPPöPPPíSíPPPPPPPPPġóîNNPPPLLPPPPPPPPöPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPöPPPPöPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket6.csi0000644000175000017500000000200007340321777013520 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPPPPPPöPPPPPPPPóí ###NLLPPPPPPöPPPPPPPPPPñóí ###NààPPPPPPPPPPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPPPPPPöñóí ###NààPPPPPPPPöPPöPPPPPöñóí ###NLLPPPPPPPPPPPPPPPPPöPóí ###NààPPPPPPPPíPíPPPPPPPPóó######NLLPPPPPPPíSíPPöPPPPPPó#######NààPPPPöPPSöSPPPPPPPPP########NLLPPPPPPPSSSPPPPPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPPPPPPPPPóîNNPPPààPPPPPöPíSíPöPPPPPPPġóîNNPPPLLPPPPPPPPöPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPöPPöPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/cricket7.csi0000644000175000017500000000200007340321777013521 00000000000000àLàLàLàLàLàLPLPLàLàLàLàLàLàLàLàLLLLLLPPPPPPPPPPPPPPPPPPPPPPPPLLààLLPPPPPPPPPPPPPPPPPPPPPPPPPPPLLLLPPPPPPPPPPPPPó ###NààLPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPPó÷ ###NààPPPPPPPPPPPPPPPPPPPóí ###NLLPPPPPPPPPPPPPPPPPñóí ###NààPPPPPPPPöPPPPPPPöñó÷ ###NLLPPPPPPPPPPPPPöPöPöñóí ###NààPPPPPPPPPPPöPPPPPöñóí ###NLLPPPPPPPPPPPPPöPPPöPóí ###NààPPPPPPPPíPíPPPPPPPPóó######NLLPPPPPPPíSíPPöPPöPPPó#######NààPPPPPPPSSSöPPPöPPPP########NLLPPPPPPPSSSPPPöPPPPPPNNNNNNNNààPPPPPPPSSSPPPPPPPPPPPóîNNNNNLLPPPPPPPSíSíPPPPPPPPPóîNNPPPààPPPPPPPíSíPöPöPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPPġóîNNPPPLLPPPPPPPPPPPPPPPPPġóîNNPPPààPPPPPPPPPPPPPPPPPPġîêNNPPPLLLPPPPPPPPPPPġêêêNNPPLààLPPPPPPPPPPPPPPPPPPPPNNNNNNPPLLLLLPPPPPPPPPPPPPPPPPPPPNNNNNPLLààLLLLPPPPPPPPPPPPPPPPPPPPPPLLLLLLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàLàlincity-1.13.1/icons/ex_port-button.csi0000644000175000017500000000040007340321777015001 00000000000000šššššššššššššššššóóóóššóšššóšššššóššššššóšóššššššóó󚚚ššóšššššššóššššššóšóššššššóóóóššóšššóššššššššššššššššóóó󚚚šššššššššššóššóóóšóóóóšóóóšóššóšóšóššóšóšóšóššóóóšóššóšóóóšóššóšššóššóšóóššóššóšššóóóóšóšóšóšššššššššššššššššššššššššššššššššššššššššššššššššlincity-1.13.1/icons/ex_port.csi0000644000175000017500000001000007340321777013465 00000000000000óóóóóóóóóóóóóìóìóìóìóìóìóì󘘘˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóóìììììììììììììì옘˜LL˜˜˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóìóìóìóìóìóìóìó옘˜LPPL˜˜˜˜˜˜˜ÔÔ˜˜˜˜˜˜óóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LPPPPL˜ÔÔ˜˜˜˜˜ÔÔÔÔ˜˜˜˜óóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LPPPPPPL˜ÔÔÔÔ˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóóóóóóóóóóóóóóóó˜˜LPJPPJPL˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóóóóóóóóóóóóóóóó˜˜LPPPPPPPPLú˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóóèèèóóóóóóóóóóó˜LPPJPPJPPúúú˜˜š˜˜˜˜˜˜˜˜˜óóóóóóóóóóèèèóóóóóóóóóóó˜LPPPPJJPPPúL˜˜š˜˜˜˜˜ÔԘ˜˜˜óóóóóóóóóóèîîóóóóóóóóóóó˜LPPJJJJJJúPL˜š˜š˜˜˜˜˜ÔÔÔԘ˜óúúúúèîèîóóóóóóóóóóóó˙˙LPPJJJJJúPPL˜š˜š˜˜˜˜˜˜˜˜˜˜óóìóóóóóóîèîóóóóóóóóóóóóó˙˙JPPPJJúPPJPL˜š˜š˜˜˜˜˜˜˜˜˜óìóññññññîîîóóóóóóóóóóóóóó˜L˙˙PPPPúPPPPPLš˜˜˜˜˜˜˜˜˜˜ìììóóóóóóññññóóóóóóóóóóóóóóLP˙˙PPPPPPPJPL˜š˜ÔԘ˜˜˜˜˜˜˜óìóóóóóóóóññññóóóóóóóóóóóóóLLMM˙˙MMMMMMML˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóññññóóóóóóóóóóóóLPMMM˙˙MMMMMMLš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóññññóóóóóóóóóóóLPPêìê˙˙ìêìPPL˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPì...˙˙.ú3333˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPê----˙úú3333š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóîóóóóóóLPPì,,,,ú˙ú3333˜š˜˜˜˜˜ÔÔ˜˜˜˜óìóóóóóóóóóóóóîóóóóîîíóóóóóLPPê+++.èú˙÷÷÷÷š˜š˜˜˜˜˜ÔÔԘ˜˜˜ìììóóóóóóóóóóîîíóóóîîíóóóóóLPPìêìêúú÷÷˙÷÷š˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóîîíóóóîîíóóóóóLPPPPPúú÷÷÷÷÷L˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóîîíóóóîîíóóóóóLPPPPúúú÷÷÷PPLš˜Ô˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóîîíóóóîìíóóóóóLPPPPúú÷÷÷PPPL˜š˜šÔԘ˜˜˜ÔÔÔԘ˜˜ìììóóóóóóóóóóîìíóóóìììóóóóóLPPPPú÷÷÷PPPPLš˜š˜˜˜˜˜˜˜ÔÔÔ˜óìóóóóóóóóóóóìììóóóóóóóóLPPPPNNNNPPPPL˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóLPPêìêìêìêìPPLš˜š˜˜ÔԘ˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóLPPì......ú3333š˜š˜˜ÔÔÔԘ˜˜˜˜˜ìììóóóóóóóóóó244óóóóóóóóóóóLPPê-----úú3333˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó22##óóóóóóóó˙˙˙˙˙˙˙˙˙˙˙úèú3333š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó2##óóóóóóóó˙óóóLPPê+++.èú÷÷÷÷÷˜š˜š˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó244óóóóóóóó˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙÷÷˜š˜š˜š˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó22##óóó244óóóóóLPPPPPúú÷÷÷÷÷Kš˜š˜š˜š˜˜˜˜˜˜˜˜óìóóóóóóóóóó2##óóó22##óóóóóLPPPPúúú÷÷÷PPK˜š˜š˜š˜š˜˜ÔÔÔÔ˜˜˜˜ìììóóóóóóóóó244óó2##óóóóóóLPPPPúú÷÷÷PPPLš˜˜š˜˜˜˜ÔÔ˜˜˜óìóóóóóóóóóó22##óó244óóóóóLPPPPú÷÷÷PPPPL˜š˜šÔ˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóó2##óóó22##óóóóóLPPPPNNNNNPPPLš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó244óó2##óóóóóóLPPêìêìêìêìPPL˜š˜š˜ú˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó22##óó244óóóóóLPPì......êNPLš˜š˜ú˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó2##óóó22##óóóóóLPPê-----1ìNNL˜šúúú˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóó2##óóóóóóLPPì,,,,01êNNKš˜ú˜˜˜ÔԘ˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóLPPê+++/01ìNNK˜ú˜š˜˜˜ÔÔÔԘ˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóLPPìêìêú333333ú˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ú333ú÷ú3÷úš˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ú33úú÷÷3÷ú˜š÷˜˜˜˜˜ÔÔԘ˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPPúúúú33ú÷÷33š˜šġ÷˜˜˜˜˜˜ÔÔÔ˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéúéú3333333ġġġġ÷š˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúúúúú3333Üéġġ÷ġ÷š˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéúéú÷÷÷ÜÜÒÒġġ˜˜š˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúúúú÷é÷ÜÜÒҘš˜š˜˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéú÷÷÷ÜÜÒÒKš˜š˜˜˜˜˜˜˜˜ÔÔ˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúú÷é÷ÜÜÒÒNK˜š˜š˜˜˜ÔÔÔÔ˜˜˜ÔÔԘìììóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ÜÜÒÒNNKš˜š˜˜˜˜˜ÔÔԘ˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPNNNÜÜÒÒNNNK˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPPNNÜÒÒNNNNKš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLLPPPPNNNNNNKK˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPJPPJJNNJNK˜ššš˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóó˜LLPPJJJJNNKKš˜š˜š˜˜˜˜ÔÔÔ˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóó˜LLPPJJNNKKš˜š˜š˜š˜˜˜˜˜ÔÔԘ˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LLLPNLLKš˜ššš˜š˜˜˜˜˜˜˜˜˜ììóìóìóìóìóìóìóìóìóìóìóìóìó옘šLLLL˜š˜š˜š˜šš˜˜˜˜˜˜˜˜óììììììììììììììììììììììììì옘˜š˜š˜š˜š˜š˜š˜š˜š˜š˜˜˜˜˜˜˜˜ìììóìóìóìóìóìóìóìóìóìóìóìó옘˜š˜š˜š˜š˜š˜š˜š˜š˜š˜˜˜˜˜˜˜lincity-1.13.1/icons/farm0.csi0000644000175000017500000001000007340321777013012 00000000000000MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#MV ##7##########7########!M########################## #VVM 7#######7######## ####P#!M###PPPP#PP#P########P#### # # V#MV ####U###P##U####PP ##P##!!t ########## #PP#P#######P#PPPP #VVM ###P#P#P#####P###PU#P###!V #######U##P########P#P######U# V#MV ###P#####P#U#P######P##!M ##P#### ##U##PP#U###U#PPU U# ##VVM###P#######UU#########UU!t #P##PU#P#P## #P##U##### P### UP##V#MV7###U#PP####P### U#P####! ####P####### PP##U#=#########P####VVM##PUP=###PP####P# ### ##t VP####PP## UU#PPP##P####PP#PUP##V#MV#####U##P#U#P##P# #P#P##V #####P## ####P###P##PP #P#### #P###VVM####U##P####=##P###P#P##V ######UU####P# P###U#U## UU## #V#MV#########PP#P##P#P#PUP##!t ##P#PU###### ##P## UU###P#### P##VVM7#U#PP##P######U P#U###!!V ###P####UP #=P#P##### ###PPPP ##V#MV#####PU#PU#P###P##P#######!V#####PPP#P #PPP#####PP U###=#P###VVM###U#####U#U#########7##tV!V ##############P####U######U####V#MV7##P##P##P###########V##M# V###U##U####U##############P#P####VVM7##P###P########7M#VMM#### VV## # ##PP### U#PP#PP####UU #P##V#MV!7#P##PP###Vt###!!!!!!PP## #V##PP##PP #PUU ######U## #####U##VVM#7#######M7##MV!####P!!!!!VVV##### #####P# #P#P #P# P#P#P###V#MVV####7#t7tV!#!!####P#####!VVV!!!## P###P# U##########PPP####VVMMt77MM#VVV#!!##### P###VV## V###!!!!!!#######P#U #=##P# P#P#V#MV!!!#VV!!!!!#####P####PVV#####VV#VVVVV!!#PPPP#PP# ##P#UP###P##VVM##!!!!##########U##PPVôôôôôôô #èèèèèèV!!######P###P### ##P#V#MV#PP#########P# P###P#VôssssssìèèèèèèèèVV!PP##### PPP# ##P#P##VVM###########P###P#####VôvvvvvvìèèèèèèèèèV!!#UP#UUP# P#P######V#MV!##PP#P########PU##P#VôssssssìèèèññññññèV!!###P### ######P###VVM!##PP##P### P##P##P##VôìèèöñññññèV#!#UP######P####P##V#MV!##P#PP##########P#!V#ìììììììèööññèèV!##############VVV#VVM###P####PPPP###UP###V#ììììììèööñpñèèV!####VVVVVVVVVVV##V#MV###P#P #######PP #!VVVèèèèèèèèèööñ÷ñèèVVVV!VV## ! #VVM###P##PP### #######VV# èèèè èöíñpñèèV #! #V#MV################!#VVè èèíöñpñèèV### ! #VVV!VVVVV#VVM#PP#=##=#PPP####!#Vèè èèèèèèèèèööñpñèèVVVVVVVVVVV########V#MV#####PUUU# ####P#!Vè#èèè#PPèP#èööñpñèèVV#!################VVM##PU###P##P#P####!VVèèèèèèèèèèèöíñpñèè#V#!####PP#########V#MV##P##P######P###U!!VèèèPèèèèèèèíöppèè#V!!##P#####P# P####VVM##P## ##P#UU###P##!!èUèèèèPèèèèööññññññèè#V!##PPPP# ### ##P#V#MV##PP#P#P#P#UP#P####!èèèèèèPèèèèööíñíñíñèè#V!########PP###P###VVM###P#U######P####P#!VVVVVèèèVVèöíèè#V!#P######P####P##V#MV##U####P##U### #P##!!!!!!VVVVèèèèèèèèèèèèV!!#PPP # ##########VVM######P##=P####U##P## ##!#VVVVVèèèèèèèèèV!!U#P#### PPP# P###V#MV##### ####P###PU##UP####!!!V!!!VèèèèèèVV!!U####### =### ##P##VVM###=#P##PUU###=######PP###!V##!!VVVVVV!!!####P## #####P###P#V#MV###=########P### P#P######!V####!!!!!!!###P# ### P##P ## P###VVM###PU### ###P#U#P#U= ## P#!V######PP#P## ## ###P##P## ####V#MV##P#############P#P#P##P##!V###P##P##PPU##U#PPP#P#PPP## #####VVM##P#PPPP##PP#####PP#######!V#####U###P###P########PPP#######V#MV############P#############!V####=##############=#############VVM####P##########PP##PP#P#P#!V### ######P##P#P######## PP##P##V#MV##PP###PP##UU#P#U#PPP#####!#####PP#PP##### ####PPP#####=#####VVM#P#UU#####P ##PP#P #######!V###P# ###= #U#P##=#P# ##U#=#U##V#MV#P####PU## ####U#P##=UU P#!V## ##P ##=U###P ######U P###### #VVM#####=### #PUU =#P##P##UP#!V## ##U##### #U#####P##P###U#P##V#MV###PPP######U####P####UU##!V###P#U###P# #####U#P##P###UP#P###VVM####PP# #P#P### ##U## P##=!V####PP ####U######## U#P# ##P##V#MV P###U ####UU##= #U######P#!!V##P ########P###P# PU###PP ###VVM P###PP### UP=#P##U#########!V##PU #######P####P#U#######U V#MV ####P###PU####P#P## P#UUUU=!V######PU #P#P####P P## U # #VVM PP#####U######PP##P#UU###!!V##P#PP#######U###P#P#PPP##P# V#MV PP#PP##UPP###U#######=!!!VVU############U=####U#####U# #VVM #################!!!VVV########U################# V#MVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#lincity-1.13.1/icons/farm1.csi0000644000175000017500000001000007340322000012767 00000000000000MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#MV ##7##########7####ŭúĝĝ!M########################## ĝ #VVM 7#######7######## ###ĝúĝĝM###P###############úúĝ V#MV ####U###P##U####PP ##P#ĝ!!t ###          #  ŭĝĝ #VVM ###P#P#P#####P###PU#P###!V ####  UU  U     U úĝĝ V#MV ###P#####P#U#P######P##!M ##P#   U  U   UUUU ĝ###VVM###P#######UU#########UU!t #P##P   UUU U UU    ĝ##V#MV7###U#PP####P### U#P####! ####P   U          ###VVMù#PUP=###PP####P# ### ##t VP####           U  ##V#MVüù###U##P#U#P##P# #P#P##V #####P      U    U ###VVMüù##U##P####=##P###P#P##V #####   UU  UUUU   U  #V#MVùùó######PP#P##P#P#PUP##!t ##P#P   UU    U     P##VVM#ùU#PP##P######U P#U###!!V ###P   U    UU   U ##V#MV#ó###PU#PU#P###P##P#######!V####             ###VVMó##U#####U#U#########7##tV!V ###      U   U  ##V#MV7##P##P##P###########V#úúú V###U      UUUU  UU  ###VVM7##P###P########7M#VMMúúú÷ VV##     U U      ##V#MV!7#P##PP###Vt###!!!!!!PP÷÷ #V##P    UU   U UU  U##VVM#7#######M7##MV!####P!!!!!VVV##### ###     U     ###V#MVV####7#t7tV!#!!####P#####!VVV!!!## P####        ####VVMMt77MM#VVV#!!##### P###VV## V###!!!!!!### UU    UU #P#V#MV!!!#VV!!!!!#####P####PVV#####VV#VVVVV!!#PPP  U  U  #P##VVM##!!!!##########U##PPVôôôôôôô #èèèèèèV!!####ĝĝ  #    #P#V#MV# ###P#VôssssssìèèèèèèèèVV!PPĝĝĝ   U  #P##VVM#        #####VôvvvvvvìèèèèèèèèèV!!#Uĝĝ      ###V#MV!      U  U##P#VôssssssìèèèññññññèV!!##ĝ #    # P###VVM!   U UUU  ##P##VôìèèöñññññèV#!#Uĝ######P####P##V#MV! U   U   #P#!V#ìììììììèööññèèV!##############VVV#VVM#    U P#U#V#ììììììèööñpñèèV!####VVVVVVVVVVV##V#MV#  U   U U!VVVèèèèèèèèèööñ÷ñèèVVVV!VV## ! #VVM# U  UU U ###VV# èèèè èöíñpñèèV #! #V#MV#      UU !#VVè èèíöñpñèèV### ! #VVV!VVVVV#VVM#      !#Vèè èèèèèèèèèööñpñèèVVVVVVVVVVV########V#MV#      U  #!Vè#èèè#PPèP#èööñpñèèVV#!################VVM# UU    U  #!VVèèèèèèèèèèèöíñpñèè#V#!## #V#MV# U   U    U!!VèèèPèèèèèèèíöppèè#V!!#####VVMĝ        ##!!èUèèŝúPèèèèööññññññèè#V!## U U P#V#MVĝ  U     ###!èèèûúġPèèèèööíñíñíñèè#V!####UUU###VVMŭ       #P#!VVVVVġèèVVèöíèè#V!# U U V#MVŭĝ     U  P##!!!!!!VVVVèèèèèèèèèèèèV!!#UUU##VVMĝĝ       ##P## ##!#VVVVVèèèèèèèèèV!!U# U U #V#MVġġ       ##UP####!!!V!!!VèèèèèèVV!!U###UU##VVM#   UU U  ###!V##!!VVVVVV!!!### U #V#MV#   UU     U  ###!V####!!!!!!!###PUUU###VVM#  UU         P#!V######PP#P## U U #V#MV# U    UU     #P!V######P##PPU#UUU####VVM# U   U    U   ##!V## U UU ##V#MV#         U  ##!V##UU###VVM# U   UU U   UU  ##!V## U U U ##V#MV#  U       U  P#!#ĝú#UUUUU###VVM#        U   ##!Vŭú U U U U ú#V#MV#            ##!VĝúUUUŭĝ #VVM# #    U       P#!Vĝĝ U U U úĝ#V#MV###U U U     U ##!V#ĝUUĝĝ##VVM###  U  U  U    ##=!V# UUU UU UUU ĝ##V#MV P# #         # #P#!!V###VVM P###U #      # ####!V U U U V#MV ####  #  #  # # #UUUU=!V####UUŭĝ #VVM PP# # U###!!V ŭP# V#MV PP#PP##UPP###U#######=!!!VVU############U=####U#####ú# #VVM #################!!!VVV########U################# V#MVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#lincity-1.13.1/icons/farm10.csi0000644000175000017500000001000007340322000013047 00000000000000MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#MV ##7###################!M########################## #VVM 7#######################!M###P################## V#MV ########################!!t ### Z   Z      Z    #VVM ## ###!V ####  Z   Z   Z   Z   V#MV ##ZZZZZZ##!M ##P#   Z   Z   Z   Z ###VVM### ##!t #P##P Z   Z   Z   Z   ##V#MV7##ZZZZZZ##! ####P  Z   Z   Z   Z  ###VVM### ##t VP####   Z   Z   Z   Z ##V#MV###ZZZZZZZ##V #####P Z   Z   Z   Z   ###VVM### ##V #####  Z   Z   Z   Z   #V#MV###ZZZZZZ##!t ##P#P   Z   Z   Z   Z P##VVM7## ##!!V ###P Z   Z   Z   Z   ##V#MV###ZZZZZZ####!V####  Z   Z   Z   Z  ###VVM### ###V!V ###   Z   Z   Z   Z ##V#MV7################### V###U Z   Z   Z   Z   ###VVM7## ################## VV##  Z   Z   Z   Z  ##V#MV!7#########Vt###!!!!!!PP## #V##P   Z   Z   Z   Z U##VVM#7#######M7##MV!####P!!!!!VVV##### ### Z   Z   Z   ###V#MVV####7#t7tV!#!!####P#####!VVV!!!## P####Z   Z   Z  ####VVMMt77MM#VVV#!!##### P###VV## V###!!!!!!### Z   Z   Z #P#V#MV!!!#VV!!!!!#####P####PVV#####VV#VVVVV!!#PPP Z   Z   #P##VVM##!!!!##########U##PPVôôôôôôô #èèèèèèV!!####  Z #  Z  #P#V#MV# ###P#VôssssssìèèèèèèèèVV!PP#   Z   Z #P##VVM# Z   Z    #####VôvvvvvvìèèèèèèèèèV!!#UPZ   Z   ###V#MV!  Z   Z   U##P#VôssssssìèèèññññññèV!!## Z   Z # P###VVM!   Z   Z  ##P##VôìèèöñññññèV#!#UP######P####P##V#MV! Z   Z    #P#!V#ìììììììèööññèèV!##############VVV#VVM#  Z   Z   P###V#ììììììèööñpñèèV!####VVVVVVVVVVV##V#MV#   Z   Z  #!VVVèèèèèèèèèööñ÷ñèèVVVV!VV## ! #VVM# Z   Z   Z ###VV# èèèè èöíñpñèèV #! #V#MV#  Z   Z   !#VVè èèíöñpñèèV### ! #VVV!VVVVV#VVM#   Z   Z  !#Vèè èèèèèèèèèööñpñèèVVVVVVVVVVV########V#MV# Z   Z   Z #!Vè#èèè#PPèP#èööñpñèèVV#!################VVM#  Z   Z   #!VVèèèèèèèèèèèöíñpñèè#V#!###########Z##V#MV#   Z   Z  U!!VèèèPèèèèèèèíöppèè#V!!#PP####Z#P#Z####VVM# Z   Z   Z ##!!èUèèèèPèèèèööññññññèè#V!#####Z###U####P#V#MV#  Z   Z   ###!èèèèèèPèèèèööíñíñíñèè#V!###Z##P##=#UZ####VVM#   Z   Z  #P#!VVVVVèèèVVèöíèè#V!##ZZ#######PZ#ZV#MV# Z   Z   Z P##!!!!!!VVVVèèèèèèèèèèèèV!!#####ZPU######Z##VVM#  Z   Z   Z#P## ##!#VVVVVèèèèèèèèèV!!U###P##P##Z#####V#MV#   Z   Z  ##UP####!!!V!!!VèèèèèèVV!!U##ZP##Z#U####=####VVM# Z   Z   Z  Z ###!V##!!VVVVVV!!!####Z##=#U##PUZ##ZV#MV#  Z   Z   Z   ###!V####!!!!!!!###P##U#U###P##U######VVM#   Z   Z   Z  Z P#!V######PP#P###Z#Z#P#############V#MV# Z   Z   Z   Z  #P!V######P##PPU####PP###Z##U###U####VVM#  Z   Z   Z   Z ##!V#############PZ=####U##=###Z####V#MV#   Z   Z   Z   ##!V###UP#Z#PP#######U#####PP#P###Z##VVM# Z   Z   Z   Z  ##!V######Z#=#Z###P###U#####U####Z##V#MV#  Z   Z   Z   Z P#!####U##Z##U#P#ZP##U###Z#PP###=####VVM#   Z   Z   Z   ##!V####UPZZU##P=###U##ZU#Z##=##Z###V#MV# Z   Z   Z   Z  ##!V#####Z##U####U#UUZ#####U##P#### #VVM# # Z   Z   Z   Z P#!V###Z##=U#P##P#######P###########V#MV###  Z   Z   Z   ##!V###PZUPP#Z##P#######Z#Z#####ZZ###VVM##Z   Z   Z   Z  ##=!V########Z##=##ZZUPZZ##P#UUP####V#MV P# Z   Z   Z   Z #P#!!V####ZZZ#UP###P#=#Z#ZZ#=########VVM P### Z #  Z   Z # ####!V##U##UU####Z#PP#######UPPZ####V#MV ####  Z  # Z # # #UUUU=!V###P####U##Z####U#P##Z###Z#P #VVM PP# # U###!!V####Z##ZZ##P#ZZ###########P# V#MV PP#PP##UPP###U#######=!!!VVU######PP####U=##Z#U#P###U# #VVM #################!!!VVV########U################# V#MVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#lincity-1.13.1/icons/farm11.csi0000644000175000017500000001000007340322000013050 00000000000000MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#VVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV#V#V#V#V#V#V#V#V#V#V#V#V#V#V#V#MV ##7###################!M########################## #VVM 7#######################!M###P################## V#MV ########################!!t ### Z   Z      Z    #VVM ## ###!V #### ZUZ  ZUZ  UZ  ZUZ   V#MV ##Z{Z{Z{Z{Z{Z{##!M ##P#  ZUZ  ZUZ  ZUZ  ZUZ ###VVM### { { { { { { ##!t #P##P Z  ZUZ  ZUZ  ZUZ  Z ##V#MV7##Z{Z{Z{Z{Z{Z{##! ####P ZUZ  ZUZ  ZUZ  ZUZ  ###VVM### { { { { { {##t VP####  ZUZ  ZUZ  ZUZ  ZUZ ##V#MV###Z{Z{Z{Z{Z{Z{Z##V #####P Z  ZUZ  ZUZ  ZUZ  Z ###VVM### { { { { { { ##V ##### ZUZ  ZUZ  ZUZ  ZUZ   #V#MV###Z{Z{Z{Z{Z{Z{##!t ##P#P  ZUZ  ZUZ  ZUZ  ZUZ P##VVM7## { { { { { { ##!!V ###P Z  ZUZ  ZUZ  ZUZ  Z ##V#MV###Z{Z{Z{Z{Z{Z####!V#### ZUZ  ZUZ  ZUZ  ZUZ  ###VVM### { { { ###V!V ###  ZUZ  ZUZ  ZUZ  ZUZ ##V#MV7################### V###U Z  ZUZ  ZUZ  ZUZ  Z ###VVM7## ################## VV## ZUZ  ZUZ  ZUZ  ZUZ  ##V#MV!7#########Vt###!!!!!!PP## #V##P  UZ  ZUZ  ZUZ  ZUZ U##VVM#7#######M7##MV!####P!!!!!VVV##### ### Z  ZUZ  ZUZ  Z ###V#MVV####7#t7tV!#!!####P#####!VVV!!!## P####Z  ZUZ  ZUZ  ####VVMMt77MM#VVV#!!##### P###VV## V###!!!!!!### Z  ZUZ  ZUZ #P#V#MV!!!#VV!!!!!#####P####PVV#####VV#VVVVV!!#PPP Z  ZUZ  Z #P##VVM##!!!!##########U##PPVôôôôôôô #èèèèèèV!!#### UZ # ZUZ  #P#V#MV# ###P#VôssssssìèèèèèèèèVV!PP#  ZUZ  ZUZ #P##VVM# Z   Z    #####VôvvvvvvìèèèèèèèèèV!!#UPZ  ZUZ  Z ###V#MV! <>>>>>>>>>>>>>>>>888888888888888>888888888888888>882222222222222>882222222222222>882222&&&&22&&2>882222&2222&22&>882222&&&22&22&>882222&2222&&&&>882222&2222&22&>882222&2222&22&>882222222222222>882222222222222>888888888888888>888888888888888>>>>>>>>>>>>>>>>lincity-1.13.1/icons/fast-onr.csi0000644000175000017500000000040007340322005013522 00000000000000>>>>>>>>>>>>>>>>888888888888888>888888888888888>222222222222288>222222222222288>22&&22&&&&22288>2&22&22,,222288>22&2222,,222288>222&222,,222288>2&22&22,,222288>22&&222,,222288>222222222222288>222222222222288>888888888888888>888888888888888>>>>>>>>>>>>>>>>>lincity-1.13.1/icons/fire1.csi0000644000175000017500000000040007340322005012777 00000000000000#######w##########w###rw####w####rw##rww9##rw9###w###w99##rww9#####r99#####w9#####ww9ww###r9#####rw9#ww9#rww9########ww9#rww9#####w#ww9#rw99#####rw9w###w9##rw9##ww9##w####rww9#rww9#rw9##rrw9###99##ww9##rw9#######rw9####9#########9##########################lincity-1.13.1/icons/fire2.csi0000644000175000017500000000040007340322005013000 00000000000000######################rw####w####rw##rww9##rw9######99=#rww9#####r99#####9#####ww9ww###r9#####r9#ww9#rww9#####=##ww9#rww9#####w#ww9#r99#####rw9w###w9##rw9##ww9##w####rww9#r9#rw9##rrw9=##99##ww9##r9#######r9###=9#########9##########################lincity-1.13.1/icons/fire3.csi0000644000175000017500000000040007340322005013001 00000000000000##################w###rw####w####rw##rww9##rw9######99##rw9#####r99#####w9#####ww9ww###r9=####r9#ww9#rww9#####==#ww9#rww9#####w#ww9#r99#####rw9w###w9=#rw9##w9##w#=##rww9#rw9#rw9##rr9###99##w9##rw9#######rw9####9#########9##########################lincity-1.13.1/icons/fire4.csi0000644000175000017500000000040007340322005013002 00000000000000##################w###rw####w####rw=#rww9##rw9###r###99##rw9#####r99#####w9=####ww9ww###r9=####r9#ww9#rww9######=#ww9#rww9#####w#ww9#r99#####r9w=##w9##rw9##w9=#w#=##rw9#rww9#r9=#rrw9###99=#ww9##rw9#######rw9=###9#########9##########################lincity-1.13.1/icons/fire5.csi0000644000175000017500000000040007340322005013003 00000000000000##################w###r####w####rw##rww9##r9###r##w99##rww9#####r99#####w9=####ww9ww###r9#####r9#ww9#rww9######=#ww9#rww9######ww9#rw99##=##r9w=##w9##r9##ww9###=##rww9#rww9#rw9##rrw9###99=#ww9##rw9#######rw9=###9#########9##########################lincity-1.13.1/icons/firedone1.csi0000644000175000017500000000040007340322005013645 00000000000000#########################ççç#########çç#22ççç###2#çç##ç2#2ççç####22ççç#ç##2çç######çç###ç##22######ççç##ç2ç#2###çç##2ç####ççç2###ç###çç###22ç2###ç2###çç#ç#2ç####çç####ç2#########çç###çç2##ç2#####ç2ç##çç2#ç#ç####çç####çç2#çç#####çç#çç#çç##ç########22#######lincity-1.13.1/icons/firedone2.csi0000644000175000017500000000040007340322005013646 00000000000000#########################ççç#########çç#2Sççç###2#çç#Sç2#2ççç####22ççç#ç#S2çç#####Sçç###ç##2S######ççç##ç2ç#2###çç##2ç####ççç2###ç###çç###22ç2###ç2##Sçç#ç#2ç####çç####ç2####S####çç###ççS##çSS##SSç2ç##çç2#çSç####çç####ççS#çç#####çç#çç#çç##ç########22#######lincity-1.13.1/icons/firedone3.csi0000644000175000017500000000040007340322005013647 00000000000000##################SS#SW!#ççç##S##S#SSSç!2SSSS###2#çç#Sç!!2ççS###!22SçSSW!SSSç###!#SSç##S!#!SSW##!SSSSç#Wç!!#2S##!ç##SS###SççSW!##ç#!Sçç##S22S2!##çS!!Sçç#SSSç#!##ççS!!#çW####S!###çç#!!SS#SSW#S##SSç2ç#SçWS!SSS###SSSW!SSS#SS#W#####SW!çSWççSWS#######222#######lincity-1.13.1/icons/firedone4.csi0000644000175000017500000000040007340322005013650 00000000000000##P#P###PPP#PP###TTTTTTTTTT?TTS#PTTTT?TT2TTTTT#P2TTç#STT!2ç|TT#P!TTSçSTW!TTTTTTP!T|Sç#TTTT!ST #P!STSSçTTç!!#TT#P!ç#TSTTT#TççST|P#çTTTTT#TT22STTPTTTT!TTT#SSSTTTP#T?T!!TTW#T#TT!#PTTT#!!TS#SSWTSPPT|TTç#TTTST?TS#P#STTTTSS?TTS#W##TT#ST!T|WTTSTSP##PPPP22PP###P##lincity-1.13.1/icons/firestation-button.csi0000644000175000017500000000040007340322005015631 00000000000000ss55sss5555s555555s555555s5VVV55s5V5555s5VV555s5V5555s5V5555s555555s555555lincity-1.13.1/icons/firestation.csi0000644000175000017500000000200007340322005014316 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîî2222îî îîîîîîîîîîó÷÷÷îîîUîîî2Ó22îîîSòS#îîîîîîîîîûó÷÷÷îîéUîîî2222îîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîó:::69999666644íííó11ëíííéUîó:::69999666644íííó11ëííííUîó::à69999666644íííó11ëîîîéUîó:à:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation1.csi0000644000175000017500000000200007340322005014377 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîî2222îî îîîîîîîîîîó÷÷÷îîîUîîî2Ó22îîîSòS#îîîîîîîîîûó÷÷÷îîéUîîî2222îîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîó:::69999666644íííó11ëíííéUîó:::69999666644íííó11ëííííUîó::à69999666644íííó11ëîîîéUîó:à:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation10.csi0000644000175000017500000000200007340322005014457 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîî2222îî îîîîîîîîîîó÷÷÷îîîUîîî2Ó22îîîSòS#îîîîîîîîîûó÷÷÷îîéUîîî2222îîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîó:::69999666644íííó11ëíííéUîó:::69999666644íííó11ëííííUîó::à69999666644íííó11ëîîîéUîó:à:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation2.csi0000644000175000017500000000200007340322005014400 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîî2222îî îîîîîîîîîîó÷÷÷îîîUîîî2Ŝ22îîîSòS#îîîîîîîîîûó÷÷÷îîéUîîî2222îîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîó:::69999666644íííó11ëíííéUîó:::69999666644íííó11ëííííUîó::à69999666644íííó11ëîîîéUîó:à:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation3.csi0000644000175000017500000000200007340322005014401 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîî2222îî îîîîîîîîîîó÷÷÷îîîUîîî2Ó22îîîSòS#îîîîîîîîîûó÷÷÷îîéUîîî2222îîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ŝ22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîóî::69999666644íííó11ëíííéUîóî::69999666644íííó11ëííííUîóî:à69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation4.csi0000644000175000017500000000200007340322005014402 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ŝ22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîóî::69999666644íííó11ëíííéUîóî::69999666644íííó11ëííííUîóî:à69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation5.csi0000644000175000017500000000200007340322005014403 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîîîîîîîîSòS îîîîîîûûóúó÷÷îîîîUîîîîîîîîîîSòS#îîîîîûóúúó÷÷îîîîéUîîîîîîîîîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóàî:69999666644íííó11ëííîîUîóîî:69999666644íííó11ëíííéUîóîî:69999666644íííó11ëííííUîóîîà69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation6.csi0000644000175000017500000000200007340322005014404 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîîîîîîîîSòS îîîîîîûûóúó÷÷îîîîUîîîîîîîîîîSòS#îîîîîûóúúó÷÷îîîîéUîîîîîîîîîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîîîîîîîîSòS îîîûóúó÷÷îîîîîîîîUîîîîîîîîîîSòS#îîîûúó÷÷îîîîîîîîéUîîîîîîîîîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:àî69999666644ííîó11ëíîîéUîóàîî69999666644íííó11ëííîîUîóîîî69999666644íííó11ëíííéUîóîîî69999666644íííó11ëííííUîóîîà69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation7.csi0000644000175000017500000000200007340322005014405 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîîîîîîîîSòS îîîîîîûûóúó÷÷îîîîUîîîîîîîîîîSòS#îîîîîûóúúó÷÷îîîîéUîîîîîîîîîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîîîîîîîîSòS îîîûóúó÷÷îîîîîîîîUîîîîîîîîîîSòS#îîîûúó÷÷îîîîîîîîéUîîîîîîîîîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:àî69999666644ííîó11ëíîîéUîóàîî69999666644íííó11ëííîîUîóîîî69999666644íííó11ëíííéUîóîîî69999666644íííó11ëííííUîóîîà69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation8.csi0000644000175000017500000000200007340322005014406 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîîîîîîîîSòS îîîîîîûûóúó÷÷îîîîUîîîîîîîîîîSòS#îîîîîûóúúó÷÷îîîîéUîîîîîîîîîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóàî:69999666644íííó11ëííîîUîóîî:69999666644íííó11ëíííéUîóîî:69999666644íííó11ëííííUîóîîà69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/firestation9.csi0000644000175000017500000000200007340322005014407 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUîéîéîéîéîéîéîéîéîéîéîéîéîéîéîéîUîîîîîîîîîîîîîîîîîîîîîîîéUîîîîîîîîîî îîîîîîîîîîó÷÷÷îîîUîîîîîîîîîîSòS#îîîîîîîîîûó÷÷÷îîéUîîîîîîîîîîSòS îîîîîîîîûûó÷÷÷îîîUîîîSòS#îîîîîîîûóúóóó÷îîéUîîîî2222îîSòS îîîîîîûûóúó÷÷îîîîUîîî2Ó22îîîSòS#îîîîîûóúúó÷÷îîîîéUîîî2222îîîSòS îîîîûûóúó÷÷îîîîîîUîîîSòS#îîîûóúúó÷÷îîîîîîéUîîîî2222îîSòS îîîûóúó÷÷îîîîîîîîUîîî2Ó22îîîSòS#îîîûúó÷÷îîîîîîîîéUîîî2222îîîSòS îîîúó÷÷îîîîîîîîîîUîîîSòS#îîîíííííîîîîîîîîéUîîîîîîîîîîSòS îîîîíííííîîîîîîîîUîîîîî6999:::::îîîîîíííííîîîîîîéUîîîî:69:99666::îîîîîíííííîîîîîîUîîî::69999666644îîîóóóóóóóîîîîéUîî::à69999666644ííîó111111ëîîîîUîó:à:69999666644ííîó11ëíîîéUîóà::69999666644íííó11ëííîîUîóî::69999666644íííó11ëíííéUîóî::69999666644íííó11ëííííUîóî:à69999666644íííó11ëîîîéUîóîà:69994666644íííó111111ëîîîîUîóà::99944446644íííëëëëëëëëîîîéUîó:::44444444644íííííîîîîîîîîîîUîó::44444444444ííííííîîîîîîîîîéUîó:44444444444íîíííííîîîîîîîîîîUéó44444444444íéíéíéíéîéîéîéîéîéUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/green.csi0000644000175000017500000000040007340322005013071 00000000000000QpQQQPPPpQQQoQQQQQQQpQQQQQQPQQQpQQQQPPPQPQQpQQQQpQQQQQpQQQQQQQQpQQPQpQPQQpPoQPQQQPQQPPQPQQQQQQQQQPPQQQQpQQQQQPQpQQQQPQQQQQQQpQQPpQQQQQQQQQQoQPQpQQpQPQQQQQQQQQQQQQQQQQQQpPQQQQQQQQQQQQPQQQQQoPQopQPQQoQQQQQQQQQPQQQpQQQQPQQPQQpPQPQQPQQoQQQQQQQQQQpQQQQQQQQQQQpQlincity-1.13.1/icons/health-button.csi0000644000175000017500000000040007340322005014547 00000000000000ëëëëëëëëëëëëëëëëëëíïóöööööóïíëëëïïóö:::öóïïëëëóö:::öóëëëóóóóö:::öóóóóëëëööööö:::öööööëëëö:::::::::::öëëëö:::::::::::öëëëö:::::::::::öëëëööööö:::öööööëëëóóóóö:::öóóóóëëëóö:::öóëëëïïóö:::öóïïëëëíïóöööööóïíëëëíïóóóóóóóïíëëëëëëëëëëëëëëëëëlincity-1.13.1/icons/health.csi0000644000175000017500000000200007340322005013234 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUùUùUùUùUùUùUUUUUUUUUUUUUUUUUUUUùUUUUUUUUUUUùUUUUU7788888888UUUUUUUUUüüüUUUUUUUUUU77ó 08,,0 RUUUùUUUUü<üUUUUùUUUUU7ó7 08,,0 RRUUUUUUUü<üUUUUUUUUUU777 08,,0 RRRUùUüüüü<üüüüUùUUUUU777 08,,0 RR###Uü<<<<<<<üUUUUUUU77ġ 08,,0 RR#UùUüüüü<üüüüUùUUUUU7ġ7 08,,0 RR#UUUUUUü<üUUUUUUUU7777 08,,0 RR#UùUUUUü<üUUUUùUUU77 008,,0 RR#UUUUUUüüüUUUUUUUU77 00008,,0 RR#UùUUUUUUUUUUUùUUU77 00008,,0 RR#UUùUùUùUùUùUùUUUU7ġ 00008,,0 RRRUUUUUUUUUUUUUUUUU77 00008,,, UUUUUUUUU77 00008,,04444444444,,ġġġġġġġUU7ġ 00008,,044444444444,RRUġUUUUU77 0000888888888888888,RRUġUUUUU77 0000,,,0,,,,,,,,,,,,RRUġUUUUU7ġ 0000,,,0,,ġ,,ġ,,ġ,,,RRUġUUUUU77 000,,,,0,,,,,,,,,,,,RRUġUUUUU77 RRUġUUUUU77,ġ,,,,,,ġ,,ġ,,ġ,,,ġ,,RRUġUUUUU7,,,,,ġ,,,,,,,,,,,,,ġ,,RRUġUUUUUURRRRRġRRRRRRRRRRRRRġRRRRUġUUUUUUURRRRġRRRRRRRRRRRRRġRRRRUġUUUUUUUURRRġRRRRRRRRRRRRRġġġRRUġUUUUUUUUUUUġUUUUUUUUUUUUUUUġġġġġUUUUUUUUUUUġUUUUUUUUUUUUUUUġUUUUUUUUUUUUUUUġUUUUUUUUUUUUUUUġUUUUUUUUUUUUUUUġUUUUUUUUUUUUUUUġUUUUUUUlincity-1.13.1/icons/help-button.csi0000644000175000017500000000200007340322005014230 00000000000000((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))(()****************************)(()*++++++++++++++++++++++++++*)(()*+,,,,,,,,,,,,,,,,,,,,,,,,+*)(()*+,----------------------,+*)(()*+,-....................-,+*)(()*+,-.//////////////////.-,++)(()*+,-.//////////////////.-,++)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*,-.//////////+*)(()*,-.//////////////.--*)(()*,-.//////////////.-,*)(()*///////////.-,*)(()*,-.//////////////+*)(()*,-.//////////////.-,+*)(()*,-.//////////////.-,+*)(()*,-.//////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.//////////////////.-,+*)(()*+,-.............//.....-,+*)(()*+,--------------------.-,+*)(()*+,,,,,,,,,,,,,,,,,,,,,,,,+*)(()*++++++++++++++++++++++++++*)(()****************************)(())))))))))))))))))))))))))))))(((((((((((((((((((((((((((((((((lincity-1.13.1/icons/im_port-button.csi0000644000175000017500000000040007340322005014753 00000000000000ššššššššššššššššššóšššóóššó󚚚šššóšššóšóóšóššššššóšššóššššóššššššóšššóššššóššššššóšššóššššóššššššššššššššššóóó󚚚šššššššššššóššóóóšóóóóšóóóšóššóšóšóššóšóšóšóššóóóšóššóšóóóšóššóšššóššóšóóššóššóšššóóóóšóšóšóšššššššššššššššššššššššššššššššššššššššššššššššššlincity-1.13.1/icons/im_port.csi0000644000175000017500000001000007340322005013437 00000000000000óóóóóóóóóóóóóìóìóìóìóìóìóì󘘘˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóóìììììììììììììì옘˜LL˜˜˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóìóìóìóìóìóìóìó옘˜LPPL˜˜˜˜˜˜˜ÔÔ˜˜˜˜˜˜óóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LPPPPL˜ÔÔ˜˜˜˜˜ÔÔÔÔ˜˜˜˜óóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LPPPPPPL˜ÔÔÔÔ˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóóóóóóóóóóóóóóóó˜˜LPJPPJPL˜˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóúóóóóóóóóóóóóóóóó˜˜LPPPPPPPPLú˜˜˜˜˜˜˜˜˜˜˜óóóóóóóóóóóèèèóóóóóóóóóóó˜LPPJPPJPPúúú˜˜š˜˜˜˜˜˜˜˜˜óóóóóóóóóóèèèóóóóóóóóóóó˜LPPPPJJPPPúL˜˜š˜˜˜˜˜ÔԘ˜˜˜óóóóóóóóóóèîîóóóóóóóóóóó˜LPPJJJJJJúPL˜š˜š˜˜˜˜˜ÔÔÔԘ˜óúúúúèîèîóóóóóóóóóóóó˙˙LPPJJJJJúPPL˜š˜š˜˜˜˜˜˜˜˜˜˜óóìóóóóóóîèîóóóóóóóóóóóóó˙˙JPPPJJúPPJPL˜š˜š˜˜˜˜˜˜˜˜˜óìóññññññîîîóóóóóóóóóóóóóó˜L˙˙PPPPúPPPPPLš˜˜˜˜˜˜˜˜˜˜ìììóóóóóóññññóóóóóóóóóóóóóóLP˙˙PPPPPPPJPL˜š˜ÔԘ˜˜˜˜˜˜˜óìóóóóóóóóññññóóóóóóóóóóóóóLLMM˙˙MMMMMMML˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóññññóóóóóóóóóóóóLPMMM˙˙MMMMMMLš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóññññóóóóóóóóóóóLPPêìê˙˙ìêìPPL˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPì...˙˙.ú3333˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPê----˙úú3333š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóîóóóóóóLPPì,,,,ú˙ú3333˜š˜˜˜˜˜ÔÔ˜˜˜˜óìóóóóóóóóóóóóîóóóóîîíóóóóóLPPê+++.èú˙÷÷÷÷š˜š˜˜˜˜˜ÔÔԘ˜˜˜ìììóóóóóóóóóóîîíóóóîîíóóóóóLPPìêìêúú÷÷˙÷÷š˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóîîíóóóîîíóóóóóLPPPPPúú÷÷÷÷÷L˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóîîíóóóîîíóóóóóLPPPPúúú÷÷÷PPLš˜Ô˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóîîíóóóîìíóóóóóLPPPPúú÷÷÷PPPL˜š˜šÔԘ˜˜˜ÔÔÔԘ˜˜ìììóóóóóóóóóóîìíóóóìììóóóóóLPPPPú÷÷÷PPPPLš˜š˜˜˜˜˜˜˜ÔÔÔ˜óìóóóóóóóóóóóìììóóóóóóóóLPPPPNNNNPPPPL˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóLPPêìêìêìêìPPLš˜š˜˜ÔԘ˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóLPPì......ú3333š˜š˜˜ÔÔÔԘ˜˜˜˜˜ìììóóóóóóóóóó244óóóóóóóóóóóLPPê-----úú3333˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó22##óóóóóóóó˙˙˙˙˙˙˙˙˙˙˙úèú3333š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó2##óóóóóóóó˙óóóLPPê+++.èú÷÷÷÷÷˜š˜š˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó244óóóóóóóó˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙÷÷˜š˜š˜š˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó22##óóó244óóóóóLPPPPPúú÷÷÷÷÷Kš˜š˜š˜š˜˜˜˜˜˜˜˜óìóóóóóóóóóó2##óóó22##óóóóóLPPPPúúú÷÷÷PPK˜š˜š˜š˜š˜˜ÔÔÔÔ˜˜˜˜ìììóóóóóóóóó244óó2##óóóóóóLPPPPúú÷÷÷PPPLš˜˜š˜˜˜˜ÔÔ˜˜˜óìóóóóóóóóóó22##óó244óóóóóLPPPPú÷÷÷PPPPL˜š˜šÔ˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóó2##óóó22##óóóóóLPPPPNNNNNPPPLš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó244óó2##óóóóóóLPPêìêìêìêìPPL˜š˜š˜ú˜˜˜˜˜˜˜˜˜ìììóóóóóóóóó22##óó244óóóóóLPPì......êNPLš˜š˜ú˜˜˜˜˜˜˜˜˜óìóóóóóóóóóó2##óóó22##óóóóóLPPê-----1ìNNL˜šúúú˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóó2##óóóóóóLPPì,,,,01êNNKš˜ú˜˜˜ÔԘ˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóLPPê+++/01ìNNK˜ú˜š˜˜˜ÔÔÔԘ˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóLPPìêìêú333333ú˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ú333ú÷ú3÷úš˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ú33úú÷÷3÷ú˜š÷˜˜˜˜˜ÔÔԘ˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPPúúúú33ú÷÷33š˜šġ÷˜˜˜˜˜˜ÔÔÔ˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéúéú3333333ġġġġ÷š˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúúúúú3333Üéġġ÷ġ÷š˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéúéú÷÷÷ÜÜÒÒġġ˜˜š˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúúúú÷é÷ÜÜÒҘš˜š˜˜š˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPúéú÷÷÷ÜÜÒÒKš˜š˜˜˜˜˜˜˜˜ÔÔ˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPúú÷é÷ÜÜÒÒNK˜š˜š˜˜˜ÔÔÔÔ˜˜˜ÔÔԘìììóóóóóóóóóóóóóóóóóóóóóóóóLPPú÷÷÷ÜÜÒÒNNKš˜š˜˜˜˜˜ÔÔԘ˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLPPNNNÜÜÒÒNNNK˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPPPNNÜÒÒNNNNKš˜š˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóóLLPPPPNNNNNNKK˜š˜š˜˜˜˜˜˜˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóóLPJPPJJNNJNK˜ššš˜˜˜˜˜˜˜˜˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóó˜LLPPJJJJNNKKš˜š˜š˜˜˜˜ÔÔÔ˜˜˜˜ìììóóóóóóóóóóóóóóóóóóóóóóóó˜LLPPJJNNKKš˜š˜š˜š˜˜˜˜˜ÔÔԘ˜˜óìóóóóóóóóóóóóóóóóóóóóóóóóó˜˜LLLPNLLKš˜ššš˜š˜˜˜˜˜˜˜˜˜ììóìóìóìóìóìóìóìóìóìóìóìóìó옘šLLLL˜š˜š˜š˜šš˜˜˜˜˜˜˜˜óììììììììììììììììììììììììì옘˜š˜š˜š˜š˜š˜š˜š˜š˜š˜˜˜˜˜˜˜˜ìììóìóìóìóìóìóìóìóìóìóìóìó옘˜š˜š˜š˜š˜š˜š˜š˜š˜š˜˜˜˜˜˜˜lincity-1.13.1/icons/industryh-button.csi0000644000175000017500000000040007340322005015333 000000000000006666660666663333330000060lincity-1.13.1/icons/industryhc.csi0000644000175000017500000001000007340322006014163 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ĉĉĉĉĉĉĉĉĉĉ#::55533355:53NNNN.. oo# 0;0;îîĉĉĉĉĉĉĉĉĉĉĉĉ#555553555:333îî ..N #No; ;; 0îî4ĉĉĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooN.. oo##oîî; ;;îîĉĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ;0î4îoîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 0îîîî4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîî0îîîî4îîîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## N N N NN N N N N N N N N N N îîîîoîîîoíí . íN NN ###############################Nooííí N.NíooÚÓÓ N N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓÚÓÓoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓÓÚÓïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí ...ííoóóóóïïïïóóóóïïïóóóóoooíN.N íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêêóóóêooooêóóóêooooí ... íooêóóóóïoêóóóóïooooêóóóóooooí N.Níooóóóóïooóóóóïooóóóóooí . íooêóóóêoêóóóêooêóóóêooíN.Níííêoêoêoí . . íoĠĠĠĠĠóöooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïïïĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N...............................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh1.csi0000644000175000017500000001000007340322006014251 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġġġġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġĉĉġ#ġġġ5553ġġġġġġġNNNN.. oo# 0;0;îîġġġĉġĉĉĉĉĉĉĉĉ#55ġġġġġġ5:ġġġîî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉġġġġġġġ5ġġġġġġġġìîoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉġġNġġġġ5555555ġġġġîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉġġììġġîîîîî333ġġġìġîoooN.. ooo##î000 ġġġììġġ4îîîĉĉĉĉĉġġġììġîîî5ġġìġġîoo ..NoooN # # îîîîîîġġġìììġġîîîîîîġìììġġooîîġġîġîoNàà N N ### ## ġôêêìġġNN N N N ġġìġġġġ N N N îġġììġîîoíí à íN NN #ġġêìġġ##########ġġìġġ#########ġìġNooííí NàNíooġêêġġ N N N N Nġêêġ N N N N Nġêġġí .N à íoooïïïïïÓêêġġġoïïïïïÓêêġġïïïïïÓêêÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê222êïïïïooê222êïïïooê222êïïoïooíNà . íoê222óïïïïïoê222óïïïïïoê222óïïooí à..íío222óïïïï222óïïï222óoooíN.N íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêúêóóóêooooêóóóêúúoooí ..à íooêóóóóïúoêóóóóïooúúooêóóóóúúoooí NàNíooóóóóïúúooóóóóïoúoóóóóúúoí à íooêóóóêúoêóóóêúúoêóóóêúooíNàNíííêúúúoêúoêúúúoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóúúoooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïúúoooí .N íoĠÑÑöööÏïïúúooĠÑÑöööÏïïoúúĠÑÑöööÏïïúúoooíN. íoooĠÑÑööÑÏïúïĠÑÑööÑÏïïúoooĠÑÑööÑÏïúúoooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúúoĠÑÑÑÑÑÏïúïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóúúïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo.à.ïïïïïïo.à.ïïooïïoo.à.ïïïïooíN à íïo.à ïïoïïoïï.à ïïïïoïo.à ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí N....àààà....ààà......ààà....àà........àà.......ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh2.csi0000644000175000017500000001000007340322006014252 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġĉġġġġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġĉġĉĉġġ:ġ5533355:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#5ġġ5ġġġġġġ333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġêġġ5ġ5ġ:ġġġîoooN.. oo##oîî; ;;ġêìêġĉĉĉĉĉĉĉĉĉîġġġêġġġ5555555ġġîîoo ..NN #îîî ġġġġììġġîĉĉĉĉĉĉĉĉġġêêġġîîîî33333ġġġîoooN.. ooo##î000 ġġġìììġ4îîîĉĉĉĉĉĉġġêêġġġîîî533ġġêîoo ..NoooN # # îîîîîîġġġêììġġîîîîîîġġġêġġooîîîġġġêoNàà N N ### ## ġêêêìġġNN N N N ġġġêġġN N N N îîîġêêêîoíí à íN NN #ġêêìġġ#########ġġêêêġ#########êêêġġooííí NàNíooġêêġġ N N N N ġêêÓNġN N N N NÚêġġġí .N . íoooïïïïïÓêêġġġoïïïïïÓêêġġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêôïúúúúúÓÓêêġġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooê666êïïïooê666êïïoïooíNà . íoê666óïïïïïoê666óïïïïïoê666óïïooí ...íío666óïïïï666óïïï666óoooíN.N íoooê222êooê222êoooê222êooíí .Níoê222óïooê222óïoê222óooí N. íoooo222óï222óïoo222óoíN. àNíooêóóóêêóóóêúoooêóóóêoúooí ..à íooêóóóóïúoêóóóóïooúúooêóóóóoúúoooí NàNíooóóóóïúúooóóóóïoúoóóóóúúoí à íooêóóóêúúoêóóóêúoêóóóêúúúooíN.Níííêúúúoêúúoêúoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúúoĠĠĠĠĠóúooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïoĠÑÑÑöóóïúoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïúúoooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúoooĠÑÑööÑÏïúúoooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúúúoĠÑÑÑÑÑÏïïúoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóúúúooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.à ïïoïïoïï.à ïïïïoïo.à ïïïïoooíN àNííííí61..à.ïïïïïïïï61..à.ïïïïïïï61..à.ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N...àààà....ààà.......àà.....àà.......àà........ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh3.csi0000644000175000017500000001000007340322006014253 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉġĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġġġĉĉ#o::5555555553ġNġNġ##N##No ;; ;o4ġġġġġġĉĉĉĉ#::55ġġġġġ5:53ġNNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#555ġġ3ġ5ġġ3ġġîġ ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉîġġġġġġġ5ġġ33ġ3ġîîooN.. oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîġġġîììġġġġ35ġġ3ġîîoo ..NN #îîî ġġġġìêêġîĉĉĉĉĉĉġġġêêêêġġġîî333333ġġġoooN.. ooo##î000 ġêììììġ4îîîĉĉĉĉġĉġìêêêêġġîîî533îġìġoo à.NoooN # # îîîîîîġêêìììġġîîîîîġġìêìġġġoîîîġġġìġNàà N N ### ## ġġìììġġNN N N N ġìììġġN N N N îîîġêììîoíí à íN NN #ġêììġġ##########ġììġġġ########ġêììġooííí N.Níooġêêġġ N N N N Nġììġ N N N N Nêììêġġí .N . íoooïïïïïÓêêġġġoïïïïïÓêêêġïïïïïÓêêìġíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêêoïúúúúúÓÓêêÓġoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooê666êïïïooê666êïïoïooíN. . íoê666óïïïïïoê666óïïïïïoê666óïïooí ...íío666óïïïï666óïïï666óoooíN.N íoooê666êooê666êoooê666êooíí .Níoê666óïooê666óïoê666óooí Nà íoooo666óï666óïoo666óoíN. àNíooê222êê222êúúooê222êoúooí ..à íooê222óïúoê222óïooúúooê222óoúoooí NàNíoo222óïúúoo222óïoúo222óoúoí . íooê222êúúoê222êúúúoê222êúúúooíN.Níííêúúúoêúoêúúoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúoĠĠĠĠĠóúooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïúúoĠÑÑÑöóóïoúúooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïúúúoooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïúúoooĠÑÑööÑÏïïúúúoooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏúúúoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúïïĠÑÑÑÑóöúïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61..à.ïïïïïïïï61..à.ïïïïïïï61..à.ïïïooïoooííN . N N N ....à. N N N N6....à. N N N N6....à. ooooooí N..àààà....ààà.....ààà.....àà.......àà..........ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh4.csi0000644000175000017500000001000007340322007014255 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉġġ::555ġġġġ5:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉġġ#ġġ5ġġġġġ5ġġġġ3ġî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉġġġġġêġġ5ġġġġġ3îoooN.. oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîġġġììġġġ55555ġ3ġġîoo ..NN #îîî ġġġġìêġġîĉĉĉĉĉĉĉĉġġġìêġġîîî33333ġġììoooNà. ooo##î000 ġġììġìġ4îîîĉĉĉĉĉĉġġìììġġġîîî53ġġìġġoo ààNoooN # # îîîîîîġġêìììġġîîîîîîîġêêġġġoîîġġììġoN.à N N ### ## ġġìììġġNN N N N NġġìġġN N N N îîġìììġîoíí . íN NN #ġêììġġ###########ġììġġ########ġêêġġooííí N.Níooġêêġġ N N N N Nġġìġġġ N N N Nġġêġġí .N . íoooïïïïïÓêġġġġoïïïïïÓêêìġïïïïïÓêêġíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓêêÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooê666êïïïooê666êïïoïooíN. . íoê666óïïïïïoê666óïïïïïoê666óïïooí ...íío666óïïïï666óïïï666óoooíN.N íoooê666êooê666êoooê666êooíí àNíoê666óïooê666óïoê666óooí Nà íoooo666óï666óïoo666óoíN. àNíooê666êê666êooúoê666êoúooí ..à íooê666óïúoê666óïooúúooê666óúúúoooí N.Níoo666óïúúoo666óïoúúo666óúoí . íooê666êúúoê666êúúoê666êúooíN.Níííêúoêúoêúoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúúoĠĠĠĠĠóúúooooíNà..íooĠÑÑÑöóóïúoĠÑÑÑöóóïúúĠÑÑÑöóóïúúoooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïúúoooíNà íoooĠÑÑööÑÏïúĠÑÑööÑÏïúúúoooĠÑÑööÑÏïúúoooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúïoĠÑÑÑÑÑÏúúïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóúúïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ....à. N N N N6....à. N N N N6....à. ooooooí N.àààà....ààà....ààà......ààà......àà.......à...ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh5.csi0000644000175000017500000001000007340322007014256 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉ#::55533ġġ5:53NNNN.. oo# 0;0;îîġġġĉĉġĉĉġĉĉĉĉ#5555535ġġġġġġġî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5555ġġġġ5ġġ3ġġoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîġġġġġġġ555555ġġġîoo à.NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîġġġġîîîî3333333ġġoooNàà ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉġġîîî533îġìġoo .àNoooN # # îîîîîîġġêìììġġîîîîîîġġġġoîîîîġììġN.. N N ### ## ġġìììġġNN N N N NġìììN N N îîîġġìġîoíí . íN NN #ġêġìġġ##########ġììêìġ#######ġìììġooííí N.Níooġêêġġ N N N N Nġêêêìġ N N N Nġìêġí .N . íoooïïïïïÓêêêġìoïïïïïÓêêìġġġïïïïïÓêêêġíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓêêġoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooê666êïïïooê666êïïoïooíN. . íoê666óïïïïïoê666óïïïïïoê666óïïooí ...íío666óïïïï666óïïï666óoooíNàN íoooê666êooê666êoooê666êooíí àNíoê666óïooê666óïoê666óooí Nà íoooo666óï666óïoo666óoíN. àNíooê666êê666êooúoê666êooooí ... íooê666óïoê666óïooúooê666óoúúoooí N.Níoo666óïúúúoo666óïoúo666óoúoí . íooê666êúúúoê666êúúúúoê666êúúooíN.Níííêúoêúoêúúúoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúúoĠĠĠĠĠóúúooooíNà..íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïúúoooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoúoooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúúooĠÑÑööÑÏïïúúoooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïúoĠÑÑÑÑÑÏúúúoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúúĠÑÑÑÑóúïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí Nàààà....àààà....ààà......ààà.....àà.......àà...ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh6.csi0000644000175000017500000001000007340322010014251 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::5ġġġ3ġġ5:53NNNN.. oo# 0;0;îîġġġĉġġġĉġĉĉĉĉ#55ġ55ġġġġġ3ġġġġ ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġġġġġġ5ġ:ġġ3îoooNà. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîNġġġġġ5555ġġġ3ġġġoo ààNN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉġġġìġìġîîî33333ġġîġoooN.à ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉġġìġġîîî533ġġġġoo ..NoooN # # îîîîîîġġêġììġġîîîîîîîîġììġooîîîîîġġìN.. N N ### ## ġêìììġġNN N N N NġġììġN N N N îîġġġġġîoíí . íN NN #ìêêìġġ##########ġġìììġ########ġìììġooííí N.Níooġìêġġ N N N N NġìììġN N N N Nġìììġí .N à íoooïïïïïÓêìêġġoïïïïïÓêìġġġïïïïïÓêêġġġíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓêġġoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooê666êooê666êoooê666êooíí àNíoê666óïooê666óïoê666óooí Nà íoooo666óï666óïoo666óoíN. .Níooê666êê666êooooê666êooooí ... íooê666óïoê666óïooúúoê666óoúúoooí N.Níoo666óïúúoo666óïoúúo666óoúoí . íooê666êúúoê666êooê666êúooíNàNíííêúúoêúúúúoêúúúúoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóúúooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïúúĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúúĠÑÑöööÏïïooúoooíN. íoooĠÑÑööÑÏïúúúĠÑÑööÑÏïïoúoooĠÑÑööÑÏïïoúúoooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïúúoĠÑÑÑÑÑÏïïúúoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúúĠÑÑÑÑóúúúïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nààà....àààà...ààà.......ààà.....àà.......àà....ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh7.csi0000644000175000017500000001000007340322010014252 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::555ġ3ġġ5:5ġġNNNN.. oo# 0;0;îîġġġĉġĉġĉġĉĉĉĉ#ġ5ġ5ġ3ġġ5ġġġ3ġî ààN #No; ;; 0ġġġġêġĉĉĉĉĉĉĉĉĉĉġġììġġġġġġġġ:ġ3ġġġooNàà oo##oîî; ;;ġêġġġĉĉĉĉĉĉĉĉġġìġġġġ55555ġġ55333ġoo ààNN #îîî ġġġììġġġîĉĉĉĉĉĉĉġġììġîîîîî333333ġġġoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉġġììġîîî533îġîġoo ..NoooN # # îîîîîîġġêìììġġîîîîîîġîììġġooîîîîġġìġN.. N N ### ## ġêììġġġNN N N N NġìììġN N N N îîîġġììġoíí . íN NN #ìêêìġġ###########ġġ##ġ########ġììììġooííí NàNíooììêġġ N N N N Nġììġġġ N N N NÚìììġġí .N à íoooïïïïïÓêìêġìoïïïïïÓêêġġïïïïïÓêììġġíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓÓêġoïúúúúúÓÓêêêġoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíNà . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí àNíoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooê666êê666êooooê666êooooí ... íooê666óïúoê666óïooúúoê666óoúoooí N.Níoo666óïúoo666óïoúúú666óoúúoí à íooê666êúoê666êúoê666êúúúúooíNàNíííêúúúoêúúoêúoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóúooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoúúoooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïúúúúúooĠÑÑööÑÏïúúúoooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïúïoĠÑÑÑÑÑÏïúïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúïïĠÑÑÑÑóúúúïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nàà....àààà...ààà.......ààà.....àà.......àà.....ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhh8.csi0000644000175000017500000001000007340322010014253 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#àNN###########################################NooNN àġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.#à## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###à##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉġġġ:55ġġġġġġ:53NNNN.. oo# 0;0;îîġġġĉĉĉġĉġĉĉĉġġġġġ555ġ3ġġ5:3ġġîî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġġġġ555ġġġ5ġġġooN.. oo##oîî; ;;ġġġġġĉĉĉĉĉĉĉĉĉîîNġġġìġ5555555ġġġġoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉġġġġììġġîî33333ġ3ġġoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉġġììììġġîîî53ġîġììoo ..NoooN # # îîîîîîġġììììġġîîîîîîîġìêêììġoîîîġġġìġN.. N N ### ## ġêììġġġNN N N N Nġġìêìġġġ N N îîîġoġġîoíí à íN NN #ġêêìġġ##########ġġìììġġ#######ġġìììġooííí NàNíooġìêġġ N N N N Nġììġġġ N N N Nġêêêìġí .N à íoooïïïïïÓêìêġġoïïïïïÓêìġġïïïïïÓêêêġíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓêêġġoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíNà . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooooêóóóóooooí NàNíoo666óïúoo666óúúú666óúúúúoí à íooê666êúoê666êúúúoê666êúúooíNàNíííêúúúoêúúoêúúoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóúúooooíN...íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúúooĠÑÑööÑÏïïúúúoooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïïúoĠÑÑÑÑÑÏúúúoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóöúúúĠÑÑÑÑóúúïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nà....àààà...ààà.......ààà.....àà.......àà......ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl1.csi0000644000175000017500000001000007340322010014250 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġġġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġĉĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉġĉĉĉĉĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġġììġġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġġìììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġôêêìġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ġġêìġġ########################Nooííí NàNíooġêêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N à íoooïïïïïÓêêġġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê222êïïïïooêóóóêïïïooêóóóêïïoïooíNà . íoê222óïïïïïoêóóóóïïïïïoêóóóóïïooí à..íío222óïïïïóóóóïïïóóóóoooíN.N íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêúêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooooêóóóóooooí N.Níooóóóóïúúooóóóóïooóóóóooí à íooêóóóêúoêóóóêooêóóóêooíNàNíííêúúúoêoêoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúïĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo.à.ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.à ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí N......àà.......................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl2.csi0000644000175000017500000001000007340322011014252 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġĉġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġĉġĉĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNà. oo##oîî; ;;ġêìêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġììġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġġìììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġġêììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġêêêìġġNN N N N N N N N N N N îîîîoîîîoíí à íN NN #ġêêìġġ########################Nooííí NàNíooġêêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêêġġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooêóóóêïïïooêóóóêïïoïooíNà . íoê666óïïïïïoêóóóóïïïïïoêóóóóïïooí ...íío666óïïïïóóóóïïïóóóóoooíN.N íoooê222êooêóóóêoooêóóóêooíí .Níoê222óïooêóóóóïoêóóóóooí N. íoooo222óïóóóóïooóóóóoíN. .Níooêóóóêêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooooêóóóóooooí NàNíooóóóóïúúooóóóóïooóóóóooí à íooêóóóêúúoêóóóêooêóóóêooíN.Níííêúúúoêoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.à ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN àNííííí61..à.ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N.....àà........................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl3.csi0000644000175000017500000001000007340322011014253 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉġĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġĉĉĉĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNàà oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìêêġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġêììììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġêêìììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġġìììġġNN N N N N N N N N N N îîîîoîîîoíí à íN NN #ġêììġġ########################Nooííí N.Níooġêêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêêġġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoê666óïïïïïoêóóóóïïïïïoêóóóóïïooí ...íío666óïïïïóóóóïïïóóóóoooíN.N íoooê666êooêóóóêoooêóóóêooíí .Níoê666óïooêóóóóïoêóóóóooí N. íoooo666óïóóóóïooóóóóoíN. .Níooê222êêóóóêooooêóóóêooooí ..à íooê222óïúoêóóóóïooooêóóóóooooí NàNíoo222óïúúooóóóóïooóóóóooí . íooê222êúúoêóóóêooêóóóêooíN.Níííêúúúoêoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61..à.ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ....à. N N N N6...... N N N N6...... ooooooí N....àà.........................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl4.csi0000644000175000017500000001000007340322011014254 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNàà oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìêġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġììġìġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġêìììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġġìììġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ġêììġġ########################Nooííí N.Níooġêêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêġġġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoê666óïïïïïoêóóóóïïïïïoêóóóóïïooí ...íío666óïïïïóóóóïïïóóóóoooíN.N íoooê666êooêóóóêoooêóóóêooíí .Níoê666óïooêóóóóïoêóóóóooí N. íoooo666óïóóóóïooóóóóoíN. àNíooê666êêóóóêooooêóóóêooooí ..à íooê666óïúoêóóóóïooooêóóóóooooí N.Níoo666óïúúooóóóóïooóóóóooí . íooê666êúúoêóóóêooêóóóêooíN.Níííêúoêoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíNà íoooĠÑÑööÑÏïúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ....à. N N N N6...... N N N N6...... ooooooí N...àà......à...................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl5.csi0000644000175000017500000001000007340322011014255 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉĉġĉĉġĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNàà oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġêìììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġġìììġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ġêġìġġ########################Nooííí N.Níooġêêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêêêġìoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoê666óïïïïïoêóóóóïïïïïoêóóóóïïooí ...íío666óïïïïóóóóïïïóóóóoooíN.N íoooê666êooêóóóêoooêóóóêooíí .Níoê666óïooêóóóóïoêóóóóooí Nà íoooo666óïóóóóïooóóóóoíN. àNíooê666êêóóóêooooêóóóêooooí ... íooê666óïoêóóóóïooooêóóóóooooí N.Níoo666óïúúúooóóóóïooóóóóooí . íooê666êúúúoêóóóêooêóóóêooíN.Níííêúoêoêoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N..àà......àà...................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl6.csi0000644000175000017500000001000007340322012014257 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉġġġĉġĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNàà oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġêġììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġêìììġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ìêêìġġ########################Nooííí N.Níooġìêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêìêġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí ...ííoóóóóïïïïóóóóïïïóóóóoooíN.N íoooê666êooêóóóêoooêóóóêooíí àNíoê666óïooêóóóóïoêóóóóooí Nà íoooo666óïóóóóïooóóóóoíN. .Níooê666êêóóóêooooêóóóêooooí ... íooê666óïoêóóóóïooooêóóóóooooí N.Níoo666óïúúooóóóóïooóóóóooí . íooê666êúúoêóóóêooêóóóêooíN.Níííêúúoêoêoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N.àà......àà....................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl7.csi0000644000175000017500000001000007340322012014260 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉġĉġĉġĉĉĉĉ#555553555:333îî ààN #No; ;; 0ġġġġêġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooNàà oo##oîî; ;;ġêġġġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġììġġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġêìììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġêììġġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ìêêìġġ########################Nooííí N.Níooììêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N . íoooïïïïïÓêìêġìoïïïïïÓÚÓÓïïïïïÓÚÓÓíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí ...ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí àNíoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooê666êêóóóêooooêóóóêooooí ... íooê666óïúoêóóóóïooooêóóóóooooí N.Níoo666óïúooóóóóïooóóóóooí . íooê666êúoêóóóêooêóóóêooíN.Níííêúúúoêoêoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí Nàà......àà.....................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhl8.csi0000644000175000017500000001000007340322013014262 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉ#::55533355:53NNNN.. oo# 0;0;îîġġġĉĉĉġĉġĉĉĉĉ#555553555:333îî ..N #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#555555555:333îoooN.. oo##oîî; ;;ġġġġġĉĉĉĉĉĉĉĉĉîîNîî55555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîîo#îîîîî3333333îîoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉĉîî#Nîîî533îîîîoo ..NoooN # # îîîîîîġġììììġġîîîîîîîîîîoîooîîîîîîîoN.. N N ### ## ġêììġġġNN N N N N N N N N N N îîîîoîîîoíí . íN NN #ġêêìġġ########################Nooííí N.Níooġìêġġ N N N N NÚÓÓN N N N N NÚÓÓí .N à íoooïïïïïÓêìêġġoïïïïïÓÚÓÓïïïïïÓÚÓÓíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓÓÚÓoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooooêóóóóooooí N.Níoo666óïúooóóóóïooóóóóooí . íooê666êúoêóóóêooêóóóêooíNàNíííêúúúoêoêoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóöoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïooooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïïïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nà......àà......................................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm1.csi0000644000175000017500000001000007340322013014254 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġġġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġĉĉ#::5553ġġġ5:53NNNN.. oo# 0;0;îîġġġĉġĉĉĉĉĉĉĉĉ#55ġġġġġġ5:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉġġġġġġġ5ġġġ55:333îoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉġġNġġġġ5555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉġġììġġîîîîî3333333îîoooN.. ooo##î000 ġġġììġġ4îîîĉĉĉĉĉġġġììġîîî533îîîîoo ..NoooN # # îîîîîîġġġìììġġîîîîîîġìììġġooîîîîîîîoNà. N N ### ## ġôêêìġġNN N N N ġġìġġġġ N N N îîîîoîîîoíí à íN NN #ġġêìġġ##########ġġìġġ#########Nooííí NàNíooġêêġġ N N N N Nġêêġ N N N N NÚÓÓí .N à íoooïïïïïÓêêġġġoïïïïïÓêêġġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê222êïïïïooê222êïïïooêóóóêïïoïooíNà . íoê222óïïïïïoê222óïïïïïoêóóóóïïooí à..íío222óïïïï222óïïïóóóóoooíN.N íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêúêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooúúooêóóóóooooí NàNíooóóóóïúúooóóóóïoúoóóóóooí à íooêóóóêúoêóóóêúúoêóóóêooíNàNíííêúúúoêúoêoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúúooĠÑÑöööÏïïoúúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúïĠÑÑööÑÏïïúoooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúúoĠÑÑÑÑÑÏïïïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóöïïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo.à.ïïïïïïo.à.ïïooïïoo...ïïïïooíN à íïo.à ïïoïïoïï.à ïïïïoïo.. ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí N.....ààà.....àà.......àà.......................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm2.csi0000644000175000017500000001000007340322013014255 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġĉġĉġ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġĉġĉĉ#::ġ5533355:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#5ġġ5ġġġġ5:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġêġġ5ġ55:333îoooN.. oo##oîî; ;;ġêìêġĉĉĉĉĉĉĉĉĉîġġġêġġġ555555533îîoo ..NN #îîî ġġġġììġġîĉĉĉĉĉĉĉĉġġêêġġîîîî3333333îîoooN.. ooo##î000 ġġġìììġ4îîîĉĉĉĉĉĉġġêêġġġîîî533îîîîoo ..NoooN # # îîîîîîġġġêììġġîîîîîîġġġêġġooîîîîîîîoNà. N N ### ## ġêêêìġġNN N N N ġġġêġġN N N N îîîîoîîîoíí à íN NN #ġêêìġġ#########ġġêêêġ#########Nooííí NàNíooġêêġġ N N N N ġêêÓNġN N N N NÚÓÓí .N . íoooïïïïïÓêêġġġoïïïïïÓêêġġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêôïúúúúúÓÓêêġġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooê666êïïïooêóóóêïïoïooíNà . íoê666óïïïïïoê666óïïïïïoêóóóóïïooí ...íío666óïïïï666óïïïóóóóoooíN.N íoooê222êooê222êoooêóóóêooíí .Níoê222óïooê222óïoêóóóóooí N. íoooo222óï222óïooóóóóoíN. .Níooêóóóêêóóóêúoooêóóóêooooí ..à íooêóóóóïúoêóóóóïooúúooêóóóóooooí NàNíooóóóóïúúooóóóóïoúoóóóóooí à íooêóóóêúúoêóóóêúoêóóóêooíN.Níííêúúúoêúúoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúoooĠÑÑööÑÏïïooooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúúúoĠÑÑÑÑÑÏïïïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóöïïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.à ïïoïïoïï.à ïïïïoïo.. ïïïïoooíN àNííííí61..à.ïïïïïïïï61..à.ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N....ààà....àà.......àà.........................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm3.csi0000644000175000017500000001000007340322013014256 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉġĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉġġġĉĉ#o::5555555553ġNġNġ##N##No ;; ;o4ġġġġġġĉĉĉĉ#::55ġġġġġ5:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#555ġġ3ġ555333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉîġġġġġġġ55333333îoooN.. oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîġġġîììġġġ3355533îîoo ..NN #îîî ġġġġìêêġîĉĉĉĉĉĉġġġêêêêġġġîî3333333îîoooN.. ooo##î000 ġêììììġ4îîîĉĉĉĉġĉġìêêêêġġîîî533îîîîoo ..NoooN # # îîîîîîġêêìììġġîîîîîġġìêìġġġoîîîîîîîoNàà N N ### ## ġġìììġġNN N N N ġìììġġN N N N îîîîoîîîoíí à íN NN #ġêììġġ##########ġììġġġ########Nooííí N.Níooġêêġġ N N N N Nġììġ N N N N NÚÓÓí .N . íoooïïïïïÓêêġġġoïïïïïÓêêêġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêêoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí à.....Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí àNííooê666êïïïïooê666êïïïooêóóóêïïoïooíN. . íoê666óïïïïïoê666óïïïïïoêóóóóïïooí ...íío666óïïïï666óïïïóóóóoooíN.N íoooê666êooê666êoooêóóóêooíí .Níoê666óïooê666óïoêóóóóooí N. íoooo666óï666óïooóóóóoíN. àNíooê222êê222êúúooêóóóêooooí ..à íooê222óïúoê222óïooúúooêóóóóooooí NàNíoo222óïúúoo222óïoúoóóóóooí . íooê222êúúoê222êúúúoêóóóêooíN.Níííêúúúoêúoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúúoĠÑÑÑöóóïúúoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïúúoooĠÑÑööÑÏïïooooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïïoíNà íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN à íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61..à.ïïïïïïïï61..à.ïïïïïïï61....ïïïooïoooííN . N N N ....à. N N N N6....à. N N N N6...... ooooooí N...ààà.....àà......àà..........................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm4.csi0000644000175000017500000001000007340322014014260 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::555ġġ3ġ5:53NNNN.. oo# 0;0;îîġġġĉĉĉĉĉĉĉĉĉĉ#55ġġġġ555:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉġġġġġêġġ555:333îoooN.. oo##oîî; ;;ġêêêġĉĉĉĉĉĉĉĉĉîġġġììġġġ55555533îîoo ..NN #îîî ġġġġìêġġîĉĉĉĉĉĉĉĉġġġìêġġîîî3333333îîoooN.. ooo##î000 ġġììġìġ4îîîĉĉĉĉĉĉġġìììġġġîîî533îîîîoo ààNoooN # # îîîîîîġġêìììġġîîîîîîîġêêġġġoîîîîîîîoN.à N N ### ## ġġìììġġNN N N N NġġìġġN N N N îîîîoîîîoíí . íN NN #ġêììġġ###########ġììġġ########Nooííí N.Níooġêêġġ N N N N Nġġìġġġ N N N NÚÓÓí .N . íoooïïïïïÓêġġġġoïïïïïÓêêìġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíNàN.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíNà íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooê666êïïïooêóóóêïïoïooíN. . íoê666óïïïïïoê666óïïïïïoêóóóóïïooí ...íío666óïïïï666óïïïóóóóoooíN.N íoooê666êooê666êoooêóóóêooíí .Níoê666óïooê666óïoêóóóóooí Nà íoooo666óï666óïooóóóóoíN. àNíooê666êê666êooúoêóóóêooooí ..à íooê666óïúoê666óïooúúooêóóóóooooí N.Níoo666óïúúoo666óïoúúoóóóóooí . íooê666êúúoê666êúúoêóóóêooíN.Níííêúoêúoêoí . . íoĠĠĠĠĠóúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïúoĠÑÑÑöóóïúúĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíNà íoooĠÑÑööÑÏïúĠÑÑööÑÏïúúúoooĠÑÑööÑÏïïooooí àNíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïúïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí àNíoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ....à. N N N N6....à. N N N N6...... ooooooí N..ààà.....àà.....àà........à...................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm5.csi0000644000175000017500000001000007340322014014261 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉġġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉ#::55533ġġ5:53NNNN.. oo# 0;0;îîġġġĉĉġĉĉġĉĉĉĉ#5555535ġ5:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5555ġġġġ5:333îoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîġġġġġġġ55555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉîġġġġîîîî3333333îîoooNàà ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉġġîîî533îîîîoo .àNoooN # # îîîîîîġġêìììġġîîîîîîġġġġoîîîîîîîoN.. N N ### ## ġġìììġġNN N N N NġìììN N N îîîîoîîîoíí . íN NN #ġêġìġġ##########ġììêìġ#######Nooííí N.Níooġêêġġ N N N N Nġêêêìġ N N N NÚÓÓí .N . íoooïïïïïÓêêêġìoïïïïïÓêêìġġġïïïïïÓÚÓÓíí....NíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí à ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . . íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí àNíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .Nííooê666êïïïïooê666êïïïooêóóóêïïoïooíN. . íoê666óïïïïïoê666óïïïïïoêóóóóïïooí ...íío666óïïïï666óïïïóóóóoooíN.N íoooê666êooê666êoooêóóóêooíí àNíoê666óïooê666óïoêóóóóooí Nà íoooo666óï666óïooóóóóoíN. àNíooê666êê666êooúoêóóóêooooí ... íooê666óïoê666óïooúooêóóóóooooí N.Níoo666óïúúúoo666óïoúoóóóóooí . íooê666êúúúoê666êúúúúoêóóóêooíN.Níííêúoêúoêoí . . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúúoĠĠĠĠĠóöooooíNà..íooĠÑÑÑöóóïúoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoĠÑÑöööÏïïoooooíNà íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúúooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïúoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúúĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí .NíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíNà íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí N.ààà.....ààà.....àà.......àà...................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm6.csi0000644000175000017500000001000007340322014014262 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉġĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::5ġġġ3ġġ5:53NNNN.. oo# 0;0;îîġġġĉġġġĉġĉĉĉĉ#55ġ55ġġ55:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġġġġġ555:333îoooN.. oo##oîî; ;;ġêġêġĉĉĉĉĉĉĉĉĉîîNġġġġġ555555533îîoo ààNN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉġġġìġìġîîî3333333îîoooN.à ooo##î000 ġġììììġ4îîîĉĉĉĉĉĉĉġġìġġîîî533îîîîoo ..NoooN # # îîîîîîġġêġììġġîîîîîîîîġììġooîîîîîîîoN.. N N ### ## ġêìììġġNN N N N NġġììġN N N N îîîîoîîîoíí . íN NN #ìêêìġġ##########ġġìììġ########Nooííí N.Níooġìêġġ N N N N NġìììġN N N N NÚÓÓí .N . íoooïïïïïÓêìêġġoïïïïïÓêìġġġïïïïïÓÚÓÓíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííNàNíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN .Nííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN Nà íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí ...ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooê666êooê666êoooêóóóêooíí àNíoê666óïooê666óïoêóóóóooí Nà íoooo666óï666óïooóóóóoíN. .Níooê666êê666êooooêóóóêooooí ... íooê666óïoê666óïooúúoêóóóóooooí N.Níoo666óïúúoo666óïoúúoóóóóooí . íooê666êúúoê666êooêóóóêooíN.Níííêúúoêúúúúoêoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïúúĠÑÑÑöóóïoooooí àN íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúúĠÑÑööÑÏïïoúoooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúïoĠÑÑÑÑÑÏïïúúoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúúúĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíN. íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí àNíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN . N N N ...... N N N N6...... N N N N6...... ooooooí Nààà.....ààà....àà........àà....................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm7.csi0000644000175000017500000001000007340322014014263 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#.NN###########################################NooNN #ġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.# ## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###.##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġĉġĉ#::555ġ3ġġ5:53NNNN.. oo# 0;0;îîġġġĉġĉġĉġĉĉĉĉ#ġ5ġ5ġ3ġġ5:333îî ààN #No; ;; 0ġġġġêġĉĉĉĉĉĉĉĉĉĉġġììġġġġġġ55:333îoooNàà oo##oîî; ;;ġêġġġĉĉĉĉĉĉĉĉġġìġġġġ55555555533îîoo .àNN #îîî ġġġììġġġîĉĉĉĉĉĉĉġġììġîîîîî3333333îîoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉġġììġîîî533îîîîoo ..NoooN # # îîîîîîġġêìììġġîîîîîîġîììġġooîîîîîîîoN.. N N ### ## ġêììġġġNN N N N NġìììġN N N N îîîîoîîîoíí . íN NN #ìêêìġġ###########ġġ##ġ########Nooííí N.Níooììêġġ N N N N Nġììġġġ N N N NÚÓÓí .N à íoooïïïïïÓêìêġìoïïïïïÓêêġġïïïïïÓÚÓÓíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓÓêġoïúúúúúÓÓÓÚÓoooí N à íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.N. N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN....àNíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíN. . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí àNíoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooê666êê666êooooêóóóêooooí ... íooê666óïúoê666óïooúúoêóóóóooooí N.Níoo666óïúoo666óïoúúúóóóóooí . íooê666êúoê666êúoêóóóêooíNàNíííêúúúoêúúoêoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíNà..íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïúúúúúooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïúïoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóúúïïĠÑÑÑÑóöïïïooí .NíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíNà íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN .Nííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nàà.....ààà....àà........àà.....................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryhm8.csi0000644000175000017500000001000007340322015014265 00000000000000# N #ġ N N N N N N N N N N N N N N N N N N N N ooooġ#àNN###########################################NooNN àġ ## N; N;N N N N N N N N N ï N N N N N N N Noġ# NN##N;  3;;4ïĉĉĉĉĉĉ#:::55o N ġNġ .#ġ ## 0033ooĉĉĉĉĉĉĉo#oo:5555555oġ#.#à## ###N;;  3;04ĉĉĉĉĉĉĉĉĉo#N5::55555553###à##### o;00;0 0;ooĉĉúĉĉĉĉĉĉ#o::5555355553ġNġNġ##N##No ;; ;o4ġġġġġġġġġĉ#::55ġġġġġġ:53NNNN.. oo# 0;0;îîġġġĉĉĉġĉġĉĉĉĉ#5555ġ3ġġ5:333îî ààN #No; ;; 0ġġġġġġĉĉĉĉĉĉĉĉĉĉî#5ġġġġ5555:333îoooN.. oo##oîî; ;;ġġġġġĉĉĉĉĉĉĉĉĉîîNġġġìġ555555533îîoo ..NN #îîî ġġġġìġġġîĉĉĉĉĉĉĉĉġġġġììġġîî3333333îîoooN.. ooo##î000 ġġìġììġ4îîîĉĉĉĉĉĉġġììììġġîîî533îîîîoo ..NoooN # # îîîîîîġġììììġġîîîîîîîġìêêììġoîîîîîîîoN.. N N ### ## ġêììġġġNN N N N Nġġìêìġġġ N N îîîîoîîîoíí . íN NN #ġêêìġġ##########ġġìììġġ#######Nooííí NàNíooġìêġġ N N N N Nġììġġġ N N N NÚÓÓí .N à íoooïïïïïÓêìêġġoïïïïïÓêìġġïïïïïÓÚÓÓíí...àNíooïúúúúúÓÓêêôïúúúúúÓÓêêġoïúúúúúÓÓÓÚÓoooí N . íoïúôôôÓÓÓÓÓooïúôôôÓÓÓÓÓoïúôôôÓÓÓÓÓoíííN.NíííoïúôöÓÓÓÓÓöïïúôöÓÓÓÓÓöïoïúôöÓÓÓÓÓöïooí . ííNíoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoïúôöÓÓÓÓïöïïoíN.N.N . íoïúôöÓÓÓïïöïïïïúôöÓÓÓïïöïïoïúôöÓÓÓïïöïNïoíí ......Níïúôöïppïïöïïooïúôöïppïïöïïooïúôöïppïïöïïïí.Nà N N íoïúôöööppïöïïïïúôöööppïöïïïïúôöööppïöïoïíNíN àNííííïúôööööpïöïïoïúôööööpïöïïoïúôööööpïöïïïí . . à íooïúôöööööïöïïooïúôöööööïöïïoïúôöööööïöïïïíN.....NíooïúôöööööïöïïoïúôöööööïöïïïïúôöööööïöïïïííN N. íooooïúôïïïïöïöïïïoïúôïïïïöïöïïooïúôïïïïöïöïïoooíí .NíoooïúïïëëïïöïïïïúïïëëïïöïïoïúïïëëïïöïïNooíN. íoooïïëëëëïïïïoïïëëëëïïïïoïïëëëëïïïoïooí .NííooêóóóêïïïïooêóóóêïïïooêóóóêïïoïooíNà . íoêóóóóïïïïïoêóóóóïïïïïoêóóóóïïooí à..ííoóóóóïïïïóóóóïïïóóóóoooíNàN íoooêóóóêooêóóóêoooêóóóêooíí .Níoêóóóóïooêóóóóïoêóóóóooí N. íooooóóóóïóóóóïooóóóóoíN. .Níooêóóóêêóóóêooooêóóóêooooí ... íooêóóóóïúoêóóóóïooooêóóóóooooí N.Níoo666óïúoo666óúúúóóóóooí à íooê666êúoê666êúúúoêóóóêooíNàNíííêúúúoêúúoêoí à . íoĠĠĠĠĠóúúooĠĠĠĠĠóúúúoĠĠĠĠĠóöooooíN...íooĠÑÑÑöóóïoĠÑÑÑöóóïoĠÑÑÑöóóïoooooí .N íoĠÑÑöööÏïïúooĠÑÑöööÏïïoúĠÑÑöööÏïïoooooíN. íoooĠÑÑööÑÏïúúĠÑÑööÑÏïïúúúúooĠÑÑööÑÏïïooooí .NíoĠÑÑÑÑÑÏúúúoĠÑÑÑÑÑÏïïúoĠÑÑÑÑÑÏïïïoíN. íooĠÑÑÑÑóöïïïĠÑÑÑÑóöúúúĠÑÑÑÑóöïïïooí àNíoooĠÑÑÑöóóïïïoĠÑÑÑöóóïïïooĠÑÑÑöóóïïïooíNà íooĠÑÑöööÏïïïoĠÑÑöööÏïïïooĠÑÑöööÏïïooooí àNíoooooĠÑÑööÑÏïïooĠÑÑööÒÏïïoĠÑÑööÒÏïïïooíN. íooĠÒÒÒÒÒÏïïïĠÒÒÒÒÒÏïïïooĠÒÒÒÒÒÏoïïooí .NíoÏÑÌÌÌÏÏïïïÏÒÌÌÌÏÏïïïooÏÒÌÌÌÏÏïïïooooíN. íooooooÏÌÌÌÌÌÏïoïïoÏÌÌÌÌÌÏïïïïoÏÌÌÌÌÌÏïïïïoooí .Níoo...ïïïïïïo...ïïooïïoo...ïïïïooíN . íïo.. ïïoïïoïï.. ïïïïoïo.. ïïïïoooíN àNííííí61....ïïïïïïïï61....ïïïïïïï61....ïïïooïoooííN à N N N ...... N N N N6...... N N N N6...... ooooooí Nà.....ààà....àà........àà......................ooooíííN N N N N N N N N N N N N N N NNN N N N N N NNoooíííííïïïïïoïoooooooïoïoïooïoooïooooooooooooooooooooooolincity-1.13.1/icons/industryl-button.csi0000644000175000017500000000040007340322015015340 00000000000000ġġ;;;;;ġġ;;;;9;;ġ;;;;99ġġġ;;;999ġ;;99999ġ;;999ġ999!!!!!!!!!œœœœ!!!œœœœ!!!UUUU!!!UUUU!!!!!!!!lincity-1.13.1/icons/industrylh1.csi0000644000175000017500000000440007340322015014264 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜööĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝïïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝĝïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜöÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍöĠÒíïĠĠ×ÒÒ×××××ĝ×ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĝĠÒÒÒÒÒÒÒĠĠĜöÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ××ĝĝĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĝĝĠĠĠĠĠĠĠĠĠĠĠĜÍöĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylh2.csi0000644000175000017500000000440007340322015014265 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéĝĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜöÍĠÒíïïïĠĠĠ×ïUêïêĝïïġéïïĠ×××××××××××××××ÒĠĜÍÍĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍöĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒĝĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĠĝĠÒÒÒÒÒÒÒĠĠĜÍöĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜöÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylh3.csi0000644000175000017500000000440007340322015014266 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéoĝïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍöĠÒíïïïĠĠĠ×ïUêïĝUïïġéïïĠ×××××××××××××××ÒĠĜÍÍĠÒíïïĠ×ÒÒ×ïUêêĝĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜöÍĠÒíïĠĠ×ÒÒ××××ĝĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝÒĝ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylh4.csi0000644000175000017500000000440007340322015014267 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝĝïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUĝïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜöÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍöĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industryll1.csi0000644000175000017500000000440007340322015014270 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜööĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝïïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝĝïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××ĝ×ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĝĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ××ĝĝĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĝĝĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industryll2.csi0000644000175000017500000000440007340322015014271 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéĝĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêĝïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒĝĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĠĝĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industryll3.csi0000644000175000017500000000440007340322017014274 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéoĝïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïĝUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêĝĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ××××ĝĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝÒĝ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industryll4.csi0000644000175000017500000000440007340322017014275 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝĝïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUĝïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylm1.csi0000644000175000017500000000440007340322017014273 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜööĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝïïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝĝïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜöÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍöĠÒíïĠĠ×ÒÒ×××××ĝ×ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĝĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ××ĝĝĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĝĝĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylm2.csi0000644000175000017500000000440007340322017014274 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéĝĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜöÍĠÒíïïïĠĠĠ×ïUêïêĝïïġéïïĠ×××××××××××××××ÒĠĜÍÍĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍöĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒĝĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĠĝĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylm3.csi0000644000175000017500000000440007340322017014275 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéoĝïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝoïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍöĠÒíïïïĠĠĠ×ïUêïĝUïïġéïïĠ×××××××××××××××ÒĠĜÍÍĠÒíïïĠ×ÒÒ×ïUêêĝĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜöÍĠÒíïĠĠ×ÒÒ××××ĝĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝÒĝ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylm4.csi0000644000175000017500000000440007340322017014276 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïĝĝïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéĝïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUĝïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêĝïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××ĝĝÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒĝĝÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĝĝĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĝĝĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylq1.csi0000644000175000017500000000440007340322017014277 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜööĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïooïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéïïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××××ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒÒÒÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĠĠĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×××ĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylq2.csi0000644000175000017500000000440007340322017014300 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïooïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéïïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××××ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒÒÒÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĠĠĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×××ĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylq3.csi0000644000175000017500000000440007340322017014301 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïooïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéïïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××××ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒÒÒÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĠĠĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×××ĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/industrylq4.csi0000644000175000017500000000440007340322017014302 00000000000000ïïïïïöïïïïïïïïïïïïöïïïïïïïïïïïïïïïoïïoïïïïïïïïïïïïïïïïïïïïïï" ïïoooïïïoïïïoïïïïïïïïïïïïïïïïïïïïQQï""#""""""#íïïïïï××××××××××××××××××××××××ïïïïQQ"""# """""#ííïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒïïïïï"""# "ú"""#ííïïïĠĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïïïï"""# ""#""#PPUUUÏĠ×ÒĠĠÙĠĠĠÙĠĠĠÙĠĠĠĜĜĜĜĜĠÒíïïïïíí"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĜÍöĠÒíïïïïïí"# """""#ííêïïÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠÒíïïöööï"# """""#ççêêêÏÏ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜöÍĠÒíïïïïïï"# "ú"""#PPUUUÏĠ×ÒĠĜĠÒíïïïïïï"# ""#""#ííïïïĠĠ××××××××××××××ÒĠĠĠĠĠĠĠÒíïïïïï""# """""#ííïïïĠĠ×éÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïïïï"""# """""#ííïïïĠÒÒéÒÒÒÒÒÒÒÒÒÒÒ×ÒĠĠĠĠĠĠĠÒíïQQ""" ííïïïïïġéííííííííííĠ×ÒĠĠĠÙĠĠĠÒíïQQ""" ííïïïïġïéííííííííííĠ×ÒĠĠĠĠĠĠÒíïïï"ï ííïïoïïïéïïïïïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïíííPçççPíííïïïïïġéïïïïïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïííPçççPíííïïïïġïéïNPYSïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïíPçççPíííïïïïïïéNSSSPPïoïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïoïïïUêïêUïïġéééééééSNYPYSïïoïĠ×ÒĠĠĠĠĠĠÒíïïïïïoïïUêïêUïġïéġï!ġAïYNSPSïïïoïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïoéïï yA"#NYSPïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïïġéïïAZZ###NNïïïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïooïoïïUêïêUïġoéïïAA###ïïïïïoïïïĠ×ÒĠĠĠÙĠĠĠÒíïïoïïoïïUêïêUïooéïï!"A#AyZAïooïïïĠ×ÒĠĠĠĠĠĠÒíïïoïïïïïUêêêUïïġéïï A"yAZAAïoïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïoïUêêêUïġïéïï!A!A!AA ïoïoïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïoooïUêïêUïïïéooïïïïïíííïïïïïïĠ×ÒĠĠĠĠĠĠĠÒíïïïooïïïUêïêUïoġéïooïïïïïíííïïíïïĠ×ÒĠĠĠĠĠĠĠÒíïïïïïïïïUêêêUïġoéïïïïïoïïïííííííïĠ×ÒĠĜĜĜĜĜĠÒíïïïïïïïïUêïêUïïïéïïïïïïïïïííííííïĠ×ÒĠĜÍÍĠÒíïïïĠĠĠ×ïUêïêUïïġéïïĠ×××××××××××××××ÒĠĜööĠÒíïïĠ×ÒÒ×ïUêêêUïġoéï×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒĠĜÍÍĠÒíïĠĠ×ÒÒ×××××××ÒïïéĠ×ÒĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĜĠÒíïĠĠ×ÒĠÒÒÒÒÒÒÒ××××Ġ×ÒĠĠĜĜĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠĠĠĠĠĠĠÒÒÒÒÒÒÒĠĠĜÍÍĠĠÙĠĠĠĠÙĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×××ĠĠĠĠĠĠĠĠĠĠĠĠĜööĠĠĠĠĠĠĠĠĠÒíïĠĠ×ÒĠĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĜÍÍĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠ×ĠĠĠÒÒÒÒÒĠĠĜĠĠĠĠĠĠĠĠĠĠÒÒÒÒÒÒííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒíííííííïĠĠ×ÒĠĠĠĠĠĠĠĠíííĠ×ÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííííííïĠĠ×ÒíííĠÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒÒííííïïïïïĠĠ×ÒÒÒÒÒÒÒÒÒÒííííííííííííííííííííííííííííïïïïïĠĠÒÒÒÒÒÒÒÒÒÒíííííííííííííííííííííííííííííïïïïïĠÒÒÒÒÒÒÒÒÒÒíííííííïïïoïïïïïooïïïïïïïïïïïïïïïïïlincity-1.13.1/icons/load-button.csi0000644000175000017500000000200007340322017014222 00000000000000‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹ŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒ‹‹ŒŒ‹‹ŒŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŒ‹‹ŒŽŽŒ‹‹ŒŽŽŒ‹‹ŒŽ‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘ŽŒ‹‹ŒŽŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹ŒŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŸ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŸ‘‘’’’’’’’’’’’’’’’’’’’ŽŒ‹‹ŒŸ‘‘’’’’ŸŸŸ’’’’’Ÿ’’’’ŸŸŸŽŒ‹‹ŒŸ‘’’’Ÿ’’’Ÿ’’’’Ÿ’’’’Ÿ’ŸŽŒ‹‹ŒŸ‘’’’Ÿ’’’Ÿ’’’Ÿ’Ÿ’’’Ÿ‘ŸŒ‹‹ŒŸ‘’’’Ÿ’’’Ÿ’’’Ÿ’Ÿ’’’Ÿ’ŸŒ‹‹ŒŽŸ‘’’’Ÿ’’’Ÿ’’ŸŸŸŸŸ’’Ÿ‘ŸŒ‹‹ŒŽŸ‘’’’Ÿ’’’Ÿ’’Ÿ’’’Ÿ’’Ÿ‘ŸŒ‹‹ŒŽŸ‘’’’Ÿ’’’Ÿ’’Ÿ’’’Ÿ’’Ÿ’ŸŽŒ‹‹ŒŽŸŸŸŸŸ’’’ŸŸŸ’’’Ÿ’’’Ÿ’’ŸŸŸŽŒ‹‹ŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŽ‘’’’’’’’’’’’’’’’’’’‘ŽŒ‹‹ŒŽ‘‘‘‘‘‘‘‘‘‘’’’’’’’’’‘ŽŒ‹‹ŒŽ’’’’’’’’’‘ŽŒ‹‹ŒŽ‘‘‘‘‘‘‘‘‘ŽŒ‹‹ŒŽŽŒ‹‹ŒŽŽŽŽŽŽŽŽŽŽŽŽŽŽŒŒ‹ŒŽŽŽŽŽŽŽŽŽŽŽŽŽŽŒŒ‹ŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒŒ‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹lincity-1.13.1/icons/market-button.csi0000644000175000017500000000040007340322017014570 000000000000008888888888>>>>>>>>>88ö>>>>>>>>>88ö>>>>>>>>>8ö—————————ööööööööö^ö^ööö^^ö^^^ööö?ö?öö??ö>^?>öö???^^ööölincity-1.13.1/icons/market-empty.csi0000644000175000017500000000200007340322020014403 00000000000000!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMâââMMMMMMMMMMMM!!MMM=60MMàMàMMMMâMMMM=======MMM!!MMM=60MMMàMMMMMâââMM===6600MMM!!MMM=60MMàMàMMMMMMMMM===6600MMM!!MMM=60MMMàMMMMMâMMMM===6600MMM!!MMMMMMMMàMàMMMMâMMMM===6600MMM!!MMMMMMMMMàMMMMMâââMM===6600MMM!!MMMMMMMMàMàMMMMMMMMM===6600MMM!!MMM=60MMMàMMMMMâââMM===6600MMM!!MMM=60MMàMàMMMMâMâMM==00000MMM!!MMM=60MMMàMMMMMâââMM=000000MMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMâââMMMMMMMMMMMM!!MMMMMMMMàMàMàMàâàMàMàMMMMMMMMM!!MMMMMMMMMàMàMàMâââMàMMMMMMMMMM!!MMMMMMMMàMàMàMàMàâàMàMMMMMMMMM!!MMM=60MMMàMMMMMâââMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMMàMMMMMâââMMMMMMMMMMMM!!MMM=60MMàMàMMMMâMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMââMMMMMMMMMMMMM!!MMMMMMMMàMàMMMMâMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMâââMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMMàMMMMMââMMMMMMMMMMMMM!!MMM=60MMàMàMMMMâMâMMMMMMMMMMMM!!MMM=60MMMàMMMMMâMâMMMMMMMMMMMM!!MMMMMMMMàMàMMMMââMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!lincity-1.13.1/icons/market-full.csi0000644000175000017500000000200007340322020014207 00000000000000!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!M@@@U@@@@@@@M======M=======MMM!!M@@U@@MMMMMMK==6600M===6600MMM!!M@U@@@UUUUUKK==6600M===6600MMM!!MU@@@UMAAAAKK==6600M===6600MMM!!M@@@U@AAAAAKK==6600M===6600MMM!!M@@U@@AAAAAKK==6600M===6600MMM!!M@U@@@UUUUUKK==6600M===6600MMM!!MU@@@UMAAAAKK==6600M===6600MMM!!M@@@U@AAAAAKK=60000M==00000MMM!!M@@U@@AAAAAKK660000M=000000MMM!!M@U@@@UUUUUKKMMMMMMMMMMMMMMMMM!!MU@@@UMAAAAKKMMMMMMMMMMMMMMMM!!M@@@U@AAAAAKKàMààMàMMMMMMMMM!!M@@@KKKKKKKàMàMàMàMàMMMMMMMMMM!!M@@UAAAAAKKàMàMàMàMàMMMMMMMMM!!M@U@AAAAAKKMMMMMMMMMMMMMMMMMMM!!MU@@AAAAAKKMMúúôôôôôôôôôôôôïMM!!M@@@UUUUUKKMúúúïïïïïïïïïïïïïMM!!M@@UAAAAAKKMúàúïôôôôôôôôôôïïMM!!M@U@AAAAAKKMúàúïôôôôôôôôôô÷ïMM!!MU@@AAAAAKKMú=úïôôôôôôôôôô÷ïMM!!M@@@UUUUUKKMúàúïôôôôôôôôôô÷ïMM!!M@@UAAAAAKKMú=úïôôôôôôôôôô÷ïMM!!M@U@KKKKKKKMúàúïôôôôôôôôôô÷ïMM!!MU@KKKKKKKKMúàúëëëëëëëëëëëëïMM!!M@KKKKKKKKKMúúïïïïïïïïïïïïïïMM!!MMMMMMMMMMMMúïïïïïïïïïïïïïïïMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!lincity-1.13.1/icons/market-low.csi0000644000175000017500000000200007340322020014046 00000000000000!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMM=======MMM!!MMM=60MMàMMMMMMMMMM===6600MMM!!MMM=60MMàMàMMMMMMMMM===6600MMM!!MMM=60MMMàMMMMMMMMM===6600MMM!!MMMMMMMMàMàMMMMMMMMM===6600MMM!!MMMMMMMMàMMMMMMMMMM===6600MMM!!MMMMMMMMààMMMMMMMMM===6600MMM!!MMM=60MMMàMMMMMMMMMM===6600MMM!!MMM=60MMàMàMMMMMMMMM==00000MMM!!MMM=60MMMàMMMMMMMM=000000MMM!!MMM=60MàMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMàMàMààMààMàMMMMMMMMM!!MMMMMMMMMàMàMàMàMàMàMMMMMMMMMM!!MMMMMMMMàMààMàMàMàMàMMMMMMMMM!!MMM=60MMàMMMMMMMMMMMMMMMMMMMM!!MMM=60MàMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMààMMMMMMMMMMMMMMMMMMM!!MMMMMMMMàMMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMàMMMMMMMMMMMMMMMMMMM!!MMM=60MMMàMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMàMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!lincity-1.13.1/icons/market-med.csi0000644000175000017500000000200007340322020014012 00000000000000!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!MMM=60MMàMàM=======M=======MMM!!MMM=60MMàMM===6600M===6600MMM!!MMM=60MMàMàM===6600M===6600MMM!!MMM=60MMMàM===6600M===6600MMM!!MMMMMMMMàMàM===6600M===6600MMM!!MMMMMMMMàMM===6600M===6600MMM!!MMMMMMMMààM===6600M===6600MMM!!MMM=60MMMàMM===6600M===6600MMM!!MMM=60MMàMàM==60000M==00000MMM!!MMM=60MMMàM=660000M=000000MMM!!MMM=60MàMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMMàMMMMMMMMMMMMMMMMMMM!!MMMMMMMMàMàMààMààMàMMMMMMMMM!!MMMMMMMMMàMàMàMàMàMàMMMMMMMMMM!!MMMMMMMMàMààMàMàMàMàMMMMMMMMM!!MMM=60MMàMMMMMMMMMMMMMMMMMMMM!!MMM=60MàMàMMúúôôôôôôôôôôôôïMM!!MMM=60MMàMMúúúïïïïïïïïïïïïïMM!!MMM=60MMàMàMúàúïôôôôôôôôôôïïMM!!MMMMMMMMMàMMúàúïôôôôôôôôôô÷ïMM!!MMMMMMMMààMú=úïôôôôôôôôôô÷ïMM!!MMMMMMMMàMMúàúïôôôôôôôôôô÷ïMM!!MMM=60MMàMàMú=úïôôôôôôôôôô÷ïMM!!MMM=60MMàMúàúïôôôôôôôôôô÷ïMM!!MMM=60MMàMàMúàúëëëëëëëëëëëëïMM!!MMM=60MMMàMMúúïïïïïïïïïïïïïïMM!!MMMMMMMMàMàMúïïïïïïïïïïïïïïïMM!!MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!lincity-1.13.1/icons/market.csi0000644000175000017500000000200007340322011013247 00000000000000lincity-1.13.1/icons/med-offl.csi0000644000175000017500000000040007340322020013457 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÌÌÌÜÖÖÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÌÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/med-offr.csi0000644000175000017500000000040007340322020013465 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÉÉÜÉÉÉÜÜÜÜÜÜÜÖÖÜÜÜÉÜÜÉÜÜÜÜÜÜÖÖÉÜÜÉÜÜÉÜÜÜÜÜÜÖÖÜÜÜÉÜÜÉÜÜÜÜÜÜÖÖÜÜÜÉÜÜÉÜÜÜÜÜÜÖÖÉÉÜÉÉÉÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/med-onl.csi0000644000175000017500000000040007340322020013321 00000000000000>>>>>>>>>>>>>>>>>888888888888888>888888888888888>822222222222222>822222222222222>8222222+&+&+2&&>8222222&2&22&2>8222222&2&22&&>8222222&2+22&2>8222222&2222&2>8222222&2222&&>822222222222222>822222222222222>888888888888888>888888888888888>>>>>>>>>>>>>>>>lincity-1.13.1/icons/med-onr.csi0000644000175000017500000000040007340322020013327 00000000000000>>>>>>>>>>>>>>>>888888888888888>888888888888888>222222222222288>222222222222288>&&2&&&222222288>222&22&22222288>&22&22&22222288>222&22&22222288>222&22&22222288>&&2&&&222222288>222222222222288>222222222222288>888888888888888>888888888888888>>>>>>>>>>>>>>>>>lincity-1.13.1/icons/menu-button.csi0000644000175000017500000000200007340322020014241 00000000000000˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ïï˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙êê˙˙˙˙˙˙˙˙˙˙˙˙éé˙˙˙˙˙˙˙˙˙˙˙˙˙ëë˙˙˙˙˙˙˙˙˙˙˙˙˙˙îî˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙lincity-1.13.1/icons/mill-button.csi0000644000175000017500000000040007340322020014234 00000000000000ӗӗ——“—————“—————“———————————————————————————————————————————lincity-1.13.1/icons/mill0.csi0000644000175000017500000000200007340322020013001 00000000000000tttttttttttttttttttttttttttttttttWWWWWWWWWWWWW3::WWWWWWWWWWWWttWWWWWWWWWW5:3:3WWWWWWWWWWWttWWWWWWW5555:::333WWWWWWWWWWttWWWWWW 55555:::33333WWWWWWWWWttWWWWW 55555::33333333::WWWWWttWWWW 5555553333333:558WWWWttWWW ó 5555553::3333:558WWWWttWW 555555:3:333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWWWWttWW ó ó 55555::83333333PPPWWWWttWW 555558833333333PPWWWWPttWW ó ó 55555533333333PPWWWPPttWW 55555533333333PPWWPPPttWW ó ó 55555533333333PPWPPPWttWW 55555533333333PPPPPWWttWW ó ó 555551133333333PPPPWWWttWW 555111133333333PPPWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill1.csi0000644000175000017500000000200007340322021013003 00000000000000ttttttttttttttttttttĝttttttttttttWWWWWWWWWWWWW3:ĝĝWWWWWWWWòWWttWWWWWWWWWW5:ĝĝ3WWWWWWWWòWWttWWWWWWW5555:::333WWWWWWWòWWttWWWWWW 55555:::33333WWWWWòWWttWWWWW 55555::33333333òòòWWWttWWWW 555555333ĝ333:òòñWWWWttWWW ó 5555553:ĝĝ333:òñWWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWúWWttWW ó ó 55555::83333333PPWúúWWttWW 555558833333333PPġġġġWttWW ó ó 55555533333333PPúúúWPttWW 55555533333333PPġúúPPttWW ó ó 55555533333333PúġġúPWttWW 55555533333333úúWPPWWttWW ó ó 555551133333333PPPPWWWttWW 555111133333333PPPWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill2.csi0000644000175000017500000000200007340322021013004 00000000000000tttttttttttttttttttttttttttttttttWWWWWWWWWWWWW3:ĝĝĝWWWWWWWWWWttWWWWWWWWWW5:ĝĝ3WWWWWWWWWòòttWWWWWWW5555:::333WWWWWWWòttWWWWWW 55555:::33333WWWWWòWWttWWWWW 55555::33333ĝ33òòòWWWttWWWW 5555553333333:òòñWWWWttWWW ó 5555553:ĝĝĝ33:òñWWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWġúWttWW ó ó 55555::83333333PPWúúġWttWW 555558833333333PPúúúġWttWW ó ó 55555533333333PPúúúPPttWW 55555533333333PPúúúPPttWW ó ó 55555533333333PúúġġPWttWW 55555533333333úúPPWWWttWW ó ó 555551133333333PPPWWWWttWW 555111133333333PPWWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill3.csi0000644000175000017500000000200007340322021013005 00000000000000tttttttttttttttttttttĝtttttttttttWWWWWWWWWWWWW3:ĝĝĝĝWWWWWWWWWttWWWWWWWWWW5:ĝĝ3WWWWWWWWòòòttWWWWWWW5555:::333WWWWWWòòttWWWWWW 55555:::33333WWòòòòWttWWWWW 55555::3333ĝĝ33òòòWWWttWWWW 5555553333ĝ33:òòWWWWttWWW ó 5555553:ĝĝĝ33:òñWWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWġúWttWW ó ó 55555::83333333PPWúúġWttWW 555558833333333PPġġúġWttWW ó ó 55555533333333PPúġġWPttWW 55555533333333PPúúúPPttWW ó ó 55555533333333PġġġġPWttWW 55555533333333úúPPPWWttWW ó ó 555551133333333PPPWWWWttWW 555111133333333PPWWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill4.csi0000644000175000017500000000200007340322021013006 00000000000000tttttttttttttttttttttttttttttttttWWWWWWWWWWWWW3:ĝĝWĝWWWWWWòòttWWWWWWWWWW5:ĝĝ3WWWWWWWòòttWWWWWWW5555:::333WWWWWWòWWttWWWWWW 55555:::33333WWWòòòWWWttWWWWW 55555::33333ĝ33òóòWWWttWWWW 5555553333ĝ33:óóWWWWttWWW ó 5555553:ĝĝ333:òñWWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWúúWttWW ó ó 55555::83333333PPWúġġWttWW 555558833333333PPWġúWPttWW ó ó 55555533333333PPúúġPPttWW 55555533333333PPúġúPWttWW ó ó 55555533333333PġúġPWWttWW 55555533333333úúPPWWWttWW ó ó 555551133333333PPPWWWWttWW 555111133333333PPWWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill5.csi0000644000175000017500000000200007340322021013007 00000000000000ttttttttttttttttttttttttttttòòtttWWWWWWWWWWWWW3ĝĝĝĝĝWWWWWòòòttWWWWWWWWWW5:ĝĝĝWWWWWWWòòWttWWWWWWW5555:::333WWWWWòòWWttWWWWWW 55555:::33333WWWòòòWWWttWWWWW 55555::3333ĝĝ33òòòWWWttWWWW 555555333ĝĝ33:WWWWttWWW ó 5555553:ĝĝ333:WWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWWúġttWW ó ó 55555::83333333PPWWúúWttWW 555558833333333PPWWúúWttWW ó ó 55555533333333PPWúúġPttWW 55555533333333PPúġġPPttWW ó ó 55555533333333PúġúPWWttWW 55555533333333úúPPWWWttWW ó ó 555551133333333PPPWWWWttWW 555111133333333PPWWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/mill6.csi0000644000175000017500000000200007340322021013010 00000000000000tttttttttttttttttttttttttttttttttWWWWWWWWWWWWW3ĝĝĝĝWWWWWWWòWWttWWWWWWWWWW5:ĝĝWWWWWWWWòòWttWWWWWWW5555:::333WWWWWòòïWWttWWWWWW 55555:::33333WWWòòïWWWttWWWWW 55555::33333333òòòïWWWttWWWW 555555333ĝĝ33:òòïWWWWttWWW ó 5555553:ĝĝ333:òòïWWWWttWW 555555:ĝĝ333:::8WWWWWttWW ó ó 555555:::333:::8PWWWWWttWW 55555:::333:::8PPWWWWWttWW ó ó 55555::333:::83PPWWWWWttWW 55555533:::833PPWWWWWttWW ó ó 5555553:::8333PPWWWWWttWW 555555:::83333PPWWWWWttWW ó ó 555555::833333PPWWWWWttWW 55555:::8333333PPPWWúġttWW ó ó 55555::83333333PPWWúúWttWW 555558833333333PPWWúúWttWW ó ó 55555533333333PPWúúġPttWW 55555533333333PPúġġPPttWW ó ó 55555533333333PúġúPPWttWW 55555533333333úúPPWWWttWW ó ó 555551133333333PPPWWWWttWW 555111133333333PPWWWWWttWW ó 5511111111333333PPWWWWWttWW 15555555555553133PPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPWWWWWttWW 111111111111111111PPPWWWWWttWW 1111ò1ò1ò1ò1ò1ò111PPPPWWWWWttWW111111111111111111PPPPWWWWWWtttttttttttttttttttttttttttttttttlincity-1.13.1/icons/monument-button.csi0000644000175000017500000000040007340322021015142 00000000000000ôôôôôôôôôôôôôôôòòòòòòòôôôòôòôòôòôòôòôòôòôòTôòTôòTTôòTTôòTTTTTôóTTTTTlincity-1.13.1/icons/monument0.csi0000644000175000017500000000200007340322021013707 00000000000000SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSSSSSSS4SSSSSSSSSSS4SSSSSSSSSPPS4SSSSSSSSSSSPS4SSSSSSSSSPSSSSSSSSSSPSSSSSSSSPSSSPSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSSPSSSSPSPSSSPSSSS4SSSSPSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSPSSQSSSSS44SSSSS4SSSSSSSSSSSSSSSSSSS4SQSSSSSSSSSSSSSPSSSSSSSSSS4SSSQQSPSSSSSSQQSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSQQQSPSSP4SSSS4SSSSSSSSSSPSSPSSSSSQQSSSSSSSSSSSSQSSSSSSSSSSSSSSSSS4SSSSSSSSSSSSSSSSSS4SSSSPS4SSSPSSSSSSSSPSSSSS4SSSSSSSSSPPSSPSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SPSSSSSSSSSSSSSSSSS4SQSSSSSS4SSSSSSPSSSSSS4SSSQSQSSSSSSSSSSSSSSSSSSPSSSPSSPSSSSQSSSSSSSSSSSSSSSSPSSSPS4PSSSSSPQQ4SSQSSSSS4SSSSSSSSSPSSSSSSSSSSSSSSSSQQSSSQQSSSSS4SPSSSSSPPSSSSQSSSQSSSSSSQQQSSSPSSSSSSSSSSSSSSSSSSSQQS4QSSQSSSSPSSSSSPSSSSSQSSSSSSSSSSSSSSSSPSSSPSSSSSSSSSSSSSSSSSSS4SSSSSPSPSS4SPSSSSSSSPSSSPPSSSSSSSSSSSSSPSSSPSSSSSSSSSSSS4SPSS4SSPSSSSSSSSSSS4SSSSSSSSSSSPSSSSSSSSPS4PSSSSSS4SSSPSSSSSSSPPSPSSSSSSSSSSPPSSSSSSSSSSSSSPSS4SSSPSSSSSSSSSSSSPSSSSSSSSSPSSSSSSSSSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/monument1.csi0000644000175000017500000000200007340322021013710 00000000000000SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSSSSSSS4SSSSSSSSSSS4SSSSSSSSSPPS4SSSSSSSSSSSPS4SSSSSSSSSPSSSSSSSSSSPSSSSSSSSPSSSPSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSSPSSSSPSPSSSPSSSS4SSSSPSSSSSSSSSSSSSSSS4SSSSSSSSSSPSSQSSSSSSS4SSSSSSSSSSSSSSSSSSSQSSSSSSSSSSPSSSSSSSSSSSSSSQQSQQSSSSSSSSSSSSSSSSSSSSSSSSQQQSPSSP4SSSSSSSSSSSSSSSPSSSSSSQQSSSSSSSSSSSSQSSSSġôSSSSSSSSSSSSSSSSSSSSSSSSSSSSġññSSSSSSSSSSSSSSSSPSSSSSSSSQġñññïSSSSSSSSSSSSSSSSSSSSSSSSġñññïSSSSSSSSSSSSSS4SPSSSSSSSġññïSSSSSSSQSSSSSSSSSSSPSSSSññïQQQSQ!!SSSSSSSSSSPSSSSSQQQQSQQ!!!SSSSSSSSSPSSSPSSSSSQQQQQQSSSSSQSSSSSSSSSPSSSSQQSQSSQQSSSQQSSSSS4SPSSSQSQQSQSSSSSSQQQSSSPSSSSSQQSSSSSSSQQS4QSSQSSSSPSSSSSSQQQSSQSSSSSSSSSSSSSSSPSSSPSSSQPSSSSQSSSSSSSSS4SSSSSPSPSSSSPSSSSSSSPSSSPPSSSSSSSSSSSSSSSSSPSSSSSSSSSSSS4SPSS4SSPSSSSSSSSSSSS4SSSSSSSSSSSPSSSSSSSSPS4PSSSSSS4SSSPSSSSSSSPPSPSSSSSSSSSPPSSSSSSSSSSSSSPSS4SSSPSSSSSSSSSSPSSSSSSSSSPSSSSSSSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/monument2.csi0000644000175000017500000000200007340322021013711 00000000000000SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS4SSSSSSSSSSSSSSSS4SSSSSSSSSSS4SSSSSSSSSPPS4SSSSSSSSSSSPS4SSSSSSSSSPSSSSSSSSSSPSSSġñSSSPSSSPSSSSSSSSSSSSSSSSSSSSSġñïSSSSSSSSSSSSSSSSSSSSSS4SSSSSġñïSSSPSSSSPSPSSSPSSSS4SSSSPSSSSñïSSSSSSSSSS4SSSSSSSSSSPSSQSSSSSSS4SSSSSSSSSSSSSSSSSSġQSSSSSSSSSSPSSSSSSSSSSSSSSQQSQQSSSSSSSSSSSSSSSSSSSSSSQQQSPSSP4SSSSSSSSSSPSSSSSSQQSSSSSSSSSQSSSġôSSSSSSSSSSSSSSSSSSSSSġññSSSSSSSSSSSSSSSSPSSSQġñññïSSSSSSSSSSSSSSSSSSSSSSġñññïSSSSSSSSSSSSSS4SPSSSġññïSSSSñññïQSSSSSSSSSSPSSSSññïQQ#Sññï!!SSSSSSSSSPSSSSSQQQQSQQ!!!SSSSSSPSSSPSSSSSQQQ#QQ!!QSSSSSSSSSPSSSSQQSQSSQQQQSSSSS4SPSSSQSQ#SQSSSSSSQQQSSSPSSSSSQQSSSSSSSQQS4QSSQSSSSPSSSSSSQQQSS#SSSSSSSSSSSSSSSPSSSPSSSQPSSSSQSSSSSSSSS4SSSSSPSPSSSSPSSSSSSPSSSPPSSSSSSSSSSSSSSSSSPSSSSSSSSSSS4SPSS4SSPSSSSSSSSSS4SSSSSSSSSSSPSSSSSSSSPS4PSSSSS4SSSPSSSSSSSPPSPSSSSSSSSPPSSSSSSSSSSSSSPSS4SSSPSSSSSSSPSSSSSSSSSPSSSSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/monument3.csi0000644000175000017500000000200007340322021013712 00000000000000SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSPPSSSSSSSSSSSSSSSSSSSSSSSSSPSSSSSSSSSSPSSSġñSSSSSSSSSSSSSSSSSSSSSSSSSSSSSġñïSSSSSSSSSSSSSSSSSSġñSSSSSSSSġñïSSSSSSSSSSSSSSPSSSġñïSSSPSSSSñïSSSSSSSSġñSSSSSSSSġñïSSSSSSPSSQQQSSSSSSġñïSSSSSSSSñïSSSSSSSSSSġQġQSSSSġñïSSSSSSPSSQQSġñSSSSSQQQQSSSSñïQQSSSSSSSSQQġñïSSSSSSSSSSSSSSSQQQSSSSPSSSġñSSSSSSSSSSSSSSSQQSSSSSSSSñQSSSġôSSSSSSSSSSSSSSSSSSSSSSġññSSSSSSSSSSSSSSSSSSPSSSQġñññïSSSġñññïSSSSSSSSSSSSSSSSġñññïSSSġñññïSSSSSSSSSSSSSSSġññïSSSSñññïQSSSġñSSSSSSSSSSSSSññïQQ#Sññï!!!SġñïSSSSSSSSSSSġñSQQQQSQQ!!!!!ññïSSSSSSPSSSSġñïSSQQQ#QQ!!QSSSSSSSSSSġñïSQQSQSSQQQQSSSSSSSSSñïQSQ#SQSSSSSSQQQSSSSSSSSSQQSSSSSSSQQSQQSSQSSSSSSSSSSSQQQSS#SSSSSSSSSSSSSSSPSSSPSSSQSSSSSSQSQSSSSSSSSSSSSSSSSSPSSSSSSSSSSSPSSSPPSSSSSSSSSSSSSSSSQSSSSSSSSSSSSPSSPSSSSSSQSSSSSSSSSSSSSSSSSSSPSSSSSSSSSQQSSSSSSSSSSSSSPSSSSSSSPPSPSSSSSQQQSSSSSPPSSSSSSSSSSSSSPSSSSSSSSSQSSSSPSSSSSSPSSSSSSSSSPSSSSSSSSSSSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/monument4.csi0000644000175000017500000000200007340322021013713 00000000000000SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSġñSSSSSSSSSSSSSSSSSSSSSSSSSSSSSġñïSSSSSSSSSSSSSSSSSSġñSSSSSSSSġñïSSSSSSSSSSSSSSSSSSġñïSSSSSSSSñïSSSSSSSSġñSSSSSSSSġñïSSSSSSSSSQQQSSSSSSġñïSSSSSSSSñïSSSSSSSSSSġQġQSSSSġñïSSSSSSSSSQQQQSġñSSSSSQQQQSSSSñïQQSSSSSSSSSQQQġñïSSSSSġôôôôôôôôôQQQSSSSSSSSSSġñïSSSSSSôôSSQQSSSSSSSSSSñïQSSSSġôôïïïïïïïññïSSSSSSSSSSSSSQQQSSġññíííííííññïSSSSSSSSSSSSSSQQQQġñññïSSSġñññïSSSSSSSSSSSSSSSSSQġñññïSSSġñññïSSSSSSSSSSSSSSSġññïSSSSñññïQSSSġñSSSSSSSSSSSSSññïQQ#SññïQQQSġñïSSSSSSSSSSSġñSQQQQSQQSQQQññïSSSSSSSSSSSġñïSSQQQ#QSSQQQñïQSSSSSSSSSSġñïSQQSQSSQQQQSSSSSSSSSñïQSQ#SQSQQQSSSSSSSSSQQSS SQQQQQSSQSSSSSSSSSSSQQQSS #SSSSSSSSSSSSSSSSSSSSSSQ ġñSSQQSSġñSSSSSSSSSSSSSSSSSS ġñïS#SSSġñïSSSSSSSSSSSSSSSSSS ġñïSSSQQġñïSSSSSSSSSSSSSSSSSSSSñïQSS#SñïSSSSSSSSSSSSSSSSSSSSSQQQSSQQSSSSSSSSSSSSSSSSSSSSSQQQ#SSSSQQQSSSSSSSSSSSSSSSSSSSSSQSSQSQSSSQSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/monument5.csi0000644000175000017500000000200007340322021013714 00000000000000PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPSPPPPPPPPPSSSSSSSSSSSPPPPPPPPPPSSSSSPPPPSSSSġñSSSSSSSSSPPPPPPSSSSSSSSSSSSSSġñïSSSSSSSSSPPPPPSSSSġñSSSSSSSSġñïSSSSSSSSSSSPPPPSSSġñïSSSSSSSSñïSSSSSSSSġñSSPPPPSSġñïSSSSSSSSSQQQSSSSSSġñïSSPPPPSSñïSSSSSSSSSSġQġQSSSSġñïSSSPPPPSSQQQQSġñSSSSSQQQQSSSSñïQQSSPPPPSSSQQQġñïSSSSSġôôôôôôôôôQQQSPPPPSSSSSġñïSSSSSSôôSSQQSPPPPSSSSSñïQSSSSġôôïïïïïïïññïSSSPPPPSSSSSSQQQSSġññíííííííññïSSSSPPPPPSSSSSQQQQġñññïSSSġñññïSSSSSPPPPPSSSSSSSQġñññïSSSġñññïSSSSSSPPPPPSSSSSSSSġññïSSSSñññïQSSSġñSPPPPPPSSSSSSSññïQQġSġññïQQQSġñïSPPPPPPSSSSġñSSQQQQQQSQSQQQQññïSSPPPPPSSSSġñïSSSQQQġQġSSQQQQñïQSSPPPPPSSSġñïSSSSSQQQQQQSSQQQQQQQSPPPPSSSSñïQSSSSSSQġSġSQQQQQSSQQQPPPPSSSSSQQQSSSSSSQQQQQQQQQQSSQSPPPPSSSSSSQQQSSSSSġSġSSSSSSSSSSSPPPPPSSSSSSQQSSġñSSQSQSSġñSSSSSSPPPPPSSSSSSSSSġñïSġSġSSġñïSSSSSSPPPPPPSSSSSSSġñïSSSQSQġñïSSSSSSSPPPPPPSSSSSSSñïQSSġSġSñïQSSSSSSPPPPPPPPPSSSSSSQQQSSQSQSQQQSSSSSPPPPPPPPPPPSSSSSQQQġSġSSSQQQSSSPPPPPPPPPPPPPPPPSSQSSQSQSSSQSPPPPPPPPPPPPPPPPPPPSSSSSSSSSSPPPPPPPPPPlincity-1.13.1/icons/mouse-confined.csi0000644000175000017500000000040007340322021014702 00000000000000÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷lincity-1.13.1/icons/mouse-free.csi0000644000175000017500000000040007340322021014036 00000000000000öööööööööööööööööööööööööööööööööööööööööööölincity-1.13.1/icons/ms-coal-button.csi0000644000175000017500000000040007340322021014633 00000000000000@@@@@@@@@@@@@@@@@@@@@óóê@@óóìêó@@óóóìììêê@@óóóìììóìó@@óóììììììììê@@óóììììììêìó@@óóììììììóêìêó@@óìììììììêêêêó@@óìììóìóìêêêêê@@ìóììììììêêêêó@@óóóóóóóóóóóó@@@@@@@@@@@@@@@@@@@lincity-1.13.1/icons/ms-cricket-cover-button.csi0000644000175000017500000000040007340322021016455 00000000000000 " # " # " # " # " # " # # # # 77 77?6 7?66 66lincity-1.13.1/icons/ms-fire-cover-button.csi0000644000175000017500000000040007340322021015756 00000000000000++++++++++++++++++,++ss,++55sss,++5555s,++555555s,++555555s,++5VVV55s,++5V5555s,++5VV555s,++5V5555s,++5V5555s,++555555s,++555555,++,,,,,,,,+,,,,,,,,lincity-1.13.1/icons/ms-health-cover-button.csi0000644000175000017500000000040007340322021016276 00000000000000ëëëëëëëëëëëëëëëëëëíïóöööööóïíëëëïïóö:::öóïïëëëóö:::öóëëëóóóóö:::öóóóóëëëööööö:::öööööëëëö:::::::::::öëëëö:::::::::::öëëëö:::::::::::öëëëööööö:::öööööëëëóóóóö:::öóóóóëëëóö:::öóëëëïïóö:::öóïïëëëíïóöööööóïíëëëíïóóóóóóóïíëëëëëëëëëëëëëëëëëlincity-1.13.1/icons/ms-normal-button.csi0000644000175000017500000000040007340322021015205 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖxxxxxxxxxxÖÖxxxxxxxÖÖxxxxxxxxxÖÖxxxxxxÖÖxxxxxxxÖÖÖÖxxxxxxÖÖxxxxxxÖÖxxxxxxÖÖxxxxxÖÖxxxxxxxÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/ms-ocost-button.csi0000644000175000017500000000040007340322021015044 00000000000000mmmmmmmmmmmmmmmmmmmÚÚÚmmÚÚÚmmÚmmÚmmÚmmÚÚÚÚÚmmÚmmÚmmÚmmÚmmÚÚÚÚÚÚÚmmÚÚÚÚÚmmmmmmmmmmmmmmmmmmmlincity-1.13.1/icons/ms-pollution-button.csi0000644000175000017500000000040007340322021015742 00000000000000""üü³³"ü³""üü³³"üü³ġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġlincity-1.13.1/icons/ms-power-button.csi0000644000175000017500000000040007340322021015051 00000000000000       úúúúúúúúúúúúúúúú   úúúúúúúúúúúúúúúú       lincity-1.13.1/icons/ms-starve-button.csi0000644000175000017500000000040007340322021015221 00000000000000‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘====‘‘=====‘‘======‘‘====‘‘=========‘‘‘‘‘‘‘‘=======‘‘=====‘‘=====‘‘====‘‘=====‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘‘lincity-1.13.1/icons/ms-ub40-button.csi0000644000175000017500000000040007340322022014470 00000000000000šššššššššššššššššššššššššššššššššššššššššššššššššššššššššššlincity-1.13.1/icons/norm-offl.csi0000644000175000017500000000040007340322021013666 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÉÜÜÉÜÜÉÉÜÜÖÖÜÜÜÉÉÜÉÜÉÜÜÉÜÖÖÜÜÜÉÏÏÉÜÉÜÜÉÜÖÖÜÜÜÉÏÏÉÜÉÜÜÉÜÖÖÜÜÜÉÜÉÉÜÉÜÜÉÜÖÖÜÜÜÉÜÜÉÜÜÉÉÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/norm-offr.csi0000644000175000017500000000040007340322022013675 00000000000000ÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÜÜÜÜÜÜÜÜÜÜÜÜÜÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖÖlincity-1.13.1/icons/norm-onl.csi0000644000175000017500000000040007340322022013531 00000000000000>>>>>>>>>>>>>>>>>888888888888888>888888888888888>822222222222222>822222222222222>82222&22&22&&22>82222&&2&2&22&2>82222&,,&2&22&2>82222&,,&2&22&2>82222&2&&2&22&2>82222&22&22&&22>822222222222222>822222222222222>888888888888888>888888888888888>>>>>>>>>>>>>>>>lincity-1.13.1/icons/norm-onr.csi0000644000175000017500000000040007340322022013537 00000000000000>>>>>>>>>>>>>>>>888888888888888>888888888888888>222222222222288>222222222222288>&&&22&222&22288>&22&2&&2&&22288>&22&2&2&2&22288>&&&22&222&22288>&2&22&222&22288>&22&2&222&22288>222222222222288>222222222222288>888888888888888>888888888888888>>>>>>>>>>>>>>>>>lincity-1.13.1/icons/not-implemented.csi0000644000175000017500000000040007340322022015071 00000000000000<<<<<<<<<<<<<<<<<<<<<7<<<<<<7<<<<<<7<<<<<<7<<<<<<7<<<<<<<<7<<<<<7<<<<<<7<<<<<<7<<<<<<7<<<<<<<<<<<<<<<<<<<<<<<<<<<<lincity-1.13.1/icons/oremine-button.csi0000644000175000017500000000040007340322022014737 000000000000007777777777777777777777777777777777777777777777777ĜĜĜĜĜĜ77777Ĝ7777ĜĜĜ777ĜĜ7777ĜĜĜ77Ĝ7Ĝ7777ĜĜĜĜ77Ĝ7777ĜĜĜ777Ĝ7777ĜĜĜĜĜĜĜĜ777Ĝ7Ĝ77ĜĜĜ77ĜĜĜ777ĜĜĜ77ĜĜ77ĜĜ777ĜĜĜ77ĜĜĜ77ĜĜĜ777ĜĜ777777777777777777777777777777777777777777777777777777777777777777lincity-1.13.1/icons/oremine1.csi0000644000175000017500000001000007340322022013504 00000000000000êêêêêêġêêêêêòòòòòòòòòòòòòòòòêêêêêêġê ê! êòòòòVòVòòòòòòòòòòòêêêêêê êġêê êêVRRêêêêêêêêêê ê! êV## RROqOòêêêêêêê ê !êê ###### RROqORRRòêêêêê êêê ê!ê ê #### !!!##RRRORRRORêêêêêêêê êê êêê! ## <<"###RRRRRRRRRRRRòêêêêêê ! ê êê êê ## <5<"!!!!RRqRRRRRRòġġġêêêêêêêêê êê  ## <5<5"####NqNNNRêêêêêêêêêĠĠĠĠĠ–ê # 5<5""!!!!qOòêêêêêêêêêĠ–èV # <<<"######OONNNRRROòêêêêêêMêêĠ–è  """"!####qONRRRROROêêêêêMRMêĠ–èV V!!!#RORqRòêêêêêêMêêĠ–è !#!#!#RRRRRqORNRNRRòêêêêêêêêêĠ–––––èV V!#!#!#RRORRNRRêêêêêêêêêèèèèèèè ###!##RONRRòV >>>>>>>>>>>>>>>>888888888888888>888888888888888>882222222222222>882222222222222>882&&&222&&22&2>882&22&2&22&2&2>882&22&2&22&2&2>882&&&22&&&&2&2>882&2222&22&2&2>882&2222&22&22&>882222222222222>882222222222222>888888888888888>888888888888888>>>>>>>>>>>>>>>>lincity-1.13.1/icons/pause-onr.csi0000644000175000017500000000040007340322025013704 00000000000000>>>>>>>>>>>>>>>>888888888888888>888888888888888>222222222222288>222222222222288>2&22&&22&&&&288>2&2&22&2&222288>2&22&222&&&2288>2&222&22&222288>2&2&22&2&222288>&222&&22&&&&288>222222222222288>222222222222288>888888888888888>888888888888888>>>>>>>>>>>>>>>>>lincity-1.13.1/icons/pbarcoal.csi0000644000175000017500000000040007340322025013556 00000000000000êêêêêêêêêêêóóóóóóóóóóêêóĝŭ˙˙˙˙˙˙ŭĝóêêóĝŭ˙˙˙˙˙˙˙˙ŭĝóêêóŭ˙˙˙˙êê˙˙˙˙ŭóêêó˙˙˙ùêêêê˙˙˙˙óêêó˙˙˙êêĉ˙˙˙óêêó˙˙êê˙˙óêêó˙˙ñê˙˙óêêó˙ĝóêêóĝêëĉĝóêêêóĝêêêêêêĝóêêêóóóóóóóóóêêêêêêêêêêêêlincity-1.13.1/icons/pbardown1.csi0000644000175000017500000000040007340322025013670 000000000000002555552/55555/,55555,)55555)5555525552/555/,555,)555)555252/5/,5,)5)52lincity-1.13.1/icons/pbardown2.csi0000644000175000017500000000040007340322025013671 0000000000000055555555555552555555555552/55555555555/,55555555555,)55555555555)5555555555525555555552/555555555/,555555555,)555555555)555555555255555552/5555555/,5555555,)5555555)5555555lincity-1.13.1/icons/pbarfood.csi0000644000175000017500000000040007340322025013567 00000000000000êêêêêêêêêêêóóóóóóóóóóêêóú˙˙˙˙˙˙˙˙úóêêóú˙˙ôï˙ô˙˙úóêêó˙˙˙ôï˙ï˙˙˙óêêó˙˙˙ôï˙ï˙˙˙óêêó˙˙˙üü˙ö˙˙˙óêêó˙˙˙˙˙˙ü˙˙˙óêêó˙˙˙˙˙˙˙˙˙˙óêêó˙˙˙˙˙˙˙˙˙˙óêêóú˙˙˙˙˙˙˙˙úóêêóú˙˙˙˙˙˙˙˙úóêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbargoods.csi0000644000175000017500000000040007340322025013753 00000000000000êêêêêêêêêêêóóóóóóóóóóêêóúŭ˙˙˙˙˙˙ŭúóêêóúŭ˙˙úííú˙˙ŭúóêêóŭ˙˙˙ú˙ó˙˙˙ŭóêêó˙˙˙˙˙˙ó˙˙˙˙óêêó˙˙óó˙˙óêêó˙˙óó˙˙óêêó˙˙óììó˙˙óêêóŭ˙ĝììììĝ˙ŭóêêóúŭ˙ĝóóóóĝ˙ŭúóêêóúŭ˙˙˙˙˙˙ŭúóêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbarjobs.csi0000644000175000017500000000040007340322025013575 00000000000000êêêêêêêêêêêóóóóóóóóóóêêóú˙˙˙˙˙˙˙˙úóêêóú˙˙˙˙˙ê˙˙˙úóêêó˙˙˙˙˙˙ê˙˙˙˙óêêó˙˙˙˙˙˙˙ùêġ˙˙óêêó˙ŭì˙˙˙òê˙˙óêêó˙êŭ˙˙˙êù˙óêêó˙êêêùêê˙óêêó˙˙˙˙ê˙ùê˙óêêóêòêê˙˙˙òù˙óêêóêê˙˙òùóêêóóóóóóóóêêêêêêêêêêêêlincity-1.13.1/icons/pbarmoney.csi0000644000175000017500000000040007340322025013767 00000000000000êêêêêêêêêêêóóóóóóóóġóêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêó÷ŭ˙˙˙óîó˙˙ŭ÷óêêóŭ˙˙˙˙˙î˙˙˙ŭóêêó˙˙˙˙˙˙ü˙˙˙˙óêêó˙˙˙üîîü˙˙˙˙óêêó˙˙˙˙óó˙˙˙˙˙óêêó˙˙˙˙î˙˙˙˙˙˙óêêóŭ˙˙îóîî˙˙î˙ŭóêêó÷ŭ˙îî˙˙îî˙ŭ÷óêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbarore.csi0000644000175000017500000000040007340322025013425 00000000000000êêêêêêêêêêêóóóóóóóóġóêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêó÷ŭ˙˙˙˙˙˙˙˙ŭ÷óêêóŭ˙˙˙˙˙˙˙˙˙˙ŭóêêó˙óó˙ó˙êêóêêó˙˙˙˙˙˙˙óêêó˙˙˙ó˙êóêêó˙˙˙˙˙˙˙óêêóŭóó˙˙˙êêóêêó÷ŭ˙˙˙˙˙˙˙˙ŭ÷óêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbarpop.csi0000644000175000017500000000040007340322025013436 00000000000000êêêêêêêêêêêóóóóóóóóġóêêó÷ŭê˙˙êêŭ÷óêêó÷ŭ˙ê˙˙êê˙ŭ÷óêêóŭ˙óó˙ŭóêêó˙˙êêêêê˙˙óêêó˙˙êêêê˙˙óêêó˙˙êêêêê˙˙óêêó˙˙˙˙÷êê÷˙˙óêêóŭ˙˙˙óêêó˙ŭóêêó÷ŭ˙ê˙óêêóŭ÷óêêó÷ŭê˙êêêê÷óêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbarsteel.csi0000644000175000017500000000040007340322025013754 00000000000000êêêêêêêêêêêóóóóóóóóġóêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêó÷ŭ˙˙˙˙˙˙˙˙ŭ÷óêêóŭ˙˙˙˙˙˙˙˙˙˙ŭóêêó˙˙˙˙˙˙˙ŭŭú÷˙óêêó˙˙˙˙˙ùùŭ÷ġù˙óêêó˙˙˙ê÷ŭê÷ġ÷ŭ˙óêêó˙˙˙ġ÷˙˙˙óêêóŭ˙˙êŭ˙ê÷˙˙˙ŭóêêó÷ŭ˙˙˙˙˙˙˙˙ŭ÷óêêó÷ŭ˙˙˙˙˙˙ŭ÷óêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbartech.csi0000644000175000017500000000040007340322025013563 00000000000000êêêêêêêêêêêóóóóóóóóġóêêó÷êêêêêêêê÷óêêó÷êêóóêê÷óêêóêêóŭŭóêêóêêóêŭ˙˙ŭêóêêóêŭóŭ˙˙ŭóŭêóêêóêó˙ŭóêóêêóêóŭŭóêóêêóêêŭ÷÷ŭêêóêêó÷êêóóêê÷óêêó÷êêêêêêêê÷óêêóóóóóóóóóóêêêêêêêêêêêlincity-1.13.1/icons/pbarup1.csi0000644000175000017500000000040007340322025013345 00000000000000RUHUHLULOUORURUUUIUUUILUUULOUUUORUUURUUUUUIUUUUUILUUUUULOUUUUUORUUUUURlincity-1.13.1/icons/pbarup2.csi0000644000175000017500000000040007340322025013346 00000000000000UUUUUUUIUUUUUUUILUUUUUUULOUUUUUUUORUUUUUUURUUUUUUUUUIUUUUUUUUUILUUUUUUUUULOUUUUUUUUUORUUUUUUUUURUUUUUUUUUUUIUUUUUUUUUUUILUUUUUUUUUUULOUUUUUUUUUUUORUUUUUUUUUUURUUUUUUUUUUUUUlincity-1.13.1/icons/port-button.csi0000644000175000017500000000040007340322025014270 00000000000000ÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚlincity-1.13.1/icons/pottery-button.csi0000644000175000017500000000040007340322025015012 0000000000000073777377777678776578876653778776653377877665337787766533788776553378776655338776655377766553lincity-1.13.1/icons/pottery0.csi0000644000175000017500000000200007340322025013557 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6#6#6AAAAAAANNNNNAAAAAAAA"66#6#6#6#AAAAAAN!!!!!NAAAAAAA6"AAAAAAAAAAAAAN!ò!!!!òNAAAAAA"6AAAAAAAAAAAAN!!!ò!!!!;NAAAAA6"AAAAAAAAAAAN!! !!!##! NAAAAA"6AAAAAAAAAAAN ò!###!;NOAAAA6"AAAAAAAAAAAN !!##! NOPAAA"AAAAAAAAAAAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAAAAAAAAAAAANN; ;!;NOPPPAAA"6AAAAAAAAAAAAAAANNNNNOPPPPAAA6"AAAAAAAAAAAAAAAAAOOOPPPPPAAA"6AAAAAAAAAAAAAAAAAAAPPPPAAAAA6"AAAAAAAAAAAAAAAAAAAAAAAAAAAA"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery1.csi0000644000175000017500000000200007340322025013560 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery10.csi0000644000175000017500000000200007340322025013640 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPPPAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAġġAAAAAAAúùùùùöóAAAAAAAOOOOOAAġġùAAAAAúĜóóóóùÓOAAAAAOò!!!!AAùùùAAAAúùôööxöùóOOAAAO!!ò!!!!ùAAAAAAA@ġĜöxöxùÓOOOAO!!!!ò#ġġ AQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery2.csi0000644000175000017500000000200007340322025013561 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!÷!;NAAAAA6"êçíçççççèAAN!! !!!÷÷! NAAAAA"6êçççççççèAAN ò!#÷÷!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery3.csi0000644000175000017500000000200007340322025013562 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!ôôôAAAAA6"AêêççAAAAAAAN!ò!!!ôùùôAAAAA"6êêççíçèAAAAN!!!ò!!ùùùôAAAAA6"êçíçççççèAAN!! !!!ùùôôNAAAAA"6êçççççççèAAN ò!#ùù!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery4.csi0000644000175000017500000000200007340322025013563 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAùùùAAAA"66#íêê#6#AAAAAAN!!!!!ùùóóAAAA6"AêêççAAAAAAAN!ò!!!ùùóùùAAAA"6êêççíçèAAAAN!!!ò!ùóóùùAAAAA6"êçíçççççèAAN!! !!!ùóóùAAAAAA"6êçççççççèAAN ò!#óùùANOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery5.csi0000644000175000017500000000200007340322025013564 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAùAAAAA"66#íêê#6#AAAAAAN!!!!!ġùġùAAAA6"AêêççAAAAAAAN!ò!!!!ùġùġAAAA"6êêççíçèAAAAN!!!ò!!!ùùAAAAAA6"êçíçççççèAAN!! !!!##!!AAAAAA"6êçççççççèAAN ò!###!ANOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!!ñOOAAAAAA@ġĜöxöxùÓOOOAO!!!!ò##!!OQAAAAA÷ùôööxöùóOOOO!! !!###8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery6.csi0000644000175000017500000000200007340322025013565 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAAAAAAAAAAúùùùùöóAAAAAAAOOOOOAAAAAAAAAAúĜóóóóùÓOAAAAAOò!!!!OAAAAAAAAúùôööxöùóOOAAAO!!ò!!úúOOAAAAAA@ġĜöxöxùÓOOOAO!!!!òúúú!OQAAAAA÷ùôööxöùóOOOO!! !!#úú8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery7.csi0000644000175000017500000000200007340322026013567 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPAAAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAùùAAAAAAAAúùùùùöóAAAAAAAOOOOOùġġùAAAAAAúĜóóóóùÓOAAAAAOò!!!!ùġġùAAAAAúùôööxöùóOOAAAO!!ò!!úġùùAAAAAA@ġĜöxöxùÓOOOAO!!!!òúġú!OQAAAAA÷ùôööxöùóOOOO!! !!#úú8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery8.csi0000644000175000017500000000200007340322026013570 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPùùAAA6"888855555AAAAAAAAAAAAAùùùùAA"55855555555AAAAAAAAAAAùġġġùAAAAAúùùùùöóAAAAAAAOOOOOùġġġġùAAAAúĜóóóóùÓOAAAAAOò!!!ùġùùġùAAAAúùôööxöùóOOAAAO!!ò!!óġġùùAAAA@ġĜöxöxùÓOOOAO!!!!òóóùùQAAAAA÷ùôööxöùóOOOO!! !!#8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/pottery9.csi0000644000175000017500000000200007340322026013571 00000000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6#6#6í6#6AAAAAAANNNNNAAAAAAAA"66#íêê#6#AAAAAAN!!!!!NAAAAAAA6"AêêççAAAAAAAN!ò!!!!òNAAAAAA"6êêççíçèAAAAN!!!ò!!!!;NAAAAA6"êçíçççççèAAN!! !!!##! NAAAAA"6êçççççççèAAN ò!###!;NOAAAA6"íèèèçíçèçèAN !!##! NOPAAA"êêêçççççççAAN!! ò!! ï;NOPAAAA6#6#6#6#6AAAN!!ò!! ! ïNOPAAA"66#6#6#6#AAAANò! ;NOPPAAA6"AAA88AAAAAAAANN; ;!;NOPPPAAA"6AA88888AAAAAAAANNNNNOPPPPAAA6"888;8;55AAAAAAAAAOOOPPPPPAAA"6;88855555AAAAAAAAAAPPPPPPAAA6"888855555AAAAAAAAAAAAAAAAAAA"55855555555AAAAAAAAAAAAġġùAAAAAAúùùùùöóAAAAAAAOOOOOAġġġùAAAAAúĜóóóóùÓOAAAAAOò!!!!ġùùùùAAAAúùôööxöùóOOAAAO!!ò!!óùġġùAAAAA@ġĜöxöxùÓOOOAO!!!!òùùó AQAAAAA÷ùôööxöùóOOOO!! !!#ùù8 OOQAAAA@ġĜöxöxùÓOOOO !!##8 5OOPPAAA÷ùôööxöùóOOOO !ò88ñ5 OOPPAAA@ġĜöxöxùÓOOOO!! ò!! 5ñ5OOQPAAA÷ùñùùùĜùóOOOAO!ò!88ñ 5OOOQPAAA@ñóóóóOOOAAO888 ñ OOOQQPAAAñóÓóÓóÓóOOOOAAAOOOOOOOOOQPPAAAAOOOOOOOOOOOAAAAQOOOOOOPPPQAAAAAOOOOOOOOOOAAAAPPPPPPPPQQQlincity-1.13.1/icons/powerlhd.csi0000644000175000017500000000040007340322026013620 00000000000000 úúúúúúúúúúúúúúúú úúúúúúúúúúúúúúúú lincity-1.13.1/icons/powerlhl.csi0000644000175000017500000000040007340322026013630 00000000000000       úúúúúúúúúúúúúúúú   úúúúúúúúúúúúúúúú       lincity-1.13.1/icons/powerline-button.csi0000644000175000017500000000040007340322026015311 00000000000000÷÷÷÷÷÷÷÷ñ÷÷÷÷÷÷÷ññ÷÷÷÷÷÷÷ññ÷÷÷÷÷÷ññññññññññññññññññññññññññññññññññññlincity-1.13.1/icons/powerlldd.csi0000644000175000017500000000040007340322026013770 00000000000000 úúúúúúúúúú ú úúúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlldl.csi0000644000175000017500000000040007340322026014000 00000000000000    úúúúúúúúúú  ú úúúúúúúú ú  ú ú  ú ú  ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlldrd.csi0000644000175000017500000000040007340322026014152 00000000000000 úúúúúúúúúúúúúúúú úúúúúúúú úúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlldrl.csi0000644000175000017500000000040007340322026014162 00000000000000       úúúúúúúúúúúúúúúú   úúúúúúúú úúúúúúú  ú ú   ú ú   ú ú  ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlldud.csi0000644000175000017500000000040007340322026014155 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúúú ú ú ú úúúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlldul.csi0000644000175000017500000000040007340322026014165 00000000000000 ú ú ú ú ú ú  ú ú  ú ú  ú ú úúúúúúúú ú  ú ú úúúúúúúú ú  ú ú  ú ú  ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerllud.csi0000644000175000017500000000040007340322026014011 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúúú ú ú úúúúúúúúúú lincity-1.13.1/icons/powerlludrd.csi0000644000175000017500000000040007340322026014337 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúúú úúúúúúú úúúúúúúú úúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlludrl.csi0000644000175000017500000000040007340322026014347 00000000000000 ú ú ú ú ú ú  ú ú   ú ú   ú ú  úúúúúúúú úúúúúúú   úúúúúúúú úúúúúúú  ú ú   ú ú   ú ú  ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerllul.csi0000644000175000017500000000040007340322026014021 00000000000000 ú ú ú ú ú ú  ú ú  ú ú  ú ú úúúúúúúú ú  ú úúúúúúúúúú    lincity-1.13.1/icons/powerllurd.csi0000644000175000017500000000040007340322026014173 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúúú úúúúúúú úúúúúúúúúúúúúúúú lincity-1.13.1/icons/powerllurl.csi0000644000175000017500000000040007340322026014203 00000000000000 ú ú ú ú ú ú  ú ú   ú ú   ú ú  úúúúúúúú úúúúúúú   úúúúúúúúúúúúúúúú       lincity-1.13.1/icons/powerlrdd.csi0000644000175000017500000000040007340322026013776 00000000000000 úúúúúúúúú ú ú úúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlrdl.csi0000644000175000017500000000040007340322026014006 00000000000000    úúúúúúúúú ú  ú úúúúúúú ú ú  ú ú  ú ú  ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlrud.csi0000644000175000017500000000040007340322026014017 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúú ú úúúúúúúúú lincity-1.13.1/icons/powerlrul.csi0000644000175000017500000000040007340322026014027 00000000000000 ú ú ú ú ú ú ú ú  ú ú  ú ú  ú úúúúúúú ú  úúúúúúúúú    lincity-1.13.1/icons/powerludrd.csi0000644000175000017500000000040007340322026014163 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú ú úúúúúúú ú ú úúúúúúú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerludrl.csi0000644000175000017500000000040007340322026014173 00000000000000 ú ú ú ú ú ú ú ú  ú ú  ú ú  ú úúúúúúú ú  ú úúúúúúú ú ú  ú ú  ú ú  ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlvd.csi0000644000175000017500000000040007340322026013636 00000000000000 ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerlvl.csi0000644000175000017500000000040007340322026013646 00000000000000 ú ú ú ú ú ú  úú  ú ú ú ú ú ú ú ú ú ú ú ú ú ú  úú  ú ú ú ú ú ú ú ú lincity-1.13.1/icons/powerscoal-button.csi0000644000175000017500000000040007340322026015463 00000000000000ÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚġġïïïÚÚÚÚÚÚÚÚÚġġïïïïïïïïÚÚÚ!!ġġïïïïïïïëëÚ!!!!ġïïïïïïïëïï!!!!ïïïïïïïëëëëë!!!!ïïïïïïïëëëëë!!!!ïïïïëëëëëëëë!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙lincity-1.13.1/icons/powerscoal-empty.csi0000644000175000017500000001000007340322027015304 00000000000000ĝĝĝĝËËËRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRâRRRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRâRRRRRRRRRRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRâRâRRRRRRRRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRâââRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRâRâRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRRRâRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRâRRRR! RRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRâRRRRRRRR!! RRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏâRRRRRRR! ! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRâRâRRRRR!!! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏâââRRRRR! ! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRâRâRRRRR!!! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRâRRRRR!!11 RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRâRRRRR!1111 RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRRRR111111RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRRRRRR111111RRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRRRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏRRRRRRRRRRRRRRRRRRRËËËĝĝĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝĝËËĝĝĝËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝĝĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!ÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!#ÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!##ÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!###ÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!!####ÌÏËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!!####ÌÌËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!0!!####ÌÌÉËËËËËËÏÏÏÏÏÏÏ!ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!00!!####ÌÌÉÉËËËËËÏÏÏÏÏÏ!!ÏÏÏÏÏÏ!ÏÏÏÏÏÏÏÏÏÏÏÏÏ!0!!!####ÌÌÉÉÉËËËËÏÏÏÏÏ!!!ÏÏÏÏÏ!!ÏÏÏÏÏ!ÏÏÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËËÏÏÏÏ!!!!ÏÏÏÏ!!!ÏÏÏÏ!!ÏÏÏÏ!!0!!####ÌÌÉÉÉËËËËÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!ÏÏÏÏÏÏÏ!00!!####ÌÌÉÉÉËËËËÏÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!!ÏÏÏÏ!0!!!####ÌÌÉÉÉËËËËÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏ!!0!!####ÌÌÉÉÉËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏ!00!!####ÌÌÉÉÉËË!!!!0 ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏ!0!!! ###ÌÌÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ!!!! ###ÌÌÉÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏ!!! ÉÉÉ ##ÌÌÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏ!! ÉÉÉÉÉ #ÌÌÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ! ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌ!! Ï!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌ! Ï!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ï!! !! ÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/powerscoal-full.csi0000644000175000017500000001000007340322027015110 00000000000000                    ĝĝĝĝËËË                                     R R R R R R R R R R ËËËĝËËË Ï Ï ë ë ë ë ë ë ë ë ëëëëë    RRRâRRRRRRRRRRRRRËËËĝËËËÏóÏóÏóëóëëëëëóëóëëëëëëëëëÊ R RRRRâRRRRRRRRRRRRRËËËËËËËóíóóóíëëóóíëëíëóóëëëëëóëëë    RRRâRâRRRRRRRRRRRËËËĝËËËóóóíóëëóóííëëóëëëë R RRRRâââRRRRRRRRRRRËËËĝËËËóíóóíóíëëëóíííóóëóëëëóëëëëë    RRRâRâRRRRRRRRRRRËËËĝËËËóíóóóíóëíííëóëëëë R RRRRRRâRRRRRRRRRRRËËËËËËËóóóíóíóóíëëëëëÊÊëëë    RRRRRâRRRR! RRRRRËËËËËËËóíóóóíëíëíóëëëóóÊÊ R RâRRRRRRRR!! RRRRËËËËËËËóóíóóëóíóëëëëóíóóóëóóëëëëë    âRRRRRRR! ! RRRËËËËËËËíóóóííëëëëíëëóëëëëë R RâRâRRRRR!!! RRRËËËËËËËóíóííëëëëóëëÊëë    âââRRRRR! ! RRRËËËËËËËóóóíëëëëëÊëë R RâRâRRRRR!!! RRRËËËËËËËóíóóóóóííóëëëóëëëëë    RRâRRRRR!!11 RRRËËËËËËËíóóíííííóëëëó R RRRâRRRRR!1111 RRRËËËËËËËóíóóíóóóóóóó    RRRRRRRR111111RRRËËËËËËËóóóóóóóóóëóëë÷ëëëë R RRRRRRRRR111111RRRËËËĝËËËóóóóóóóëëëëëëëëëóë     RRRRRRRRRRRRRRRRRËËËĝËËËóóóóóëëëëóëëëëëë÷÷÷ëëëëë R RRRRRRRRRRRRRRRRRRËËËĝĝĝĝóóóëëëóëë÷ëëëë÷íôôôôô÷ë  ËËËËËËËËËËËËËËËËËËËËËËËËËËËóó÷óóóëëëóëëë÷ôôôôô÷÷÷ëë ËËËËËËËËËËËËËËËËËËËËËËËËËËËËËóóËóóëëëëëóëëëëúôôôô÷÷÷÷ë  ËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏóÏóóó÷ëóóëëë÷ëúúôôô÷÷÷÷÷÷÷ ĝĝĝËËĝĝĝËËËËËËËËËËËËËËËËËËËËËëëëëëóëëëô÷÷÷÷ôúúôô÷÷úú÷÷÷÷÷ ĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËóóëëëëëôô÷÷÷÷÷÷÷úúúúúúúúúú÷÷÷÷ ĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËëóëóëëô÷÷÷÷ú÷÷÷÷úúúú÷úúúúú÷÷÷  ĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËëëÏëëó÷÷ĝĝúúĝĝ÷÷úúúôúúúú÷÷÷÷÷÷ Ï ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝĝĝËËËóóóóóëô÷÷÷ĝúúĝôô÷÷úô÷úúúú÷÷÷÷÷÷    ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËóóóëóóô÷÷ĝúúú÷ôô÷÷ôôúú÷úúúú÷÷÷÷ Ï ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËóëëóóëôô÷ĝúúú÷ôô÷÷ôôúúúúúú÷÷÷÷     ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËëëëóóôô÷úúúúúúôúúúúúúú÷ú÷÷÷÷÷ë Ï ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËóëóëë÷÷ĝúúúúúúôú÷úúúúúúúú÷÷÷÷  ÏÏÏÏÏ!ÏÏÏÏÏÏËËËĝËËËóóóëëëëô÷÷÷úúú÷÷ôúúú÷÷ôôôôôôôôôÏ ÏÏÏÏÏÏ!!#ÏÏÏÏÏËËËĝËËËëëóóëóô÷ú÷úúúôúôúú÷÷÷÷÷ôôúúúúô÷ ÏÏÏ!!!##ÏÏÏÏËËËĝËËËóóóëóëëô÷÷÷úúúúôôÏ÷úú÷÷÷÷ôôúúúúúÏ ÏÏÏÏ!!!!###ÏÏÏËËËËËËËóëóëëëô÷÷úúúúôôôÏ÷úú÷÷÷ôôôôôúúú÷÷Ï!!!!!####ÌÏËËËËËËËóëëóëóëôúúúúúôôôôÏúú÷÷÷ôôôôôôúúú÷÷ÏÏÏ!!!!!####ÌÌËËËËËËËëëóëóúúúú÷úôôôÏÏ÷÷÷ôôôôÏÏÏ÷úúúú÷Ï!!0!!####ÌÌÉËËËËËËóëóë!÷÷ú÷ôôôôÏÏÏ÷ôôôôÏÏÏÏÏ÷úúúú÷ÏÏÏ!00!!####ÌÌÉÉËËËËËëóóëë!!÷ú÷ôôÏÏÏÏ!÷÷ôôôÏÏÏÏÏ÷÷úúúôôÏ!0!!!####ÌÌÉÉÉËËËËóóóë!!!úúôôÏÏÏÏ!!÷ôôôÏÏÏÏ!÷úú÷÷ôô ÏÏÏ!!!!!####ÌÌÉÉÉËËËËëóë!!!!÷ôôÏÏÏÏ!!!÷ôôÏÏÏÏ!!úú÷÷ôô  Ï!!0!!####ÌÌÉÉÉËËËËëó!!!! ÏÏÏ!!!! ÏÏÏ!!!÷÷ôôôÏÏ ÏÏÏ!00!!####ÌÌÉÉÉËËËËëó!!!! ÏÏÏ!!!! ÏÏÏ!!!!÷÷ôôÏÏ  Ï!0!!!####ÌÌÉÉÉËËËËó!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏ ÏÏÏ!!!!!####ÌÌÉÉÉËËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏ  Ï!!0!!####ÌÌÉÉÉËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏ ÏÏÏ!00!!####ÌÌÉÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏ     Ï!0!!! ###ÌÌÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏ Ï ÏÏ!!!! ###ÌÌÉÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏ     Ï!!! ÉÉÉ ##ÌÌÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏ Ï ÏÏ!! ÉÉÉÉÉ #ÌÌÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏ     Ï! ÉÉÉÉÉ  ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏ Ï ÏÏ ÉÉÉÉÉ  ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏ     ÏÏ ÌÌÌÌÌ  ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ï ÏÏÏÏÏÏÌÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏ     ÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ï ÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ     ÏÏÏÏÏÏÏÏÏÌÌÌÌ!!!! ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ï Ï Ï Ï Ï Ï Ï Ì ! !     Ì ! !     Ï ! !     Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï                                                                 Ï Ï Ï Ï Ï Ï Ï Ï !     Ì ! !     Ï ! !     Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï                                                                 Ï Ï Ï Ï Ï Ï Ï Ï     Ì ! !       ! !     Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï Ï lincity-1.13.1/icons/powerscoal-low.csi0000644000175000017500000001000007340322027014747 00000000000000ĝĝĝĝËËËRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏììììììïìîìîîRRRâRRRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏìììììììîîRRRRRâRRRRRRRRRRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏìììììììRRRâRâRRRRRRRRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏìììììììììRRRRRâââRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏììììRRRâRâRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏììÌÌììïììRRRRRRRâRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌïìïììRRRRRâRRRR! RRRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌïïììïìRRâRRRRRRRR!! RRRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌììïììâRRRRRRR! ! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌìïìììììRRâRâRRRRR!!! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏïïììììâââRRRRR! ! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏïììïìRRâRâRRRRR!!! RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏìïïïRRâRRRRR!!11 RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏïìïïRRRRâRRRRR!1111 RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏìÏìRRRRRRRR111111RRRËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌÌÌÌÌRRRRRRRRRR111111RRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌÌÌRRRRRRRRRRRRRRRRRËËËĝËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌRRRRRRRRRRRRRRRRRRRËËËĝĝĝĝÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌĝĝĝËËĝĝĝËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏÏÏô÷Ï÷÷ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏÏôô÷÷÷÷÷÷öÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏôÏ÷÷÷ú÷÷÷öÏÏÏÏÏÏÏÏÏÏÏÏÏĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏ÷÷÷÷úú÷÷÷öôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝĝĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷÷úú÷ôôöôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷úúú÷ôôöôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏôô÷÷úúú÷ôôöôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏôô÷úúúúúúôöôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏ÷÷÷úúúúúúôöôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!ÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷úúú÷÷ôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!#ÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷ú÷úúúôúôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!##ÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏô÷÷÷úúúúôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!###ÏÏÏËËËËËËËÏÏÏÏÏÏÏÏô÷÷úúúúôôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!!####ÌÏËËËËËËËÏÏÏÏÏÏÏÏôúúúúúôôôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!!!####ÌÌËËËËËËËÏÏÏÏÏÏÏÏúúúú÷úôôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!0!!####ÌÌÉËËËËËËÏÏÏÏÏÏÏ!÷÷ú÷ôôôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!00!!####ÌÌÉÉËËËËËÏÏÏÏÏÏ!!÷ú÷ôôÏÏÏÏ!ÏÏÏÏÏÏÏÏÏÏÏÏÏ!0!!!####ÌÌÉÉÉËËËËÏÏÏÏÏ!!!úúôôÏÏÏÏ!!ÏÏÏÏÏ!ÏÏÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËËÏÏÏÏ!!!!÷ôôÏÏÏÏ!!!ÏÏÏÏ!!ÏÏÏÏ!!0!!####ÌÌÉÉÉËËËËÏÏÏ!!!! ÏÏÏ!!!!ÏÏÏ!!!##ÏÏÏÏÏÏÏ!00!!####ÌÌÉÉÉËËËËÏÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!!#ÏÏÏÏ!0!!!####ÌÌÉÉÉËËËËÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏ!!0!!####ÌÌÉÉÉËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏ!00!!####ÌÌÉÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏ!0!!! ###ÌÌÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ!!!! ###ÌÌÉÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏ!!! ÉÉÉ ##ÌÌÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏ!! ÉÉÉÉÉ #ÌÌÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ! ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌ!!!! ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌ!! Ì!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ! Ì!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ì!! !! ÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/powerscoal-med.csi0000644000175000017500000001000007340322027014713 00000000000000ĝĝĝĝËËËRRRRRRRRRRËËËĝËËËëóëëëëóóëëRRRâRRRRRRRRRRRRRËËËĝËËËëóëëëëëëóóëëëëRRRRRâRRRRRRRRRRRRRËËËËËËËëëëëëóëëëëëëëóóRRRâRâRRRRRRRRRRRËËËËËËËëëóëëóëëëëóëRRRRRâââRRRRRRRRRRRËËËĝËËËóëëëëëëëëëëóëëRRRâRâRRRRRRRRRRRËËËĝËËËóëóëëëëëëRRRRRRRâRRRRRRRRRRRËËËĝËËËóóëóëëóëóëóóëRRRRRâRRRR! RRRRRËËËËËËËóëóóëëóëëëëóRRâRRRRRRRR!! RRRRËËËËËËËëóëóóóóëëëëëëóëâRRRRRRR! ! RRRËËËËËËËëëóóëëëëëëRRâRâRRRRR!!! RRRËËËËËËËëóëëëëëóëâââRRRRR! ! RRRËËËËËËËóëëëëëóRRâRâRRRRR!!! RRRËËËËËËËëëëóóëëëRRâRRRRR!!11 RRRËËËËËËËëëëëëëëëëëóëëëRRRRâRRRRR!1111 RRRËËËËËËËëëëóRRRRRRRRRRRRRRRRRËËËËËËËóëëëëëëëëëëëëëRRRRRRRRRRRRRRRRRRRËËËĝËËËóóëëëëëôëëRRRRRRRRRRRRRRRRRËËËĝËËËóóóëëëôëëëëëRRRRRRRRRRRRRRRRRRRËËËĝĝĝĝëóÏëëëëóëëëóëëëóËËËËËËËËËËËËËËËËËËËËËËËËËËËËËëëëëëëóÏÏëëëëëóëóóëóëóËËËËËËËËËËËËËËËËËËËËËËËËËËËËËëëëëëëëëëëëëëëëëëëëëëóëëóËËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏëÏëóëÏëëëëëëóëëëëëëëĝĝĝËËĝĝĝËËËËËËËËËËËËËËËËËËËËËÏëëëëëëëÏÏÏÏÏô÷ë÷÷ëëëëôôëĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏëëëëëëëëëÏôô÷÷÷÷÷÷ëëëëôôô÷÷÷÷÷ëëëĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏëëÏëëëÏô÷÷÷÷ú÷÷÷ëëôôôô÷÷÷÷÷÷÷ĝËËËËËËËËËËËËËËËËËËËËËËËËËËËËÏÏÏÏÏÏÏÏÏÏ÷÷÷÷úú÷÷÷ëôôô÷÷÷÷÷÷÷ôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏĝĝĝĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷÷úú÷ôôëôô÷÷÷úú÷÷÷÷÷÷ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷úúú÷ôôôô÷÷÷úúúú÷÷ô÷÷ëÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏôô÷÷úúú÷ôôôô÷÷÷úúú÷÷÷ô÷ëÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏôô÷úúúúúúôôôô÷÷úú÷÷úôô÷ëÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏËËËËËËËÏÏÏÏÏÏÏÏÏ÷÷÷úúúúúúôôô÷ú÷÷÷÷úôô÷ëëÏÏÏÏÏ!ÏÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷÷÷úúú÷÷ôúúú÷÷ôôôôôôÏÏÏÏÏÏÏÏÏÏ!!#ÏÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏÏô÷ú÷úúúôúôúú÷÷÷÷÷ôôôôÏÏÏÏÏÏ!!!##ÏÏÏÏËËËĝËËËÏÏÏÏÏÏÏÏô÷÷÷úúúúôôô÷úú÷÷÷ôôôôôÏÏÏÏÏÏÏÏ!!!!###ÏÏÏËËËËËËËÏÏÏÏÏÏÏÏô÷÷úúúúôôôô÷úú÷÷÷ôôôôÏÏÏÏÏ!!!!!####ÌÏËËËËËËËÏÏÏÏÏÏÏÏôúúúúúôôôôÏúú÷÷÷ôôôôôÏÏÏÏÏÏÏÏ!!!0!####ÌÌËËËËËËËÏÏÏÏÏÏÏÏúúú÷÷úôôôÏ÷÷÷÷ôôôôÏÏÏÏÏÏÏÏ!!00!####ÌÌÉËËËËËËÏÏÏÏÏÏÏ!÷÷ú÷ôôôôÏÏô÷ôôôôÏÏÏÏÏÏÏÏÏÏÏÏÏ!!0!!####ÌÌÉÉËËËËËÏÏÏÏÏÏ!!÷ú÷ôôÏÏÏÏô÷÷ôôôÏÏÏÏÏÏÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËËÏÏÏÏÏ!!!úúôôÏÏÏÏô÷÷ôôôÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ!!!0!####ÌÌÉÉÉËËËËÏÏÏÏ!!!!÷ôôÏÏÏÏ!!!! ÏÏÏÏ ÏÏÏÏÏ!!00!####ÌÌÉÉÉËËËËÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏ!! ÏÏÏÏÏÏÏÏ!!0!!####ÌÌÉÉÉËËËËÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏ!!! ÏÏÏÏÏ!!!!!####ÌÌÉÉÉËËËËÏ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏ!!!0!####ÌÌÉÉÉËËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏ!!00!####ÌÌÉÉÉËËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏ!!0!!####ÌÌÉÉÉËË!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏ!0!!! ###ÌÌÉÉÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ!!!! ###ÌÌÉÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏ!!! ÉÉÉ ##ÌÌÉÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏ!! ÉÉÉÉÉ #ÌÌÉ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏ! ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÉÉÉÉÉ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ ÌÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌ ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌÌÌÌ!!!! ÌÌÌ!!!! ÏÏÏ!!!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌÌ!! Ì!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÌ! Ì!! Ï!! ÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏÏ Ì!! !! ÏÏÏÏÏÏÏÏÏÏÏÏlincity-1.13.1/icons/powerssolar-button.csi0000644000175000017500000000040007340322027015666 00000000000000zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙lincity-1.13.1/icons/powerssolar.csi0000644000175000017500000001000007340322026014351 00000000000000OLOOLLLOOOOOOOOOOOLOOOOOOOOOOOOOOOOOOOLOOOOOLOOOOOOOOLOLLLOOOOLOLOLOLOOLOOLOLOLLOOOOOOOLOLOOOLOLOLLOOLOLOOLOLOOLOLLOLOLLOOOLLLLLOLOLOOOOOOOOOOOOOOOOOOOOOOLOOOOOOOLLOLOLOOOOOOOOOOOOOOOOLLLLLOOLLLOOOO OOOOOOòġġOOOOOOOOLLLOOOOOOOOOOOOOOOOOOOOOOOOOLLLOLLOLOOO OOOOOòòġġġOOOOOOLOLLOOOOLOOOOOOOOOOOOOOOOOOOOLOOOLLOOO OOOOòòòòġġġOOOOOOOOLOLLOOOLOOOOOOOOOOOOOOOLLLOLOOOOO OOOOòòòòġġġġOOOOOOOLOOOOOOLOOOOOOOOOOOOOOOOLOLLLOO # ## # OOOOòòòòòġġġOOOOOOOOOOOOLOOOOOOOOOOOOOOOOOOOOLOOOO ## OOOOòòòòòġġġġOOOOOOOOOLOOOOOOOOOOOOOOOOOOOOOOLOLOOLO ## OOOOòòòòòòġġġġOOOOOOOOOLOLOOOOOOOOOOOOOLLOOLO## OOOOòòòòòòġġîîOOOOOOOOLLOOOOOOOO˙˙˙OOOOOOOOLOOOLO# OOOîòòòòòòòîîOOOOOOOOOLOOOOOOOOO˙˙˙OOOOOOOOOOOOOO /////OOôôîòòòòò˙˙˙]OOOOOOOOOLOOOOOOOO˙˙˙OOOOOOOLLOOOL ////IOôôô˙˙˙]OOOOOOOOOOOOOOOOOOLLOOLO ////ôôôôOòòî]]˙˙]OOOOOOOOOOOLOOOOOOOOOOOOOOOOLLOOOOOLO ////ôôôôôOOOîîîî]]OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOLLOOLOOIIôôôôOOOOOOîî]]OOOOOOOOOOOOOOOOOOOOOOOOOOOOLOOOOOOLOOOôôôôOOOOOOOOOOO˙OO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOOLOOOLOOOôôôôôOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOLOOOOOOOLOOOOôôôôôOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOLOLOOOOLOLOOOôôôôôOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOLOOLOOOOOOOôôôôOOOOOOOOOO˙O]OOOOOOOOO˙OOOOOOOOOOOOOOOOOOOLOOOOOLLOOOOOôôôOOOOOOOOOOOOO]OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOôôIIIOOOOOOOOOOOOOOOO˙OOOOOO˙OOOOOOOOOOOOOOOOOLOLOOOOLOOLOOOOIIIIIOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOLOOLLLLOOOOOOOIIIIIIIIOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOOOLLOLLOOLOOOOOIIIIIIIIIOOOO˙OOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOLOOOOOOOOOOOOOIIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOLOOLOLOOOOOOOOOOOOOOIIIIIIIOOOOOOOOOOO˙OOOOOOOOOO˙OOOOOOOOOOOOOOLOOLOOLLOOOOOOOOOOOOOIIIIIIII˙OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOLLOOOOOOOOOOOOOIIIIIIIIOIIOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOLLOOOOOOOOOOOOOOIIIIIIIIIIOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOLOOOOOOOOOOOOOOOOOOOOOOIII˙IIIIOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOLLLOOOOOOOOOOOOOOOOOOOIIIIIIIOOOOOOOOOOOOOOOOOOOOOOOOOOòòOOOOOOOLLOOOOOOOOOOOOOOOOOOOIIIIIIIIOOOOO˙OOOOOOOOOOOOOO˙OOòòòòòOOOOLOOLLLOOLOOOOOOOOOOOOOOOII˙IIIIOOOOOOOOOOOOOOOOOOOOOOò˙˙˙òòòOOOOOOOLLLOOOOOOOOOOOOOOOOOOOOIIIOOOOOOOOOOOOOOOOOOOOOOOò˙˙˙òòòOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOòòòòòòOOOOOOOLLOOLLLOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOòòOOôôôOOOOOOOLOOOLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOôôôôOOOOOOLLOOLLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOôôôôOOOOOOLOOLOLOLOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOôôôôOOOOOOLLOLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOôôOOOOOOOOOLOOOLLLOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOIIOOOOOOLLOOOLOLOOOOOOOOOOOOOOOOOOOO˙OOOOOOOOOOOOOOOOOOOOOOOOOOOIIIOOOOOOOOOOOOLOOOOOOOOOOOOOOOOOO˙˙òòòòòòOOOòò˙ò˙˙˙˙˙˙òòòOOOOOOOIIIOOOOOLLLOOOOOOOLOOOOOOOOOOOòòòòòòëëëëëOOOOOòòòòò˙òòòòòOOOOOOOOOOOOOOOOOLLLOLOOOOOOOOOOOOOOOOOëëëëëëOOOOOOOOOOòòòòòòOOOOOOOOOOOOOOOOOOOLOOLOOLOOOOOOOOOOOOOOOOOëëëëOOOOOOOOOOOôôôOOOOOOOOOOOOOOOOOOOOOOOOOLOOLOOOOOOOOOOOOOOOôôôôOOOOOOOOOôôôôOOOOOOOOOOOOOOOOOOOOOLLLLOOOOOOOOOOOOOOOOOOôôôôOOOOOOOOOôôôôOOOOOOOOOOOOOOOOOOOOOOLLOOLLOLOOOOOLOOOOOOOôôôôOOOOOOOOôôôôOOOOOOOOOOOOOOOOOOOOOOLOLOOOOLOOOOLOOOOOOOOOôôOOOOOOOOOOôôOOOOOOOOOOOOOOOOOOOOOLOLOLLLOOLOOOOOOOOOOOOOOOIIOOOOOOOOOOIIOOOOOOOOOOOOOOOOOOOOOOOLLLLLOLOOOOOOOOOOOOOOOOOIIIIOOOOOOOOOOOIIIIOOOOOOOOOOOOOOOOOOOOOLOOOLLLLOOLLOLOOOOOOOOOOOOIIIOOOOOOOOOOOIIIOOOOOOOOOOOOOLOOOOOLOLOOOOLLOOOLOOOLOOOOOOOOOOOOIIIOOOOOOOOOOOOIIOOOOLOOOOOLOOOOOOOLLOOOOLOLOLLLOOOLOOOOOOOOOOOOOOIIOOOOOOOOOOOOOOOOOOOOOOOOOOLOOOLOOLOLLOLLOLLLOOOLOOLOOOOOOOOOOOOOOOOOLOOOOOOOOOOLLLOOLOLOLLOLOLOOLLLOOOLLOLLLOOOLOOOOOLOOOOOOOOLLLOOLLOOOOOOOOOOOLOOOLLLOLLOLLLLOOOOLOLLLOLLOOLOLLOOOOOOLLLLLOLOOOOOOOOLOOLOOLLLLLLLOOLLLLLOLOLLOLOOOOOOLLLLLLLLLLLLLLLLLLOOOLLOOLOLOLLLLOLLLOOLLLLOOOOLOOLLOOOLOLOLOOOLOLOLOLOOOOLLOOOLLLOOLOOOOOLOOOOOLOOOOOOOLOLOOLLOLOOOOOLOOOOOOOlincity-1.13.1/icons/quit-button.csi0000644000175000017500000000200007340322027014266 00000000000000jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkjjkllllllllllllllllllllllllllllkjjklmmmmmmmmmmmmmmmmmmmmmmmmmmlkjjklmnnnnnnnnnnnnnnnnnnnnnnnnmlkjjklmnoooooooooooooooooooooonmlkjjklmnopppppppppppppppppppqonmlkjjklmnoqqqqqqqqqqqqqqqqqqqqonmlkjjklmnoqqqqqqqqqqqqqqqqqqqqonmlkjjklmnoqqqqqqqqqqqqqqqqqqqqonmlkjjklmnoqqqqqqqqqqqqqqqqqqqqonmlkjjklmnoqqqqqqqqqqqqqqqqqqqqonmlkjjklmnowwwqqqwqqqwqqwqqwwwwwnmlkjjklmnwpqqwqqwqqqwqqwqqqqwponmlkjjklmnwpqqwqqwqqqwqqwqqqqwponmlkjjklmnwpqqwqqwqqqwqqwqqqqwponmlkjjklmnwpqqwqqwqqqwqqwqqqqwponmlkjjklmnwpwqwqqwqqqwqqwqqqqwponmlkjjklmnwpqwwqqwqqqwqqwqqqqwponmlkjjklmnowwwwqqqwwwqqqwqqqqwponmlkjjklmnopqqqwqqqqqqqqqqqqqqponmlkjjklmnopqqqqqqqqqqqqqqqqqqponmlkjjklmnopqqqqqqqqqqqqqqqqqqponmlkjjklmnopqqqqqqqqqqqqqqqqqqponmlkjjklmnopqqqqqqqqqqqqqqqqqqponmlkjjklmnoppppppppppqqqqqqqqqponmlkjjklmnopppppppppppppppppppponmlkjjklmnoooooooooooooooooooooonmlkjjklmmmmmmmmmmmmmmmmmmmmmmmmmmlkjjkllllllllllllllllllllllllllllkjjkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjlincity-1.13.1/icons/rail-button.csi0000644000175000017500000000040007340322027014235 00000000000000YOYYYOYY6OYYYOYYYV6OYVYOYVYO6VOYOOOOOOOOOOOOOOOOssssssssssssssssssssssssssssssssss#sss#sss#sss#sööööööööööööööööss#sss#sss#sss#sss#sss#sss#sss#sööööööööööööööööss#sss#sss#sss#sssssssssssssssssssssssssssssssssOOOOOOOOOOOOOOOOYYOYYY6OYYYOYYYYYYY6OYYYYOYY6OYYlincity-1.13.1/icons/raildr.csi0000644000175000017500000000040007340322026013251 00000000000000OYYYYOYYY:OYYYYYYYOYY:YOYYYYO:YYY:YYYOOOOOOOOOOOYYYYOsssssssssssOYYOOsssssssssssYYOOssssssssss#s:YOssss#söööööööYOOsssssösssss#sYYOssssös#ssss#sYYOsssösss#öööööO:Osssösssö#ss#sYYOsssössössssssYOOss#ö##ö#sssss:YOsssössösssOOOYYOsssössösssYYYYYOsssössösssOYYlincity-1.13.1/icons/railld.csi0000644000175000017500000000040007340322027013244 00000000000000YOYYYOYY6OYYYOYYYV6OYVYOYVYO6VYYOOOOOOOOOOYYYYYOsssssssssOOYOYYYsssssssssssOYYYOss#sss#sssssOY6YööööööösssssOYOYss#ssöössssssOYYss#sss#össsssOYOöööösssöössssO6Yss#öös#sössssOOYsssssössössssOYYsssssösssösssOYYOOOss#ö##ö#ssOOOYYOsssössösssOYYYYOsssössösssOYYlincity-1.13.1/icons/railldr.csi0000644000175000017500000000040007340322027013426 00000000000000YOYYYOYY6OYYYOYYYV6OYVYOYVYO6VOYOOOOOOOOOOOOOOOOssssssssssssssssssssssssssssssssss#sss#sss#sss#sööööööööööööööööss#ssöösss#sss#sss#sss#öss#sss#sööööööööööööööööss#öös#sös#sss#ssssssössössssssssssssösssössssssOOOss#ö##ö#ssOOOYYOsssössösssYYYYYYsssössösssOYYlincity-1.13.1/icons/raillr.csi0000644000175000017500000000040007340322030013254 00000000000000YOYYYOYY6OYYYOYYYV6OYVYOYVYO6VOYOOOOOOOOOOOOOOOOssssssssssssssssssssssssssssssssss#sss#sss#sss#sööööööööööööööööss#sss#sss#sss#sss#sss#sss#sss#sööööööööööööööööss#sss#sss#sss#sssssssssssssssssssssssssssssssssOOOOOOOOOOOOOOOOYYOYYY6OYYYOYYYYYYY6OYYYYOYY6OYYlincity-1.13.1/icons/raillu.csi0000644000175000017500000000040007340322030013257 00000000000000YOYsssössösssOYYYVVss#ö##ö#ssVOYOOOsssössösssO6Osssss#össösssOYYsssssös#sösssOOYss#öösss#össsOY6öööö#sssö#sssOYOss#ss#ssössssOYYss#sssöösssssOOYööööööö#sssssOYYss#sssssssssOO6OsssssssssssOYYYYssssssssssOOYOOYOOOOOOOOOOYYOYY6YYOYYY6OYYYOYYYYYYY6OYYYYOYY6OYYlincity-1.13.1/icons/raillud.csi0000644000175000017500000000040007340322030013423 00000000000000YOYsssössösssOYYYVVss#ö##ö#ssOOYOOOsssössösssO:YssssssössösssOYYsssssöössösssOYOss#öösössösssOYYöööös#ö##ö#ssOOYss#sssösöösssOYYss#sssöösösssOY:ööööööössösssOYOss#sssössösssOOYssssssössösssOYYsssss#ö##ö#ssOYOOOOsssössösssO:YYYOsssössösssOOYYYYsssössösssOYYlincity-1.13.1/icons/railludr.csi0000644000175000017500000000040007340322030013605 00000000000000YOYsssössösssOYYYVVss#ö##ö#ssVOYOOOsssössösssOOOssssssössösssssssssssösssössssssss#öös#ssö#sss#sööööööööööööööööss#sss#sööösss#sss#sssööös#sss#sööööööööööööööööss#sssösss#öös#sssssssösssössssssssss#ö##ö#sssssOOOsssössösssOOOYYOsssössösssYYYYYYsssössösssOYYlincity-1.13.1/icons/raillur.csi0000644000175000017500000000040007340322030013441 00000000000000YOYsssössösssOYYYVVss#ö##ö#ssVOYOOOsssössösssOOOssssssössösssssssssssösssössssssss#öös#ssö#sss#sööööööööööööööööss#sss#sös#sss#sss#sssööss#sss#sööööööööööööööööss#sss#sss#sss#sssssssssssssssssssssssssssssssssOOOOOOOOOOOOOOOOYYOYYY6OYYYOYYYYYYY6OYYYYOYY6OYYlincity-1.13.1/icons/railud.csi0000644000175000017500000000040007340322030013247 00000000000000YOOsssössösssOYY:VOss#ö##ö#ssOOYYOOsssössösssO:YYYOsssössösssOYYOYOsssössösssOYOYYOsssössösssOYYYOOss#ö##ö#ssOOYY:OsssössösssOYYYYOsssössösssOY:OYOsssössösssOYOYYOsssössösssOOY:YOsssössösssOYYYOOss#ö##ö#ssOYOYYOsssössösssO:YY:OsssössösssOOYYYOsssössösssOYYlincity-1.13.1/icons/railudr.csi0000644000175000017500000000040007340322030013431 00000000000000YYOsssössösssOYYYOOss#ö##ö#ssVOYY:OsssössösssOOOYYOsssössössssssOYOsssössössssssYYOss#ö##ö#sss#s:YOsssössöööööööYOOsssössöösss#sYYOsssösöössss#sYYOsssöösöööööööO:Osssössösöös#sYYOsssössöösssssYOOss#ö##ö#sssss:YOsssössösssOOOYYOsssössösssYYYYYOsssössösssOYYlincity-1.13.1/icons/railur.csi0000644000175000017500000000040007340322030013265 00000000000000YYOsssössösssOYYYOOss#ö##ö#ssVOYY:OsssössösssOOOYYOsssössössssssOYOsssössössssssYYOss#ö##ö#sss#s:YOsssösssööööööYOOsssösssssss#sYYOssssössssss#sYYOsssssööööööööO:YOssssssssss#sYYYOssssssssssssYOYYOsssssssssss:YOYYOOOOOOOOOOOYYYOYYY:OYYY:YOYYYYYY:OYYYYOYYYYlincity-1.13.1/icons/recycle-button.csi0000644000175000017500000000040007340322030014726 00000000000000UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUĥĥUıUUUUUUUUUUUĥUUĥıUUUUUUUUUUUUUıııUUUUUUUıııUUUUUUUUUUUUUUĥıUUUUUUUĥUUUUUĥUıUUUUUUUUĥUUUUĥUUUUUUUUUUĥUUUUĥUUUUUUUıUUĥUUUUUĥĥĥĥUUıĥĥĥUUUUUUUUUUUUUıUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUlincity-1.13.1/icons/recycle-centre.csi0000644000175000017500000000200007340322030014671 00000000000000WWWWWWWWWWWWWWWWûWWWWWWWWWWWWWWWWûWWWWWWWWWWWWWWWWûWWWWWWĜĜĜĜĜĜWWWWWWWWWWĜĜÓÓĠTWWWûûûWWWWWWĜĜÓÓĠTTWWWWWWWWWWWWWWWWWĜĜÓÓĠTTWWWWWWWWWWWWWWWWWWĜĜÓÓĠTTWWWWĜĜĜĜĜĜĜĜĜĜĜĜĜĜĜĜÓÓĠTTWWWWĜĜĜÓÓÓÓÓÓÓÓÓÓÓÓÓÓÓĠTTWWWWĜĜĜÓÓÓÓÓÓÓÓÓÓÓÓÓÓÓĠTTWWWWĜĜĜÓÓÓÓÓÓÓÓÓÓÓÓÓÓÓĠTTWWWWĜĜĜÓÓÓÓÓÓÓÓ¸ÓÓÓÓÓÓĠTTWWWWWWWWWWĜĜĜÓÓÓÓÓÓÓ¸Ó¸Ó½ÓÓÓĠTTWWWWWWWWWWĜĜĜÓÓÓÓÓÓ¸ÓÓÓ¸½ÓÓÓĠTTWWWWWRRRRWĜĜĜÓÓÓÓÓÓÓÓÓ½½½ÓÓÓĠTTWWWWWRRRRRĜĜĜÓÓ½½½ÓÓÓÓÓÓÓÓÓÓĠTTWWWWWR RRRĜĜĜÓÓÓ¸½ÓÓÓÓÓÓÓÓ¸ÓĠTTWWWWW R RRĜĜĜÓÓ¸Ó½ÓÓÓÓÓÓÓÓÓ¸ĠTTWWWW RRRÖÖĜÓÓ¸ÓÓÓÓÓÓÓÓÓÓÓ¸ĠTTWWWW WUUUÖÖĜÓÓ¸ÓÓÓÓÓÓÓÓ½ÓÓ¸ĠTTWWWWUUUWWUÖÖĜÓÓÓ¸¸¸¸¸ÓÓ½¸¸¸¸ĠTTWWWWWUUWWWÖÖÖÓÓÓÓÓÓÓÓÓÓÓ½ÓÓÓĠTTWWWWWWWRWWÖÖĜÓÓÓÓÓÓÓÓÓÓÓÓÓÓÓĠTTWWWWWRRRRWĜĜĜĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠTTWWWWWRRRRRĜĜTTWWWWWR RRRĜTTWWWWW R RRWTTTTTTTTTTTTTTTTTTTTTWWWW RRRWWTTTTTTTTTTTTTTTTTTTTWWWW WWWWWWWTTTTTTTTTTTTTTTUTTTWWWWWTTWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWTTTTWWWWWWWWWWWWWWWWWWWWWWWWlincity-1.13.1/icons/reshihi.csi0000644000175000017500000000440007340322030013426 00000000000000tttttttttttttttttttttttttttttttttttttttttttttttttUUUUUUUUUUUUUUUUUUUUUUUUUUUPUtUUUUUUUUUUUUUUUUttUUUUUUUUUUUPUttUUUUtUUUtUPttUUUttUUPUUUUPUPUttttttUUUUUUUPUUUUUttUUUUPUttttttUUUUUUtUsUUUUUUUttUUtttPPUttUUUssUUUUUUtUUsUUUUUtPPUttUPPtUUUU[ttt[UUUUUU9999UUUtPUttU955UUUUttUUUU<5UUUU[UUUUUUö99999RUUtUUUUö9"5RUUUttUU9<5RUUUUUUUUUUñ9<<<>>>>>>>>>>>>>>>>888888888888888>888888888888888>882222222222222>882222222222222>882222222222>882222222222>8822222222222>8822222222222>882222222222>882222222>882222222222222>882222222222222>888888888888888>888888888888888>>>>>>>>>>>>>>>>lincity-1.13.1/icons/slow-onr.csi0000644000175000017500000000040007340322034013553 00000000000000>>>>>>>>>>>>>>>>888888888888888>888888888888888>222222222222288>222222222222288>2&&22&222&22288>&22&2&222&22288>&22&2&222&22288>&22&2&2&2&22288>&22&2&2&2&22288>2&&222&&&222288>222222222222288>222222222222288>888888888888888>888888888888888>>>>>>>>>>>>>>>>>lincity-1.13.1/icons/substation-G.csi0000644000175000017500000000200007340322034014350 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêê꟟ŸêêêêêêêêûûûġġġġġġġġġġêêêêêêŸêêêêêêûûûġġġġġġġġġġêêêêêê꟟Ÿêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûççççççççççêêêêêêêêêêêêêêêêûûçççççööççççêêêê???êêêêêêêûçççççööçççççêêêêê?êêêêêêêêêêêêêêêêêêêêêêêêê???êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêêêêêêñññKKKñKKKñññêêêêêêêêêêêêêêêêêêêñññKñKñKñKñññêêêêêêêêêêêêêêêêêêêñññKKKKKKKñññêêêêOOOO_____OOOOêêñKKKGQGQGKKKñêêêêOOOO_____OOOOêêñKñKQGQGQKñKñêêêêOOOO_____OOOOêêñññKGQGQGKñññêêêêOOOO_____OOOOêêñññKQGQGQKñññêêêêêêêêêêêêêêêêêêêñKKKKKKKKKKKñêêêêêêêêêêêêêêêêêêêñKñKñKñKñKñKñêêêê/////////////êêñññKñKñKñKñññêêêê/////////////êêñññKKKñKKKñññêêêê/////////////êêñññññññññññññêêêê/////////////êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêlincity-1.13.1/icons/substation-R.csi0000644000175000017500000000200007340322034014363 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêê꟟ŸêêêêêêêêûûûġġġġġġġġġġêêêêêêŸêêêêêêûûûġġġġġġġġġġêêêêêê꟟Ÿêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûççççççççççêêêêêêêêêêêêêêêêûûçççççööççççêêêê???êêêêêêêûçççççööçççççêêêêê?êêêêêêêêêêêêêêêêêêêêêêêêê???êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêêêêêêñññKKKñKKKñññêêêêêêêêêêêêêêêêêêêñññKñKñKñKñññêêêêêêêêêêêêêêêêêêêñññKKKKKKKñññêêêêOOOOOOOOOOOOOêêñKKKGQGQGKKKñêêêêOOOOOOOOOOOOOêêñKñKQGQGQKñKñêêêêOOOOOOOOOOOOOêêñññKGQGQGKñññêêêêOOOOOOOOOOOOOêêñññKQGQGQKñññêêêêêêêêêêêêêêêêêêêñKKKKKKKKKKKñêêêêêêêêêêêêêêêêêêêñKñKñKñKñKñKñêêêê////?????////êêñññKñKñKñKñññêêêê////?????////êêñññKKKñKKKñññêêêê////?????////êêñññññññññññññêêêê////?????////êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêlincity-1.13.1/icons/substation-RG.csi0000644000175000017500000000200007340322034014472 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêê꟟ŸêêêêêêêêûûûġġġġġġġġġġêêêêêêŸêêêêêêûûûġġġġġġġġġġêêêêêê꟟Ÿêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêûûûççççççççççêêêêêêêêêêêêêêêêûûçççççööççççêêêê???êêêêêêêûçççççööçççççêêêêê?êêêêêêêêêêêêêêêêêêêêêêêêê???êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêñññññññññññññêêêêêêêêêêêêêêêêêêêñññKKKñKKKñññêêêêêêêêêêêêêêêêêêêñññKñKñKñKñññêêêêêêêêêêêêêêêêêêêñññKKKKKKKñññêêêêOOOO_____OOOOêêñKKKGQGQGKKKñêêêêOOOO_____OOOOêêñKñKQGQGQKñKñêêêêOOOO_____OOOOêêñññKGQGQGKñññêêêêOOOO_____OOOOêêñññKQGQGQKñññêêêêêêêêêêêêêêêêêêêñKKKKKKKKKKKñêêêêêêêêêêêêêêêêêêêñKñKñKñKñKñKñêêêê////?????////êêñññKñKñKñKñññêêêê////?????////êêñññKKKñKKKñññêêêê////?????////êêñññññññññññññêêêê////?????////êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêlincity-1.13.1/icons/substation-button.csi0000644000175000017500000000040007340322034015477 00000000000000OOOOOOOOOOOOOOOOOOOOO??OOŸŸOO??OOŸŸOO??OOŸŸOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOlincity-1.13.1/icons/tip-button.csi0000644000175000017500000000040007340322034014100 00000000000000ÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚlincity-1.13.1/icons/tip0.csi0000644000175000017500000001000007340322022012641 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooommmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooonmmmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPínnnnmmmnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmmmmmnnoooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímmmmmmmmnnnnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmommmmnnnnnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímooonnnnmmnnnnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooooooonmmmmmmnmnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPooonnnnmmmnmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPoPoonnnmmmmnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPoooonnnommmmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooooonnnmmmmmnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoooooonommmmmmnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooPooonnnnnnnmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoPooPoooonnnnmmmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPoooooonnnnomnmnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoonnnommnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPooononnmmnnonPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoooonnnnmmnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPoPoonnnmmmmnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoPPooonmmmnnnnmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPooonnmmmnnmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPnoomnmmmnnnPoPPPooPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPnoonmnmmmonnooPPPooPPPoPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPoonmnommonoooPoooPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPoononmmnonoooPoPnPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPoooonmmmmnnooPnPnoPoPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPonnonnonmmnooononoPoPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPonnoonmmmmmmnomnmPoPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPoonmmmommnnmmnnoPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPooomnmmnmnmnmmmoooPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPooonnmmmmmmmmmoooPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPoooonommmmmmmnnooPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPoonnmmmmmmmmoPoPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPnonnommmmmmmnnooooPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPoPnnnonmmmnmmnnPooPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPoPnPPmnnmmmmmooooPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPoPPoPnnoPnonmmmnooPoPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPooonnonmmmnooPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPnoPooonnnmmmmoooPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoooooonnmmmmooooPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPnoooooommmmmoooPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoPoooomnmmmooPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPnPPooommmmmooooPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPpnPPPoonmnmmooooPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoooomnmmnoPoPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoooonnnnnnooPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPooPoonnnnnooooPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPooooonnnnnoPoPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPooooonnnnoooPPPPPPPíPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoooooooooooPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPooooooooPoPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoooooPPooPPPíííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoPoooPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPoPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip1.csi0000644000175000017500000001000007340322035012646 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooommmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooonmmmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPínnnnmmmnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmmmmmnnoooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímmmmmmmmnnnnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmommmmnnnnnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímooonnnnmmnnnnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooooooonmmmmmmnmnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPooonnnnmmmnmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPoPoonnnmmmmnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPoooonnnommmmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooooonnnmmmmmnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoooooonommmmmmnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooPooonnnnnnnmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoPooPoooonnnnmmmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPoooooonnnnomnmnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoonnnommnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPooononnmmnnonPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoooonnnnmmnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPoPoonnnmmmmnnoPPPPPPPPnPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPoPPooonmmmnnnnmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPooonnmmmnnmnooPPPPPnPPpPPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPnoomnmmmnnnPoPPPooooPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPnoonmnmmmonnooPPPooPoooPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPoonmnommonoooPoooPPooPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPoononmmnonoooPoPnPooooPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPoooonmmmmnnooPnPnoPooPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPonnonnonmmnooononoPooPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPonnoonmmmmmmnomnmPooPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPoonmmmommnnmmnnoPPPPPPPPPPPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPooomnmmnmnmnmmmoooPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPooonnmmmmmmmmmoooPPPPPPmmmmPjmPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPoooonommmmmmmnnooPPPPPjmmjmljjmPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPoonnmmmmmmmmoPoPPPPjjmjjmlmjmmPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPnonnommmmmmmmnoooPPPkPjjmmmmjjmmPPPííííPPPPPPPPPPPPPPPPPPPPooooonnnnonmmmnmoonPPoPPPkP—jmmmjjjjmPPPPííPPPPPPPPPPPPPPPPPPPPPo—oPoooPnPPmnnmmoonoPPPPPlljlkmmmmjjmmPPííííPPPPPPPPPPPPPPPPPPPPoPPPooPoPnnoPnonnnnPPPjjlPPPPlmmjmjjjmPPPííPPPPPPPPPPPPPPPPPPPPPPojooolPoPnoonnnoooooPPlllPklklmjkjjPmPPííííPPPPPPPPPPPPPPPPPPPPPPPpPPPlPnPnnoonPooooPkjjPkmkmmljjjjmPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPlnplPPoooPoooooolPPkmkmmmjmmjjjPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPpynnnnPoooPoPlPoPPPPkPmmjkjkjjPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPlPPPPPPoPPPkllkmmkPkPmkmjPjjjPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPnlnllnnnoooPPPmPmkkkkmmjjjjjjPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPkPllPpnPPkkkkPkljkkkjkmjkmjjjPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPlkPPlPPnllPjjll—mmmmmmmkjkmjjjPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPmjjjkknnPPPjljjPPmPkkmjmjjkjjjkjPPííííPPPPPPPPPPPPPPPPPPPPPPPPPkkkjjjPkPnkjjjPPmmPmmmmjüjkjjjkjjPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPkkjjjjjjkjkjjmmjmmPmmmkmjmjjjjkjPPííííPPPPPPPPPPPPPPPPPPPPPPPPPkjkjnjkjlnPkPlmlmmmmmkjjkjjjjjkjjPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPkkjkkkkkknkkkkmmkkkjjjjjmjjjjjjjPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPkkkjnklnllPkkkkkkjmmkmjjjjjjjPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPjjjjjjjjjPlllkmmkmjjjjjjjjjjjPPPPPíííPPPPPPPPPPPPPPPPPPPPPPPPPPjjjjjjjjjkkkkkmmjjjjjjjjjkjjPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPmjjjjjjjjjjjjjjjjjjjjjjjjjjjPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPkkPkjjjPjljjjjjjjjjmjjjkjjjPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPjPjjkjjjjjjmPljjjjjjmjkPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPkjkjlPkPPlPmmmjPPPPPPPPPPPPííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPkPkkPPPjlPPPPPPPPPPPPPPPPPPPPPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip2.csi0000644000175000017500000001000007340322035012647 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooommmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooonmmmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPínnnnmmmnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmmmmmnnoooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímmmmmmmmnnnnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPíímmmommmmnnnnnnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPímooonnnnmmnnnnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííooooooonmmmmmmnmnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPooonnnnmmmnmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPoPoonnnmmmmnnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPoooonnnommmmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooooonnnmmmmmnnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoooooonommmmmmnnoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííííPPPPooPooonnnnnnnmmnnPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPííPPPPPoPooPoooonnnnmmmmoPPPPPPPPPPPPPPPPPPPPPjmmmmPPPPjPPPPPPPííííPPPPPPPoooooonnnnomnmnoPPPPPPPPPPPPPPPPPPPkmmjmmjkkjjjPPPPPPPííPPPPPPPPPPPPPoonnnommnnnnPPPPPPPPPPPPPPPPPmmmmükkmmjjkjPjPPPPííííPPPPPPPPPPPPooononnmmnnonPPPPPPPPPPPPPPkkkljmjjmkmmkkjjjPjPPPííPPPPPPPPPPPPPoooonnnnmmnnnoPPPPPPPPPPPPPPPnPjmmjmmmmjkjjjPjPPííííPPPPPPPPPPPPoPoonnnmmmmnnoPPPPPPPPnPPPPkPPPmmjPmükkjjjjjPjPPPííPPPPPPPPPPPPPoPPooonmmmnnnnmoPPPPPPPPPPkkPmmllPjljjkjjjjjPjkPííííPPPPPPPPPPPPPPPooonnmmmnnmnooPPPPPnPPpkPPlWllmPjjPjkjjjjjPPPííPPPPPPPPPPPPPPPPPnoomnmmmnnnPoPPPooooPPPPllljPmmmkjkjjjjjjPPííííPPPPPPPPPPPPPPPPnoonmnmmmonnooPPPooPoooPPPPlPPmPmjjjjjjjjjPPPííPPPPPPPPPPPPPPPPPPPoonmnommonoooPoooPPooPllPplpmmmkPkjjjjjjPPííííPPPPPPPPPPPPPPPPPPoononmmnonoooPoPnPooooPllPlplmkmjjkjjjjjllPííPPPPPPPPPPPPPPPPPPPoooonmmmmnnooPnPnoPooPPPnPyplmjmjPjjjjjjPlííííPPPPPPPPPPPPPPPPPPonnonnonmmnooononoPooPPlPPnpPnjmjkkjjjPPPlPííPPPPPPPPPPPPPPPPPPPPonnoonmmmmmmnomnmPooPPlPPPPmmmmjjkjjjPjPPííííPPPPPPPPPPPPPPPPPPPPPPPoonmmmommnnmmnnoPPPjPPPllkmmjjjjjjjPPPííPPPPPPPPPPPPPPPPPPPPPPPPooomnmmnmnmnmmmoooPPPPPlmmmkjPjPjPPPííííPPPPPPPPPPPnPPPPPPPPPPPPooonnmmmmmmmmmoooPPkPlmmmmmPjmmjjjPPPííPPPPPPPPPPPPPPPPPPPPPPPjPoooonommmmmmmnnooPPnnjjmmjmljjjjjlPPííííPPPPPPPPPPPPPPPyPPjlPPPPPPoonnmmmmmmmmoPoPPnljjmjjmlmjjjjPPlPííPPPPPPPPPPPPPPPPPPPPjPPPPPnonnommmmmmmmnoooPPkkPjjmmmmjjjjPPlííííPPPPPPPPPPPPPPPPkPPPooooonnnnonmmmnmoonPPoPPPkP—jmmmjjjjPjlPPííPPPPPPPPPPPPPlPlkPPPjo—oPoooPnPPmnnmmoonoPPPPPlljlkmmmmjjjjlPííííPPPPPPPPPPPPPklPPPPPoPPPooPoPnnoPnonnnnPPPjjlPPPPlmmjmjjjjPPPííPPPPPPPPPPPPPPlmlpPPPPojooolPoPnoonnnoooooPPlllPklklmjkjjPjPPííííPPPPPPPPPPPPPmmPPPllPPPpPPPlPnPnnoonPooooPkjjPkmkmmljjjjPPPPííPPPPPPPPPPPPPPPmPPPPPlPPPlmPlnplPPoooPoooooolPPkmkmmmjmmjjjPPííííPPPPPPPPPPPPPPPjkPlPlPlPPmPpynnnnPoooPoPlPoPPPPkPmmjkjkjjPPPPííPPPPPPPPPPPPPPPPmllpPplPPPPlPPPPPPoPPPkllkmmkPkPmkmjPjjjPPPííííPPPPPPPPPPPPmmkjmmjjjl—lPPPPnlnllnnnoooPPPmPmkkkkmmjjjjjjPPPPííPPPPPPPPPPPPPkkjkkmkjljlkkkkkPllPpnPPkkkkPkljkkkjkmjkmjjjPPPííííPPPPPPPPPPPmmkjmkkkkjjjjkjPlkPPlPPnllPjjll—mmmmmmmkjkmjjjPPPPííPPPPPPPPkPPPmmmmkmmkmmkkkmjjjkknnPPPjljjPPmPkkmjmjjkjjjkjPPííííPPPPPPPPPPPkkmkkkmmmjjjkkkkkjjjPkPnkjjjPPmmPmmmmjüjkjjjkjjPPPííPPPPPPPPPPPPmmkkkmkkkkmkkkjjjjjjkjkjjmmjmmPmmmkmjmjjjjkjPPííííPPPPPPPPPPPjmkkkkkmkkkkkkjkjnjkjlnPkPlmlmmmmmkjjkjjjjjkjjPPPííPPPPPPPPPPPPkmjkkkkkkjkjkkkjkkkkkknkkkkmmkkkjjjjjmjjjjjjjjPPííííPPPPPPPPPPPmkjkPkkmjjjjkkkPkkkjnklnllPkkkkkkjmmkmjjjjjjjjjkPPííPPPPPPPPPPPPPjkkjjmjkjkjjkjjjjjjjjjjPlllkmmkmjjjjjjjjjjjkjkPííííPPPPPPPPPPPPPkjjjkjkjkjjkjjjjjjjjjjkkkkkmmjjjjjjjjjkjjjjkkPííPPPPPPPPPPPPPPPkjkkPmmjjkmkPkmjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkííííPPPPPPPPPPPPPPPPkmPkkmmPPkPPkkPkjjjPjljjjjjjjjjmjjjkjjjjjkkPííPPPPPPPPPPPPPPPPPPPPPPmmkkkkkkPPPjPjjkjjjjjjmPljjjjjjmjkjjkkmííííPPPPPPPPPPPPPPPPPPPPPmPmPmPPkPPPPPkjkjlPkPPlPmmmjjPkkkkkkkPPPííPPPPPPPPPPPPPPPPPPPmkkPPPPPPPPPkPkkPPPjlmkPPlPPPPmPllmPjkkPmPííííPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPjPlPPPlPPmPPPPPPPmmPmPPPPííPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip3.csi0000644000175000017500000001000007340322035012650 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooommmmoPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPííooonmmmnooPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPmPkPkkkkPkkPPPPPPPPPínnnnmmmnnnoPPPPPPPPPPPPPPPPPPPPPPPmmPmmkPkkkmjjjjmkmPkPPPmPPPPíímmmmmmmnnoooPPPPPPPPPPPPPPPPPPPPPPmPkkkkkkkPjjjjjjkmmkPPPPPPPPPímmmmmmmmnnnnooPPPPPPPPPPPPPPPPPPPPPPkmmmmPkmmjmjjjjjjjjkPPPPPPíímmmommmmnnnnnnnoPPPPPPPPPPPPPPjPPPPPkmjmmmmmjkjkkjjjjkjkjPPPPPPímooonnnnmmnnnnnnnPPPPPPPPPPPnjjPPPPPjmmmmmmkjkkkjkkjjjjjPPPPPííooooooonmmmmmmnmnoPPPPPPPPPnPPPPPjjjmjjmkjmmkjmjmkkjjjjjkjPPPPííPPPooonnnnmmmnmnooPPPPPPPPPPnPlPjmjjjmmmjmmkkmkjkkjkjjjjjjkPPííííPPPoPoonnnmmmmnnnnPPPPPPPPPnPjjjmjkPjPjkmkkmmkjkkkjkjjjjjPPPPííPPPPoooonnnommmmmnnPPPPPPPPPlPPlllPmmkmmkkjkmmmkmkjkjjjjPPPPííííPPPPooooonnnmmmmmnnnPPPPPPPnPPPPPjPPPmmjkmkmmmmmmkkkjjjjPPPPííPPPPPoooooonommmmmmnnoPPPPPPlPPPPPPPPPmjjkkmyjjkjmkükjjjjjPPPííííPPPPooPooonnnnnnnmmnnPPPPPPlll—PPlmmjjmjkPmmmmmkkkjjjjjjPPPPííPPPPPoPooPoooonnnnmmmmoPPPPPPPlPnnPknPPjjjkkjmmmmPjjmjjjjjPjjííííPPPPPPPoooooonnnnomnmnoPPPPPPPPPyPPPknykjPkmmjmmjkkjjjjjjPPjPííPPPPPPPPPPPPPoonnnommnnnnPPPPPPPPkPPlPPPPPmmmmükkmmjjkjjjjjPjííííPPPPPPPPPPPPooononnmmnnonPPPPPPPkknPPlkkkkljmjjmkmmkkjjjPjjjPííPPPPPPPPPPPPPoooonnnnmmnnnoPPPPPPPPPnPPPPnPjmmjmmmmjkjjjjjPjííííPPPPPPPPPPPPoPoonnnmmmmnnoPPPPPPPPnPPPPkPPPmmjPmükkjjjjjjjjjPííPPPPPPPPPPPPPoPPooonmmmnnnnmoPPPPPPPPPPkkPmmllPjljjkjjjjjPjkPííííPPPPPPPPPPPPPPPooonnmmmnnmnooPPPPPnPPpkPPlWllmPjjPjkjjjjjPPPííPPPPPPPPPPPPPPPPPnoomnmmmnnnPoPPPooooPPPPllljPmmmkjkjjjjjjPPííííPPPPPPPPPPPPPPPPnoonmnmmmonnooPPPooPoooPPPPlPPmPmjjjjjjjjjPPPííPPPPPPPPPPPPPPPPPPPoonmnommonoooPoooPPooPllPplpmmmkPkjjjjjjPPííííPPPPPPPPPPPPPPPPPPoononmmnonoooPoPnPooooPllPlplmkmjjkjjjjjllPííPPPPPPPPPPPPPPPPPPPoooonmmmmnnooPnPnoPooPPPnPyplmjmjPjjjjjjPlííííPPPPPPPPPPPPPPPPPPonnonnonmmnooononoPooPPlPPnpPnjmjkkjjjPPPlPííPPPPPPPPPPPPPPPPPPPPonnoonmmmmmmnomnmPooPPlPPPPmmmmjjkjjjPjPPííííPPPPPPPPPPPPPPPPPPPPPPPoonmmmommnnmmnnoPPPjPPPllkmmjjjjjjjPPPííPPPPPPPPPPPPPPPPPPPPPPPPooomnmmnmnmnmmmoooPPPPPlmmmkjPjPjPPPííííPPPPPPPPPPPnPPPPPPPPPPPPooonnmmmmmmmmmoooPPkPlmmmmmPjmmjjjPPPííPPPPPPPPPPPPPPPPPPPPPPPjPoooonommmmmmmnnooPPnnjjmmjmljjjjjlPPííííPPPPPPPPPPPPPPPyPPjlPPPPPPoonnmmmmmmmmoPoPPnljjmjjmlmjjjjPPlPííPPPPPPmPPPPPPPPPPPPPjPPPPPnonnommmmmmmmnoooPPkkPjjmmmmjjjjPPlííííPPPPPmPmPPPPPPPPkPPPooooonnnnonmmmnmoonPPoPPPkP—jmmmjjjjPjlPPííPPPPPPmmPmPPPlPlkPPPjo—oPoooPnPPmnnmmoonoPPPPPlljlkmmmmjjjjlPííííPPPPPmmPmPPPPklPPPPPoPPPooPoPnnoPnonnnnPPPjjlPPPPlmmjmjjjjPPPííPPPPkkkjjmPmPPlmlpPPPPojooolPoPnoonnnoooooPPlllPklklmjkjjPjPPííííPPPPPkkkkmmPPmmPPPllPPPpPPPlPnPnnoonPooooPkjjPkmkmmljjjjPPPPííPPPkkjmmmkmjPkPmPPPPPlPPPlmPlnplPPoooPoooooolPPkmkmmmjmmjjjPPííííPPkmkkmmmjjjkjjkPlPlPlPPmPpynnnnPoooPoPlPoPPPPkPmmjkjkjjPPPPííPPPkmmmmmmmmmPPmllpPplPPPPlPPPPPPoPPPkllkmmkPkPmkmjPjjjPPPííííPjjjjkmmmmmmmmkjmmjjjl—lPPPPnlnllnnnoooPPPmPmkkkkmmjjjjjjPPPPííPPkPmkkmmkmPkkjkkmkjljlkkkkkPllPpnPPkkkkPkljkkkjkmjkmjjjPPPííííkPmmmmkkkkmmmkjmkkkkjjjjkjPlkPPlPPnllPjjll—mmmmmmmkjkmjjjPPPPííPkkmkmkmkkkmmmmmkmmkmmkkkmjjjkknnPPPjljjPPmPkkmjmjjkjjjkjPPííííPkkkkmkmükkkkmkkkmmmjjjkkkkkjjjPkPnkjjjPPmmPmmmmjüjkjjjkjjPPPííPkkmmmkkkkkkmmkkkmkkkkmkkkjjjjjjkjkjjmmjmmPmmmkmjmjjjjkjPPííííkkmmjkmkjjjjmkkkkkmkkkkkkjkjnjkjlnPkPlmlmmmmmkjjkjjjjjkjjPPPííkkmkkjkkkjkkkmjkkkkkkjkjkkkjkkkkkknkkkkmmkkkjjjjjmjjjjjjjjPPííííPmjmjkmkjkmkjkPkkmjjjjkkkPkkkjnklnllPkkkkkkjmmkmjjjjjjjjjkPPííkkkjmkmjjjjkmjkkjjmjkjkjjkjjjjjjjjjjPlllkmmkmjjjjjjjjjjjkjkPííííPPPkkjkkmjkkmkjjjkjkjkjjkjjjjjjjjjjkkkkkmmjjjjjjjjjkjjjjkkPííPPPPkmjjkmjjkkjkjkkPmmjjkmkPkmjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkííííPPPkjjmjkkkkkkkPkmPkkmmPPkPPkkPkjjjPjljjjjjjjjjmjjjkjjjjjkkPííPPPmkmjmjjjPPmmmPPPPPPmmkkkkkkPPPjPjjkjjjjjjmPljjjjjjmjkjjkkmííííPPPPPjjjmPmmmmmPkPPPPmPmPmPPkPPPPPkjkjlPkPPlPmmmjjPkkkkkkkPPPííPPPPPPPmmPPPPPPPPPPmkkPPPPPPPPPkPkkPPPjlmkPPlPPPPmPllmPjkkPmPííííPPPPjPjPPPPPPPPPPPPPPPPPPPPPPPPPPPPPjPlPPPlPPmPPPPPPPmmPmPPPPííPíPíPíjíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip4.csi0000644000175000017500000001000007340322035012651 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooomlmmoPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPííooonlmmnooPPPPPPPPPPPlllllPlllPlljPjPPPPPPPmPkPkkkkPkkPPPPPPPPPínnnnmmmnnnoPPPPPPPPPPllmlllljPPllPljjmmkPkkkmjjjjmkmPkPPPmPPPPíímlmmmlmnnoooPPPPPPPlPllllmmljljlljljjjkkkkkjjjjjjjkmmkPPPPPPPPPímmlmmlmmnnnnooPPPPPlPlllll[ljjjlljljjjmmmjkmmjmjjjjjjjjkPPPPPPíímmmommllnlnnnnnoPPPPllllllllmljlllljjjjmmmmmjkjkkjjjjkjkjPPPPPPímooonlnnmmnnnnnnnPPPPPlllllmmjjlllljjjjmmmmkjkkkjkkjjjjjPPPPPííooooooonmmlmmmnmnoPPPPPllm—llllljjjjjjmkjmmkjmjmkkjjjjjkjPPPPííPPPooonnnlllmnmnooPPPPlmmmmlllmjjjhjmmmjmmkkmkjkkjkjjjjjjkPPííííPPPoPoonnnmmmmnnnnPPPmmmmjlllljjjjjjjjjjmkkmmkjkkkjkjjjjjPPPPííPPPPoooonnnomllmmnnPPPlllmllllllljjjjjjhjkjkmmmkmkjkjjjjPPPPííííPPPPooooonnlmmlmmnnnPPPlmmlnmlmljjjjjjjjkmkmmmmmmkkkjjhjPPPPííPPPPPoooooonommllmmnnoPPlll—lljjlmljlljjjkkmyjjkjmkükjjjhjPPPííííPPPPooPooonnnnllllmnnPPPPllllmmm[mjlljjmjklmmmmmkkkjjj—jjhPPPííPPPPPoPooPoooonnlnlmmmoPPPllllmjmmmlllljjjkkjmmmm[jjmjjjjhhjjííííPPPPPPPoooooonnlnlmnmnoPlllllmmmmmjjllykjllmmjmmjkkjjjjjjhhjPííPPPPPPPPPPPPPoonnnllmnnnnlljlljllmmllljjjjmmmmükkmmjjkjjjhjhjííííPPPPPPPPPPPPooononlmmnnolllllyljljjjjjkjhkljmjjmkmmkkjjjhjjjPííPPPPPPPPPPPPPoooonnnnmmnnnolllljlljljjjjjjnllmmjmmmmjkjjjhjhjííííPPPPPPPPPlPPjjjjnnllllmnnollmlllyjljjjjjhllmmjllükkjjjjjjjjjPííPPPPPPPPlPljjjlljoolmlmnnnnmomlllljjjjjjjjmmllljljjkjjjjjhjkPííííPPPPPPPllPjjlljjoojnmmmnnmlomlmllmjmjjjjjljjlmljhhjkj—jjjjPPPííPPPPPPlllmljljjjjnjjmnllmnnnjlllll—lmj—lljlljlmmmkjkjjjjjjPPííííPPPPlPllmmjljjljjoonmnmllonnlllllmjml—jjjhllllmlmjhjjjjjjhhPPííPPPPPPlllmmlllmjjjjoonmnommomll[lmlmljjjjjlplpmmmk[kjjjjjjPPííííPPPPlllmlmlmjmljjjjononlmnollllllllmljjjjjjlljlmkyjjkjjjjjllPííPPPPPllllmlylljlljjjooonmmmmlllmlllllljjjjljhjjlmyyjPhjjjjjPlííííPPPlllllllmlmljjjjnnonnllllmmllmonjljojjjjjjjPnjmjk[jjjhPPlPííPPPllmmlllmllmjljlljonnoonlllllmllljjljjyjjjjhlmmmmjjkjjhPjPPííííPPlmlmlmmmlmlljjjljjjjPjolllmmmmjjmjjjjjjjjjjjllkmmjhhjhjjPPPííPPPlmmymmllmmlmjjlljjjmmlollnllljjmjjjjojjjhjPlmmmkjPyPhPPPííííPPlmlllmmllljjmlljhjhhlllollllmlmmjmjjjjjjjhhlmmmmmPjmmjjjPPPííPPPPmlllml[lljmljjjjllllmlllyllmjmjjjnjojjjjjjjmmjmljjjjjlPPííííPPlmmmlmmmlmmmlljjjljllPPlllllmmmjj—jjjjjjjljjmjjmlmjjhjPPlPííPPPlmllmmllllmmmjjjjjjlPllnmmmomm—jjjjjjjjjlhkhljjmmmmjjjjPPlííííPPlPllP[mllmjlyjlhljlolmlmmmmlmmmmjjjljjljjjjll—jmmmjjjjPjlPPííPPPPlPmmkllllmljjjjhml—mPlmmmm[lmnnjjjjjhjjjjljljlkmmmmhjjjlPííííPPPl[mklmkm—llljlllmojlllmmmmmnmjyjjjjjjjhhhhjllllmmjmjjjjPPPííPPPPkkkmlmllmmjmlllhjjmmmmjmmmlmjjjnjljlyyhjlhljklklmjkjjPjPPííííPPPkmmkmyllllljjjjmhhhhpjjjmlljjjojjjjjjjjjjjjjjmkmmljjjjPPPPííPPPkkjmkmkklmkljjjljhhjjjmjjljjmjjjjlljjjhhhhjhhmkmmmjmmhjjPPííííPPkmkkkkkjljkjjjjjjlllljmjjj[jjjjojjjhljhohhhjkllmjkjkjjPPPPííPPPkmmkmkmmmmPPmllplpljjljl[jPjljljhhjlhjhjjjkllkmjPjjjPPPííííPjjjjkmmkmmmmmkjmmjjjl—llljlnlnllnljjoojjjmhmkhkkmmjjjjjjPPPPííPPkPmmkmmkmPkkjkkmkjljlkkkllllllllljjjkjjjkjjkkkjkmjkmjjjPPPííííkPmmmmkkkkmmmkjmkkkkjjjjkjllkjllljlllPjjlljmmmmmmmkjkmjjjPPPPííPkkmkmkmkkkmmmmmkmmkmmkkkmjjhklnllllllllllllkkmjmjjkjjjkjPPííííPkkkkmkmükkkkmkkkmmmjjjkkkkkjjllljlljlllllmlmmmmjüjkjjjkjjPPPííPkkmmmkkkkkkmmkkkmkkk[kmkkkjjjjjl[lkllllllmlmmmkjjjjjjjkjhPííííkkmmjkmkjjjjmkkkkkmkkkkkkhhhnjk[lllll[llmmlmmkjjjjjjjjkjjPPPííkkmkkjkkkjkkkmjkkkkkkjkjkkkjhkkkkl—klkllmkkkjjjjjjhhhjjjjjPPííííPmjmjkmkjkmkjkPkkmjjjjkhkhhhkhnklnlllkkkkkkjmjjjhhjjjjjhhkPPííkkkjmkmjjjjkmjkkjjmjkjkjhkjhhjhhjhjjllllkmmkmjjjjhjjjjjjhhkPííííPPPkkjkkmjkkmkjjjhjkjkhjkjjhhjhjhjjkkkkkmmjjjjjhhjjkjjjhkkPííPPPPkmjjkmjjkkjkjkhPmmjjkmkPkmjjhhjjhjjjjjjjjjjjjhhhhjjhhhhkkííííPPPkjjmjkkkkkkkPkmPkkmmPPkPPkkPkhjjPjljjjjjjjjjmjjhhhhjhhkkPííPPPmkmjmjjjPPmmmPPPPPPmmkkkkkkPPPjPjjkjjjjjjmPljjjjjjmjkjhkkmííííPPPPPjjjmPmmmmmPkPPPPmPmPmPPkPPPPPkjkjlPkPPlPmmmjjPkkhhhhkPPPííPPPPPPPmmPPPPPPPPPPmkkPPPPPPPPPkPkkPPPjlmkPPlPPPPmPllmPjkkPmPííííPPPPjPjPPPPPPPPPPPPPPPPPPPPPPPPPPPPPjPlPPPlPPmPPPPPPPmmPmPPPPííPíPíPíjíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip5.csi0000644000175000017500000001000007340322037012654 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooomlmmoPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPííooonlmmnooPPPPPPPPlPPlllllPlllPlljPjPPPPPPPmPkPkkkkPkkPPPPPPPPPínnnnmmmnnnoPPPPPPPlPPllmlllljPPllPljjmmkPkkkmjjjjmkmPkPPPmPPPPíímlmmmlmnnoooPPPPPPllPllllmmljljlljljjjkkkkkjjjjjjjkmmkPPPPPPPPPímmlmmlmmnnlnloPoPPllPlllllljjjlljljjNNmNNkmmjmjjNNNNjNkPPPPPPíímmmommllmmmoonnoPlllllllllllmjjjlljjNNjNmNNmjkjkkNNjjNNNjPPPPPPímooonlnllmlmoolollllPllllllmmjjjjjjjNNjmNmNNjkkkNNkjjNNjPPPPPííooooooonlmlmmoomlllllPPllm—jjjjljjjjNjjmkjmmNjmjmNkjjNjjkjPPPPííPPPooonlmlmmmoololPlPPllmmmjjjmjjjjhNmNmNmmjkmQjNNNkNjNjjjkPPííííPPPoPomllllommoooolllmlmjjjjjljjjj[jjjjjNkjmQkQNkkNNjjjjjPPPPííPPPPooooolmlllmooonllPlllmljjjljljjjjjjhjkjjkQmQkmkNNjjjjPPPPííííPPPPoooollnlllooolllPllljml[mjjjjjjjjNNjNmNmQmmNNNNkjNhjPPPPííPPPPPooolomoollmoomllllPllj—lljj—jljlljjNjQjyNjNjmNNNNNNhjPPPííííPPPPoolloommlmmoollnlllPjlljjmjjmjjjNjmjkljmmQmkkkjjNNjjhPPPííPPPPPoPollolooommoollolPo—llljmjmjmjjlljNNkkjmNQm[jjmjNNjhhjjííííPPPPPPPoollooolommmolloPljljljjmjjjNNNyNNlljmQmmjkNjNNNNjhNjNííPPPPPPPPlPPPPooommomollnnlljjljjjjmljNNNNjjmjmükkNNjjkjjjhjhjNíííPPPPPPPllllPloolommoollllllllyljljjjjjkjNjjjmjjmNmmkkjjjhjjNPííPPPPPPPPPlllllollllylmollnoljllj—jjljjjNjNnljmmjmNmmjkNjNNjhjííííPPPPPPPlPllPljjlnl—llllljolljll—jj[jjjjjjlljmjlQNNkjjNNjNNjjPííPPPPPPPPlPlljjlljollllllljnmjmljjjjjjQQjjNNmjQlQQjjkjjNNNhjkPííííPPPPPPPllPlllljllljllmlljlljmjjjjmjmQjjQjNQjQQQQhNjkj—NjjjNNPííPPPPPPlllmlllljjllllllllljlnjllljjjlmjjjjjlNjjlmmmkjkjNNNNjPPííííPPPPlPllmmjljlllllolnlljjjjjjjjjmjmljjjNhNlllQlmjhjNjjjjNhNPííPPPPPPlllmmlllmyl[jlllllljj—jjljjjm—mljjjjjlplpQmQkNNjjjNjNPPííííPPPPlllmlmlmjlljjllonjljmjojllljjjjjjjjjNjjlljQmkyNNkNNjjjNlPííPPPPPllllmllljlljlll[lnmjjjjljjjjjjjljjjNljhQjlmyyNPhjNjjNNlííííPPPllNlNllmllljjjjj[onjljljmmjj—jjjjjjjjjjjjjPnNmjkNjNNhPPlPííPPPlNmmlNlmllmjljlllllllojjjjjjmj—jjjjjjjjNjjhlmmmmjNNNNhPNPPííííPPNNNNlNmmlmlljjlljjllljjjjlmjmjjjjjjjjjjNjjjjNlkNNjhNjNjjPPPííPPPlQmyNmllmmlmjjllllllljojjjjjjjjjjjj—jojjjhjNNmmmkjNNNhPPPííííPPlQlllmmllljjmlljljlhljjojjljjjmjjjjNjjjjjhhlmmmmmPjmNNjjPPPííPNPPmlNNml[lljmljjljllljjljjyjjjjNjNNnjojNNjjjjmmjmljNjNjlPPííííPPlmNQNmmmlmmmlljllllljPPjjjjjjjjjjjjjjNjjjljjmjjmlmNjhjPPlPííNPPlQlNmmllllmmmjjjjjjlPljjmjmjjmNjjjjjjjNjlhkhljjmmmmNjNjPPlíííNPPlNlNQQNNNNNlyjlhljloljlmmjmjmNjjjjjljjjjjjjllQjmNNNjjNPjlPPííPNPPQNmmNNlllmljjjjhml—mjjmmjjjljjjjjjjjhjjjjljljlkNmNmhNjjlPííííPPPNNmkNmkm—llljlllmojljjjjjjmjNjjjjjjjjNhNNNNlNNNNmjmjjjjPPPííPPPNkNNQNNllmmjmlllhjjmmjmjjjjlmNNNNNNlyyhNNNljNlNNNNkjjPjPPííííPPPkNNNNyllNNljjjjmhhhhpjjjjlljjjjjjjjNjNNNNjjNNmNmmNjjjjPPPPííPPNkkQQNNkkNNNljjjljhhjjjmjjjjjjjjjjjljNjjNNhNNNNNmmmNNNhjjPPííííPPkmkkNkkjNjkjjjjjjlllljmjjj[jjjjojjNjNjNoNNNjkNlmjkjNjNNPPPííPPNQkNNkQNNmNmPPmllplpljjljl[jPjjjjNNjjNNjhjjjkNlkmjPNjNPPPííííPjjjNQQNNNNmNNNNmmjjjl—llljlnlnlljQQjoojNjmhmkhkNmmjNNjjjPPPPííPPkPmNNmQQQNPkkjkkmkjljlkkklllllllllQjjkjjjkjjNNNNkmjNmjNjPPPííííkNNNNNNQNkmNmNjNkkkkjjjjkjllkjllQjlllPjjlljmmNmmmmNNkmjjNPPPPííPkkNNQkNQQNmNNNmmkmmkmmkkkmjjhklnQlllllllllllkNkmNmNjNjjNkjPPííííPQNQQmNmNkkkkNNkkmNmNjjNkkNkjNlNljlljlllllmlmNmmNüNNNNNkNjPPPííPkkNNmQkQkNkQQNNkmkNN[kmkkkNjjjjl[lklllQllmlmmNNjjjNjjNjkjhPííííkQNNQQmNNQNjNNQNkkNmNkNkkNNNhNjN[lllllNllNNlmNkjjjjjjjjkjjPPPííkkQkkNQkkjNkkmjkkNkNNjkjkkNNNNkkkl—kNkNlNNNNjjNjNNNhhjNNNNNPííííPmjmjQmkQkmkNkPNNNjjjjkhkhhhNNNklnlNlNNNNNNNmNjNNNNNNNjhhkPPííkkkjmkNQNjNNmjkkjNmNkjkNhkjhhjNNjNjNlllNkmmNmjjNNNNNjNjNNhNPííííPPPkNNNNmNNNQNjjNhNNNkNNkjjhhNNjhNNkNkkkmNjNNNjNhNNNNjNNhkNPííPPPPNNjNQmNNkNNNNNNNNNNNNNNNkNjNNhjjhNNNjNNjNjNNNNNNNNNNhhNkNííííPPPkNjNjNkkkkkkPNmNkkmmNPNNPNkPNhjjPNNlNNjjjjNjjmjNNNhhNhNkNPííPPPmkQNNNjjPPmmNPPPNPPmmNNNNkkPPPjPjjkjjjjjjmPlNjjNjNjkjhNNmííííPPPPPjjjmPmmmmmPNPPPPmPmPNNPkPPPPPkjkjlPkPPlPmmmjjPkNhhNNkPPPííPPPPPPPNmPPNPPPPNNPmkkPPPPPPPPPkPkkPPPjlmkPPlPPPPmPlNNPjkkPmPííííPPPPjPjPPPPPPPNPPPPPPPPPPPPPPPPPPPPPjPlPPPlPPmPPPPPPPmNPmPPPPííPíPíPíjNNíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip6.csi0000644000175000017500000001000007340322037012655 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíooomlmmoPPPPPPPPPPPPPPmmPmjjPPPPPPPPPPPPPPPPPmmPmPPPPPPPPPPPPPííooonlmmnooPPPPPPPPlPPljljjPjllPlljPjPPPPPPPmPkNNNNkPkkPPPPPPPPPínnnnmmmnnnoPPPPlPPlPnljQjQQjjjPllPljjmmkPkkkmjNjjNkmPkPPNNPPPPíímlmmmlmnnoooPPPlPlllnnlQQlQQjljlQQQjjjkkkkkjjjjjNNNNNkPNNNNNPPPímmlmmlmmnnlnlolllllnnlQQjjQQQjjQlQQQjQQmNNkNNNNjjNNNNjNNNNPNPPíímmmommllmmmoolnolllllQQlQQQQjQQQQQQQQNjQQQQQQQQQkNNNNNNNNNNPPPPímooonlnllmlllllnlllll[llllQQQjQQjQjQNNQmNQNNQQLLNNNLLNNLNNPPPííooooooonlmlmllllllllljlllm—QljjQjjQjNjjmkQmmNjmNLLNNLLLNLLNNPPPííPPPooonlmlml—llllnnQllllmjQljjmjQQjhNQNQNQmjkmQjLNNLLLNLNLNPPííííPPPoPomlllQQlllll—lQmljQQQQjQjQjQ[jQjQjQkjmQkQLkkLNLLLLLPPPPííPPPPoooolllQlllQlQQQQlQllQljQjQjQjQjjQjhQkjQkQmQkLkLLLLLNLPPPííííPPPPoooolQlQlQQllllQlQQljmj[mQjQjQQjQQQjQQQmQmmNNLLNLNNLLPPPííPPPPPooollQlolllloQQllQnQljjlljQQjQQlQjjQjQjyNjNjmLLNNLLNNLPPííííPPPPoollollllljlllllllQjlljjQQQjQjjQjmQQljmmQmkkLjNLNNLNPPPííPPPPPoPollQllQollllllolnQ—ljljjQmjjjjlQjQQQkjmNQmLLLLNLNjNLjjííííPPPPPlPlllllQlllmlQlQlolljljljQjjjjNNQyNNNNjmQmmLkLLNLNNLhNjNííPPPPlPQllQnllQlQlQ—jjlllQlljjljjjQjlQQNNNjNmjmükkNLLLkLNjLNNjNíííPPlPQlllllljjlQlQQjlllQlllljlyljljjjjjkjNjjNmjjmNmmLNLNNLjjNPííPPPlPPllnlll[jlQlllyQQollnoljllj—jjljjjNNNnLLLNjLNLLLLLLLLNNjííííPPllPllnlnllllQQQQ—QQllQjolljjl—jj[jjjjNNlljmNlQNNLNLLNLNNNjPííPPPlllllllnlllljjolNllllQQnmjmljjjjjjjjjNNNNjNlQQjjLLLLLLNNkPííííPPPPPPlllllljljllljNNmQQQlljmjjjjjjmjjNNjNQNQNQLLNLNLLLNjjNNPííPPPPPPl—lQQll—lNlNNNlllllQlnjlljjMjMMMMjjjjNjNMMLmkLLLLLLNjPPííííPPPPllQlQljljllNlloNlNlljjjjjjMjjMjjjMjjjjjjNMMLLLhLNLLLNNhNPííPPPPPPlQlQQlllmNN[jNNllllQj—jjMQjjMjMlMNMNNlpNpQLQLLLLLLLjNPPííííPPPllQlmQQlmjNNjjlNonNljmjojQMjMMMMMjNNNNjNjNjMMLMNLLLMLMjNlPííPPPPPlQQQmllljlNNlNl[lnmjjjjjjjjjMMMMMNNNMNNQMlMMLMLMLLLMNNlííííPPPllQlNlQQQQlNjNjNNNjnjjjljQjjjjjMMjNjjjNjjMMMMMMLLLLLLMPPlPííPPPlNmQlNQmllNjlNllNlNjjjQjjjjjjj—jjNNNNNNNMjMNmmmMjMMMLMMNPPííííPPNlNNlNQmlmQlnjljjjlNljQQjjmjjjjMjMMNjNjjMjMNMMNNNMMMLMNNNPPííPPPlQmyQQQlmmlNjjnllNNNljojjjjjjjjNMMMMMMNMjhNNNMMLmkMMLNMNNPííííPPlQllQQmlllQjmljjNNlNljjojjljjMNMjMjMNMNNjNMMMMNLMLjLLMNjPPPííPNPPmlNQmlQQlNNNNjNjNljjjjjjyjMMjjMNMNjNNNNjMNMMmLNLNLLMNlPPííííPPlmNQQQmQlmQmNlNjNNljjjPPjjjjjjjMMMNjjMMMMNMLNmjMLMMLLMMPPlPííNPPQQlQQQQQllQmNNjjjNjlPljjjjmjjmNMMMjjNMNjNNNNMLMLLNLLLMMPPlíííNPPQNlNQQNQNQNlNNlhlNljljlmjjmjmNjMjMjjNMNMjNjLMQjLLMNLLMMNNPPííPNPQQNmQNQlllQljjjNNNNjmNjjmjjjljjMMMNMjMMMNjljLLlLLLLLLMNNNPííííPPQNNmQNQkQQQQQQlNNmNjNjNjjjjmjNjjjjjjjjMhNNNNlNNLLLNMLNNNPPPííPPPQkNNQNQlQmQjmQNNNNjNmjjjjjjlmNNMMMNMMMMhNMNljNlNNLMMLNNNPPííííPPPkQQQQylQQQQQjjjmhhhhNjjjjlljjjMjjMMLLLNNLjjNLmLMMNNLLNPPPPííPPNkkQQNNkkQNQljQQNNhNNjNmjjjjjMMMMMjMMLjLLLhNLNNNmNLMNMLNjPPííííPPkmkkNkkQQQQjQjNNNNNlNjmjjM[jjjMojjMMLjNoNNNjLNMMNMNMLMNPPPííPPNQkNNkQQNmNQPPQllplpNjjljl[jPjjMjMNMjNLNNLLLkLMMLMNLLLPPPííííPjjjQQQQNNNmNQQNmmjjjNNllljNnlNNlNNMMNNLNjNLmNLLNmLNLLMMLPPPPííPPkPmNNmQQQQQQkjkkQkjlNNNNNlNNNllNLNNjLLLLLLjjNNLMkNLMLMLLPPPííííkNNNQNQQQQmQmNjNkQQQjNjjkNlNNjlLQjlNlPNjlNLLMMMLLLMMLLLLNMPPPííPkkNNQkNQQNmQLLmmkQQkmNkNNmjNMMlnLLLLLLNlLMLLLMLMLMLNMMLLLMPPííííPQNQQmNmQkkkQNLkLLNLNjjNkkNNMMNNNjLLLlLlMLMMmMMMLMMMMMLMLMPPPííPkkNNmQkQkNQQQNNQmQNN[kmkkkNMjjjl[lkLNlQMMMMMLMLMLLLLLLLMMMMííííkQNNQQmQNQNjQNQQkkQmNkNkkNMMhMMM[lllLLNlMMMMMLLLMMNLLLLLLLPPPííkkQkkNQkQjQkkmjkQNkNNjkjkkNNMNkkkLNLNkLLNMMLLLMLMMMLLMLMLLMPííííPmjmjQmQQLLkLQQQQNjjjjkhMNhhNNNNLMNNlMMMMMNMMLLMLLLMLLLLMMPPííkkkjmkNQNQNLmLLLLNmNMjMNMMLLLLLLNLMMNlNLLLMLLLLLLLLLLLMLMLMMPííííPPPkNNNNQQNNQNjLNMMNNkMMMLMMLLLLLMLLNLLNMLMLLLLLLLLMLMLLMMMNPííPPPPNNjNQmNLkLLLLLNLNLLMLMLMMMMMLLLLMMMMLLLLLLLLLLLLLLLLLMNMNííííPPPkNjNjNkkLLLLLNLNLLLLLPLLLNLLLMMMMMNMNMMLLLLLMMLLLMLLLNNMNPííPPPmkQNNNjLLLLLLPPLNLLmmLLMLLMLLMjPjjMMjMLLLLLLLLLLLLLLNMMMMmííííPPPPPjjjmPmmmmLPNPLPLLLLPNNPkPPPPMLLLLLLLPLLMLLLLjPkMMMMNkPPPííPPPPPPPNmPPNPPPPNNPmkkPPPPPPPPPkPkkPPPjlmkPPlPPPPmPlNNPjkkPmPííííPPPPjPjPPPPPPPNPPPPPPPPPPPPPPPPPPPPPjPlPPPlPPmPPPPPPPmNPmPPPPííPíPíPíjNNíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPímímíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip7.csi0000644000175000017500000001000007340322037012656 00000000000000onmmmmmíííííííííííííííííííííííííííííííííííííííííííííííííííííííííoonmnmmoíPíPíPíPPíPíPíPíPíPíPíPíMMMíPMMíPíPíPíPíPíPíPíPíPíPíPíPíooomQQQoPPPPPPPPPPPPPPmmPmjjPPPPMPPPPMMPPPPPPMMMMPPPPPPPPPPPPPííoQQQlmmnollllllllQQQlllljlPjMlPMMjPjPMPPPPPMMMMMMNMPPPPPPPPPPPPíQnQQQmlllnollllllllQnlllQMMQjQPllPljjmmMPMMMMMMMMNMMPPPPNNPPPPííQlmQQQlnnololPPlQllQnllQQlMQMQjlQQQjjjkMkMkMMMMMMNNNNMPNNNPNPPPímmlmQlmQnllnlllllllyQllQQjQQQQjMlQQQjQQMNMMMMMMMMMNNNMNNNNPNPPíímmlolllQllyoolnoQllQQQQQQllQllMQQMMMMMjMQQMQQQMMMMNNNMNNNNPPPPPíQolonlQQQQQQlQlQQQQQQQlllQQQQjQQMQjQMNQmNQMMNQMMMMNNLLNNLNPPPPííooQoQQnQlQmQlQlQQQlQMMlQm—MlMjQjjQMMjjmkQMmNMMMMLNMLLLNLLPNPPPííPPloQollQQQl—llQlQQQQQllmQQQjQmMQMMhMQNQQQQQQQQMMNMLLLNLNPNPPííííPPPlQllllQQQllQlQlllQmljQQQQQQQQjMQMMMMMMMQMMMMMMkLMLLLLPPPPPííPPPPlollQlQQlQQQlQQQQlQlQQlQQjQjQMQMjMMQMMMMQMQMMMMLMLLLNPPPPííííPPllloolllQQlQQlQQlQQQQQQmj[mQQQjQMjQMQQQMMMMMMMMMMMNLNNPPPPPííPPPllonllQlollllQQQllQnQQjQQQQQQjQQPMMQMjQjMMMMMMMLMNLLNPPPPííííPPllllQQQllllQQQlQlQQllQjlljjQQQQMPjMjmQQMMMMMMMMMMNLNNLPPPPííPPPlPllMllQQQlQllQQlQQQQQ—QjQjjQmjjMPlQjQQPkMMMQMMLMMNLNjNPPPííííPPPPllMllllllQQQQQQlQQolljQQljQQQQPPMQyMPPPPPMMMMMMMNLNNLPPPNííPPPPlQQMMMMllQQQlQ—jQlllQQQQQlQPjPPPMMPPPMPPPPMMMMMLMkLNjPPPPNíííPPlPQQlQQlMQjQQQQQjQQQQQQQQPlQQPPPPMPPkPPPPPMPPMMMMLNLNNPPPPPííPPPlQMMMMQMQQlQQQlyQQoPQPPlPPPPPMPPPPPMPPPPPPMPPMMMLLLLLPPPPííííPPQQQlMlMMlQMQQQQQ—QQPPPPPPPPPPPPPPPPPMMMPMPMMMPPPMNLLNLNNPPPííPPPQQQQMMQQMlMlQjQlQPPPPPPPPPmPPPPPPPPMPNPMPPNMMPMPMLLLLLNNPPííííPPPPQllMMMMMMMMlPPjNPPPPPPPPPPPPPPPPMPPPPNPPMMPMMMMNLLLMMMNNPííPPPllPl—lQMMQ—QQlPPQPPPPPPPPPPPPPPPPPPPjMPPMPPMPMMMMLLLLLNMPPííííPPPllQQlMljljllNPQPNPPPPPPPPPPPPPPPPPPjPMMMMPMMLMMMLNLLLMMPNPííPPPPPPlMQQQlllQQQPjPQQPPQPPPPPPPPPPPPPPPMPPPMMMPMMMMLLLLMMMPPííííPPPllMlmQQlQjQNQPPQPnPPPPPPPPPPPPPMPPPPMPMNPPPPMMMMLLLMLMMNPPííPPPPPlMQQmllljPNPQPPQPnPPPPPPPPPPPMPMMPPPPPMMPlMMMMMMLLLMNNPííííPPMMMMlMQQQQMMPPPQPPQQPPPPPPPjjjPPPPMPPPPPMMPPMPPMMMLLLLMPPPPííPPPlNmQlQQmMlQMPMPQPlPjPPPPPQPPPPPPPPMPPPPMMjPPMMPMMMMMLMMNPPííííPPNlNNlNQMlMMlMMPQPPMMPPPQPjPjPjPPPPMNPPPMMMPPMMNMMMMMLMNNNPPííPPPlQmyQQQlMMMMPPQPPPPQPPoPQPPPMMPMPPPPPPPPMPPPNMPMMMMMLNMNNPííííPPlQllQQmlQQQMQQQQPPMPPMPPPPlPPMPPPPPPPPPPMMMPMMPLMMMLLMNMPPPííPNPPmlNQmQQMlNNPPPNMMPPPPjPjPMMPPPMMPPPPPPPPMPMMMLMMMLLMNMPPííííPPlmNQQQmQQmQPMPNPPPPPPQPPPPPPPPPMMMNMjMMPPNMLNMMMMMMLLMMPPlPííNPPQQlQQQQMPMQMMPMjjMjPPPMQPPmMjmNMPMjPNPMjPMMMMLPLLNLLLMMPPlíííNPPQNlNQQPQQQMlQPlPQQPPQjlmMQPMPPPPPPPPPPPPMNMMMMMLLMNLLMMNNPPííPNPQQNmQNPlQMQQMjjMQNNjPPPPPPPPPjPMMMMMPMPPMMMMMMPLLLLLLMNNNPííííPPQNNmQMMPMQQQQQMMQMPjPPPPPPPPPPMjMPMMPPPPMMMMMNMLLLNMLNNNPPPííPPPQkNNMMQMPMQjMMMPMMPPPPPPPPPPPPPMPPPMMPMPMMMMPMMNMMMMLNNNPPííííPPPkQMQMMMMMMMQMjPQPhQMNPMMMlPPMjPMjMMLPMNMMMMMMMMMMMNLLMMPPPííPPNkkQMMMMkQNQljMQNNhNMMMMMMMMMPPMMMMMMLjPMMMMMMMMMMMMNMLNMPPííííPPkmkkMkkMMMMMMjNNPPMMPPMMPPPPMMPMMPMMLjNMNMMMMMMMMMNMLMNPPPííPPNQkNNkMQNmMMPMPMMMMMMMMMMMMMMMMMMMMMMjMMMMMMMMMMMMMNLLLPPPííííPjjjQQQMNMNMNMQMMmMMMMMMMMjMMMMMMMMMMNMLMMMMMMMLMMMNLLMMLPPPPííPPkPmNNMQQQMQMkMMMMMMMMMMMMMMPPMPMLPMjLMMLMMMMMMMMMNLMLMLLPPPííííkNNNQNQMQMmQMMjMMMMMMMMMMMMPMMMPMMMMMMMMMMMLMMMLLMMMLLLLNMPPPííPkkNNQkNQQNMQMMmMMQMMPMPMMMMMMMMMLPMMMMMMMMMMMMLMLMLNMMLLLPPPííííPQNQQmNmQkkkMMMMMPMPNjPMMMMMMMMMMMMMMMMMMMMMMMMMLMMMMMLMLPPPPííPPkNNmQkQMMMMMMNMMMMPMMMMMMkMMjMMMMMMMMMMMMMMMLMLMLLLLLLLPPPPííííPQNNQQMMMQMMMPMMMkMPMMMMMMMMMMMMMMMMMMMMMMMMMLLLMMNLLLLLPPPPPííkPQkkNQMMjMkMMMMMMMMNPMPMMMMMMMMMMMMLNMMMMMMLLMMLMMMLLMLMPPPPííííPmjmjQMMMMLMMMMMMMMjMMMMMMMMMMNMNLMNMMMMMMMNMMLLMLMMMLLLPPPPPííkPPjmkNMMQNLMMLLLMmMMMMMMMMMMLMLNLMMNMMLLLMLLLLLMMLMLLMLMPPPPííííPPPkNNNMMMMMQNjMNMMMMkMMMMMMMLMMMMMLNMLNMLMLLLLLMMLMLMLLPPPPPííPPPPNNjNQmNLkLLMLLNLNMLMLMLMMMMMMMMLMMMMLLLLLLLLLLLLLMLLPPPPPííííPPPkNjNjNkkLLLLMNMMMMMMMMMMMMMLMMMMMMNMNMMMMLLLMMLMMMLPPPPPPPííPPPPPQNNNjLLMMMMMMMMMMMMMMMMMMMMMMMMMMMjMLLMMMLLLLLMPMPPPPPPPííííPPPPPPPPmPPPPMPMMMMMMMPMMMMMMMMMMMLMMMMMLPMMMMMMMMMMMPPPPPPPPííPPPPPPPPPPPPPPPPNNPMMMMPPPPPPPPPPPPPPPPMMMMMMMMMMMPPPPPPPPPPPííííPPPPPPPPPPPPPPNPPPPPPPPPPPPPPPPPPPPPPPPPPPMPPPPPPPPPPPPPPPPPPííPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tip8.csi0000644000175000017500000001000007340322037012657 00000000000000PPPPPPPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííPPPPPPPPíPíPíPíPPíPíPíPíPíPíPíPíOíOíPíOíPíPíPíPíPíPíPíPíPíPíPíPíPPPPPPPPPPPQQQPPPPPPPQQQQQQQPPPPOPPPPOOPPPPPPONNMPPPPPPPPPPPPPííPPPPPPPPRPRRRRRRQQQQQQQQQQQQPQQPOOPOOOPPPPPONNNNNNNPPPPPPPPPPPPíPPPPPPPRRRRRRRRRRQRRQQRQQQQQPPPPPPOOOOOOOONNNONNNNNNNNNPPPPPPPííPPPPPPPRRRRRRRRRRQQQQQQQQQQQPQPPOOOPOOOOOONONNNNNNNNNNNNNPPPPPPíPPPPPPPRRRRRRRRRQRQQRQQQQQQQQQQQOQOOOOOOOONNNNNNNNNNNNNNNNPPPPííPPPPPPRRRRRRRRRRRQRQQQQQQQQQQPQOPPPOOOOOOOOONNNNNNNNNNNNNNPPPPPíPPPPPPRRRRRRRRRRRRQQRRQQPQQQQQQQPOPOOOOOOONNNNNNNNNNNNNNNNPPPPííPPPPQPRRRRRRRRRRQRQRRQQQQQQQQPQPQPOOOOOONNNNNNNNNNNNNNNNNLPPPPPííPPPQRRRRRRRRRRRRRQQQQQQQQQPQQPQQPOOOONNNONNNNNNNNNNNNNMMNPPPPííííPPPRRRRRRRRRRQRRRQRQPQQPPQQPPPPPOOOOMOONNNNNNNNNNNNNMMMLPPPPPííPPPPRRRRRRRRRRRRRQRQQPQPPQPQQPQQPOOOOOOOONNNNNNNNNNNMMMMNPPPPííííPPQRRRRRRRRRRRRRRQPPQQPQQPPPPPPPOPPPOOQONNNNNNNNNNNMMMMNPPPPPííPPPQRRRRRRRRRRRRQRPQQPPQQPQPPPPPPPPPPPPQONONNNNNNNNMNMMMNPPPPííííPRRRRRRRRRRRRRRRRRQQRQPQPPPPPQPPPPPPPPPPONNONNNNNNMNMMMNLPPPPííPPRRRRRRRRRRRRPRRPRRPQPPPPPPPPPPPPPPPPPPPPOOMONNMONMMNMMMNPPPííííPPPRRRRRRRRRRRRRRRRQPPPPPPPPPPPPPPPPPPPPPOPMONOMMMMMMMMMLPPPNííPPPRRQRRRRRRRRRQRQPPPPPPPPPPPPPPPPPPPPPPOPPOMNMOMMMMMMMMMPPPPNíííPPQRRRQQRQQRQPQRQRRPPPPPPPPPPPPPPPPPPPPPPPPONOMMMMMMMLNNPPPPPííPPPQRQRRQRRRQRQRRQPPPPPPPPPPPPPPPPPPPPPPPPPNNNMMMMMMMMMMLPPPPííííPPQRQQQRQQQPQRQQRRPPPPPPPPPPPPPPPPPPPPOOOOOPNMMMMMMMMMMLNNPPPííPPPQQQQRRQRRQQQPRRPPPPPPPPPPPPPPPPPPPPOOPPOOOMOMMMMMMMMMMNNPPííííPPRRQRRQQQQQQPQPRRPPPPPPPPPPPPPPPPPPPPPPPNOPMMMMMMMMMMMMMMNNPííPPPQRQQQQQRQQPQQQRPPPPPPPPPPPPPPPPPPPPPPPOOOMOOMMMMMMLMLLNMPPííííPPRQQQRQRQQQPPPPQPPPPPPPPPPPPPPPPPPPPPPPOOMMNMMMMMMLNLLLMMPNPííPPPQRQRQQRRQQQQPPPPPPPPPPPPPPPPPPPPPPPPOOOOOOMMMMMMMLLLLMMMPPííííPPQQQRQQQRRQPQQQPQPPPPPPPPPPPPPPPPPPPPOOOPOMMMMMMMMLLLMLMMNPPííPPPQRQQQRQQRQQQPQQQPPPPPPPPPPPPPPPPPPPPOOOOMNNMMMMMMMMLLLMNNPííííPPRQQQRQQQQQQPQPPPPPPPPPPPPPPPPPPPPPPOOOOOMMNMMMMMMMLLLLMPPPPííPPPQQQRRQQRQQQQQPPQPQPPPPPPPPPPPPPPPPPPOOMOMMMNMMNMMMMMLMMNPPííííPPRQQQQQQQQQQQQPQPQPQPPPPPPPPPPPPOOOPOOOOMONNNNMMMMMMMLMNNNPPííPPPQQQQRQQQQQQQPPQPQPQPQPPPQPQQPPPOMOPOOOONOLNMMMMMMMMMLNMNNPííííPPQQQQQQQQQQQQPQQQPQPPQPQQQOOMPPPOMOOOOOONNNMMMMMMLLLLLMNMPPPííPPPQQQQQQQQQQQQPQPQPPQQPQPPMOOOOOPOOOMOOMMNNMMMMMMLMMLLLMNMPPííííPPQQQQQQQQQQQQQQQQPQQPPMPOPOOOPOOOOOOOMNMMMMMMMMLLLMLLLMMPPPPííPPPQQQQQQQQQQQQQQQQQQPPPPPOOOOOMOMMOMNMOOMNMMMMMLLLLLLLLLMPPPííííPPQQQRQQQQQQQQQPQPQQPPPPPPOOOOOOOPOMOMPOMMMMLLLLLLLLLLLLLNNPPííPPPQQQQQQQQQQQQQQQQQPPPPPOOOOOMOOOOOOOMOOMMMMMLLLLLLLLLLLLNNPííííPPQQQQQQQQQQQQQPPPPPPPQMOOOOOPMOMMNNONMMMMMMMLLLLLLLLLLLLNPPPííPPPQQQQQQQQQQQQQQQPPPPPQMOOOOOMOMNNNNNMMMMMMMMMLLLLLLLLLNNNPPííííPPPQQQQQQQQQQQQPPPPPMPMOOQOOOMOPNMNNMMOMMMMMLLLLLLLLMLLLMMPPPííPPQQQQQQQQQQQQQQQQPPQMPMOOOOOOONNNNMMNMMMMMMMLLLLLLLLLLLLNMPPííííPQQQQQQQQQQQPPQPQPPPPPPOOOOONNMNNMNMNMMMMMMMMLLLLLLLLLLLMNPPPííPPQQQQQQQQQQQQQQQQPPPPMOOOOOONNNNNMNMMMMMMMMMMLLLLLLLLLLLLPPPííííPQQQQQQQQQQQQQPQPPPPPOOOOOOOONNNMMNNNMMMMMMLMLMLLLLLLLLMLPPPPííPPQQQQQQQQQQPQPQQPQPMPOOOOOOOOMMNNMNNNMNMMMMMLLLLLLLLLLLLLPPPííííPQQQQQQQQPQQQQPPPPPPOOOOOMOMONNNMNNNNNNMMMMLMLLLLLLLLLLLNMPPPííPPPQQQQQQQQQQPPPPPPQQOOMOOOOMMMNNNNNMNNNMMMMMMLLLLLLLLLLLLPPPííííPPQQQQQQQPQPPPPPPOOOOOOOOOOOMNNNNNMNMNMMMMMMMLLLLLLMLLLMLPPPPííPPPQQQQQQPPQPPPPMOOOOOOOOOOONNNNNMMNMNNNMMMMMMLLLMLLLLLLLPPPPííííPPQQQPQQQQPPPPPQOOMOOOOOOMMNNNNNNMNMNNNNMMMMMLLLLLLLLLLLPPPPPííPPPQPQQQPQPPPPPPOOOMOOMOOOOOMMNNNNNNNNMNMMMMMMLLLLMLLLLLMPPPPííííPPQQPQPPPPPPPQPOOOOOOMOOOONNNNNNNNNNNNNNMNMMMMLLLLLLLLLLPPPPPííPPPPQQPPPPPPQPPPOOOOOOMOOOONNNNNMMMMNNNMMMMMMMLLLMLLLLLLMPPPPííííPPPPPPPPPPPPQPPOOMOOOOMOMMNNNNMNNMNNNMNMNMNMMMMLMMLMLLLLPPPPPííPPPPPPPNPPPPPOPMOOOOOOOONNNNNMNNMNMNNNNNNNMNNMMMLLLLLLLLPPPPPííííPPPPPPPPQkkLLOOOOOOOOOONNNNNNNMNNMMMMMNNNNNNMMNMMLMLLLPPPPPPPííPPPPPPPPPQQQQMOOOMMOOOOMOMNNNNNNNNMMMMMNNNNMMMMLLLLMLMPPPPPPPííííPPPPPPPPmPPPPMPMMMMMMMPMMMMMMMMMMMMMMMMNMMNMMNMMMMMMMPPPPPPPPííPPPPPPPPPPPPPPPPNNPMMMMPPPPPPPPPPPPPPPPMMMMMMMMMMMPPPPPPPPPPPííííPPPPPPPPPPPPPPNPPPPPPPPPPPPPPPPPPPPPPPPPPPMPMPPPPPPPPPPPPPPPPííPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíPíííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííííílincity-1.13.1/icons/tover1-off.csi0000644000175000017500000000040007340322037013766 00000000000000ttttttttttttttttttxxxxxxxxxxxxxxtxtxtx4444444tx4NNNNtx4Ntx4N4tx4Ntx4Ntx4Ntx4NtxNtxttppppppppppppppttttttttttttttttlincity-1.13.1/icons/tover1-on.csi0000644000175000017500000000040007340322037013630 00000000000000ttttttttttttttttttxxxxxxxxxxxxxxtxtxtxYYYYYYYtxYNNNNtxYNtxYNYtxYNtxYNtxYNtxYNtxNtxttppppppppppppppttttttttttttttttlincity-1.13.1/icons/tover2-off.csi0000644000175000017500000000040007340322037013767 00000000000000ttttttttttttttttxxxxxxxxxxxxxxxtptpt444Npt44Npt4N4Npt444N4Npt4N4Npt4N4Npt44Npt444Nptptptppppppppppppppptttttttttttttttttlincity-1.13.1/icons/tover2-on.csi0000644000175000017500000000040007340322037013631 00000000000000ttttttttttttttttxxxxxxxxxxxxxxxtptptYYYNptYYNptYNYNptYYYNYNptYNYNptYNYNptYYNptYYYNptptptppppppppppppppptttttttttttttttttlincity-1.13.1/icons/track-button.csi0000644000175000017500000000040007340322037014413 00000000000000SSSSSSSSSSSSSSSS#[O[#O[OK#O#[[K#OOOKOOOOK[OKOKKS[#OK[OOK#O[KKK#[SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS !!!!!!!!!!!!!!!! SSSSSSSSSSSSSSSSSSSOSSSSSSSSSOSS#[KKO[OS[O[[#OK#S[KKKOKKOOOK[OK[SKK#KK#[OOK#[OK#OOS[S#SSOK[OOSKSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/trackdr.csi0000644000175000017500000000040007340322037013430 00000000000000SSSSSSSSSSSSSSSSS[O[#O[OK#O#[[K#SOOKOOOOK[OKOKKSS#OK[OOK#O[KKK#[SS#SSSSSSSSSSSSSS[SKOSSSSSSSSSSSSOO#[SS S#K[KSS!!!!!!!!!S[OK#SS ! SKOSKSS ! SSSSSSSO#OOSS ! SSSSSSS[KKOSS ! SS#OKSS[KSKOS ! SS[OK[SKK#KSS ! SS[OKSSOS[SSS ! SSOSKSSK#K[SS ! SSO#O[lincity-1.13.1/icons/trackld.csi0000644000175000017500000000040007340322037013422 00000000000000SSSSSSSSSSSSSSSS#[O[#O[OK#O#[[K#OOOKOOOOK[OKOKKS[#OK[OOK#O[KKK#[SSSSSSSSSSSSSO[SSSSSSSSSSSSSKOOS SS#[#S!!!!!!!!! SSOKOS ! SSKO[SSSSSSSS ! SS#[#SSSSOSSS ! SSOOSS#[KKOSS ! SS#OKSS[KSKOS ! SS[OK[SKK#KSS ! SS[OKSOOS[SSS ! SSOSKSSK#K[SS ! SSO#O[lincity-1.13.1/icons/trackldr.csi0000644000175000017500000000040007340322037013604 00000000000000SSSSSSSSSSSSSSSS#[O[#O[OK#O#[[K#OOOKOOOOK[OKOKKS[#OK[OOK#O[KKK#[SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS !!!!!!!!!!!!!!!! SSSSSSS ! SSSSSSSSSOSSS ! SSSSSS#[KKOSS ! SS#O[#S[KSKOS ! SS[KO[SKK#KSS ! SS[OKSOOS[SSS ! SSOSKSSK#K[SS ! SSO#O[lincity-1.13.1/icons/tracklr.csi0000644000175000017500000000040007340322037013440 00000000000000SSSSSSSSSSSSSSSS#[O[#O[OK#O#[[K#OOOKOOOOK[OKOKKS[#OK[OOK#O[KKK#[SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS !!!!!!!!!!!!!!!! SSSSSSSSSSSSSSSSSSSOSSSSSSSSSOSS#[KKO[OS[O[[#OK#S[KKKOKKOOOK[OK[SKK#KK#[OOK#[OK#OOS[S#SSOK[OOSKSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/tracklu.csi0000644000175000017500000000040007340322037013443 00000000000000O[#OOSS ! SSKOOS#[O[#SS ! SS#[KSOOOKOSS ! SSOKKS[#OK[SS ! SSKK#SSSSSSSS ! SSSO[SSSSSSSS ! SSKOOS ! SS#[#S!!!!!!!!! SSOKOS ! SSKO[SSSSSSSSSSSSS#[#SSSSOSSSSSSSSOOSS#[KKOSO[S[SO#OKSS[KSK#O##SK#[OKSOKK#K#KOK[OS[#KS[OS[SS[SKS#KOSKSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/tracklud.csi0000644000175000017500000000040007340322037013607 00000000000000OS[O#SS ! SSS#SS#[O[[SS ! SS[[KSOOOK#SS ! SSOKKS[#OK[SS ! SSKK#SSSSSSSS ! SSSO[SSSSSSSS ! SSKOOS ! SS#[#S!!!!!!!!! SSOKOS ! SSKO[SSSSSSSS ! SS#[#SSSSOSSS ! SSOOSS#[KKOSS ! SS#OKSS[KSKOS ! SS[OKSSKK#KSS ! SS[OKSOOS[SSS ! SSOSKSSK#K[SS ! SSO#OSlincity-1.13.1/icons/trackludr.csi0000644000175000017500000000040007340322037013771 00000000000000OS[O#SS ! SSS#SS#[O[[SS ! SS[[KSOOOK#SS ! SSOKKS[#OK[SS ! SSKK#SSSSSSSS ! SSSSSSSSSSSSS ! SSSSSS ! !!!!!!!!!!!!!!!! ! SSSSSSS ! SSSSSSSSSOSSS ! SSSSSS#[KKOSS ! SS#OKSS[KSKOS ! SS[OKSSKK#KSS ! SS[O[SOOS[SSS ! SSOSKSSK#K[SS ! SSO#OSlincity-1.13.1/icons/tracklur.csi0000644000175000017500000000040007340322037013625 00000000000000S#O[OSS ! SSO[#O#[O[#SS ! SS[[K#OOOKOSS ! SSOKKS[#OK[SS ! SSKK#[SSSSSSS ! SSSSSSSSSSSSS ! SSSSSS ! !!!!!!!!!!!!!!!! SSSSSSSSSSSSSSSSSSSOSSSSSSSSSOSS#[KKO[OS[O[[#OK#S[KKKOKKOOOK[OK[SKK#KK#[OOK#[OK#OOS[S#SSOK[OOSKSSSSSSSSSSSSSSSSSlincity-1.13.1/icons/trackud.csi0000644000175000017500000000040007340322037013433 00000000000000S[#OOSS ! SSKOOSS[O[#SS ! SS#[KSSOOKOSS ! SSOKKSS#OK[SS ! SSK[#SSO[SSSS ! SSKSSSSKS#[SS ! SS[S#SS#[O#SS ! SSK#[SSOS[OSS ! SS[SKSS[SKSSS ! SS#[SSSO##OSS ! SSKKSSSS[OSSS ! SS[S#SS[KKOSS ! SS#OKSS[KS[SS ! SS[OKSSKK#KSS ! SS[#KSSOS[SSS ! SSOS[SS#OSSSS ! SS#[OSlincity-1.13.1/icons/trackudr.csi0000644000175000017500000000040007340322037013615 00000000000000S[#OOSS ! SSKO[SS[O[#SS ! SS#[KSSOOKOSS ! SSOKKSS#OK[SS ! SSK[#SSO[SSSS ! SSSSSSSKS#[SS ! SSSSSSS#[O#SS ! SOS[OSS !!!!!!!!S[SKSSS ! SO##OSS ! SSSSSSSS[OSSS ! SSSSSSS[KKOSS ! SS#OKSS[KS[SS ! SS[OKSSKK#KSS ! SS[#KSSOS[SSS ! SSOS[SS#OSSSS ! SS#[OSlincity-1.13.1/icons/trackur.csi0000644000175000017500000000040007340322037013451 00000000000000S[#OOSS ! SSKOO[S[O[#SS ! SS#[KSSOOKOSS ! SSOKKOS#OK[SS ! SSK[##SO[SSSS ! SSSSSSSOS#[SS ! SSSSSSS#[O#SS ! SOS[OSS!!!!!!!!!S[SOSSS SO##OSSSSSSSSSSSSS[OSSSSSSSSSSSSS[KKOSO[S[SO#OK#S[KSK#O##SK#[OK[SKK#K#KOK[OS[#KOSOS[SS[SKS#KOS[OSSSSSSSSSSSSSSSSlincity-1.13.1/icons/unchecked_box.csi0000644000175000017500000000040007340322037014577 00000000000000öööööööööööööööööööööööööööñööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññööûûûûûûûûûûññöñññññññññññññññññññññññññññlincity-1.13.1/icons/university-button.csi0000644000175000017500000000040007340322037015530 00000000000000÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷éééééééééééé÷÷÷÷÷÷÷÷éééé÷÷÷÷÷÷÷÷÷÷÷éééééé÷÷÷÷÷÷÷÷÷éééééééé÷÷÷÷÷÷÷éééééééééé÷÷÷÷÷÷éééééééééé÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷÷lincity-1.13.1/icons/university.csi0000644000175000017500000000440007340322037014223 00000000000000ġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġġ##############################///////////////ġġġ#ííííííííííííííííííícícícícící/íí///////##/íġġ#íQQQQíQQíííííQQQ#ícccQcQcTcQc/íí/QQQQQk/uu7/íġġ#ííQWQQQQíġġġġQQQ#úcQToQQQQQQQ/ùġùQTnnnkk7#/íġġ#íQQWQTQíííġġġQQQ#í##########Q/ùííQnTknnn#u/íġġ#íQQWWWQQííġġġQQQ#úíúíúíúí##Q/ùġíQTnknnnnQ/íġġ#ííWWQWkQQíġġġQQQ#íQcQQQ#ú###Q/ùíínnnknkknn#/íġġ#ííQkkkkQkíġġġ####úcTcTQ#í##Q/ùġùQknkkkknnn/íġġ#íígTkQQkíííġġíúíúíQcQQQ#ú###Q/ùí/Qkkóóóóónn/íġġ#ííQkQkkQííííġQQQQúcQcTcQcQcQc/íġ/kk/nììììnn/íġġ#ííġkkkííííííġQQQ/í/cQcTcTcQcT/íí/k/nnóóóóón/íġġ#ííġġQkííġġ ** ///ġc/c/c/c/c///ġġ//kkkkììììk/íġġ#ííġġġġġġ ** ġoġġoġġoġġoġġoġġġġĝġġġġġġòġòġġíġġ#ííġġġġ ** ġoġġoġġoġġoġġoġġġġġġġġġġġòġòġġġġ#ííġġQQ ** ġoġġoġġgġġgġġġgĝġgġġgġġòġòġòòġġġííġ# ### # éé íígíOggíOgOgígOgííííòġòġòġġġġġ #### # # ééííígíOggíOgOgggOgííííġòġòġġġġġ# ### # # ééé gíOggíOgOgígOgíííí **ġòġġġ## ##### # ééé #ggO#gOO#Oġġ ***ġġġ### #### ## ééé##O##O#######ġ ****ġġ## ** ##### ## ééé ġġííííííġííííí## ****ġí##*ġ* ### # ## ééé ġġííííííġíííííġ ****íġ *ġġ* ##### ## ééééġéġéġéġéġéġéġéġ ****ġí# ġ* #### ## éé######## éé#####é ****íġ *ġ ### # ## é##é##ééééé# ****ġí *ġ ##### ## éé##éé ###### ****íġ ** #### ####éé#éé#      # ****ġí# *ġ* ##### ## éé#é#     # ****íġ#*ġġ* ### # ### éé##      # ****ġí# * ### ### ## # ****íġ# *ġ ######ġġ #  # ****ġí# ****############## ****íġ# * 0################### # #* ****ġí# * 0#########ġ######## # #***íġ# 0#ö#ü#ö##  ######ġ# **#########ġí# 0#üüüüöü#  ####  ## **j#j#j#jj#éíġ# 0#öüüü#ü# ###  # **î*ġ#ġ#új#ééġPVVV##ö#ö#öö# ###  **î*ġ#ġ#ú##éééPVVVVP#### #### # **#j#j#j#j#ééééPVVVPP########## #### ##**#########éééééPVPPPPéééééééééé##### ###ééééééééééééééééPPPPPPéééééééééé###íġ ####ééééééééééééééééġ **ġíííííííííéé##ííġġ####ííííííííííííéíééġ *ġġġíííííííííéíéííġġġġġġéġééííġġíííííííííííííé *V*ġġġíġíġíġíġíġíííġééééééġééíííġġíġíġíġíġíġíġíVVV*PPPPPPPPPPPPġġííġġġġġġéġéíííPPPVVVVVVVVVVVVVġġ*ġPVVPPVPPPPVPġġġíġééééééġéíííPPPPVVVVVVVVVVVVlincity-1.13.1/icons/wallpaper.csi0000644000175000017500000000200007340322037013763 00000000000000################################################################ŻŻŻ############################# ŻŻŻ###########################² ŻŻ##########################²²² ŻŻ##########################°°² ŻŻŻŻŻŻ#####################ݰ°² ŻŻ####################ݰ°°°°²²²² ŻŻ##################ŻŻŻ°°°°°²²² ŻŻ###################ŻŻŻŻŻ°°²²²² ŻŻ######################ŻŻ°°°°²² ŻŻŻ######################ŻŻŻ°°²² ŻŻŻ#####################ŻŻŻ°°²²# ŻŻŻ#####################ŻŻ°°²## Ż######################ŻŻ°°#### Ż##########################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################lincity-1.13.1/icons/water-button.csi0000644000175000017500000000040007340322037014431 00000000000000˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜lincity-1.13.1/icons/water.csi0000644000175000017500000000040007340322037013120 00000000000000U!#!#!#!#!#!#!#U!#!#!YYY#!#!##!Y˜Y˜˜˜˜Y!#!!#˜˜˜˜˜˜#Y##!Y˜˜˜˜˜˜#!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!#˜˜˜˜˜˜Y!##Y#˜˜˜˜˜!#!!#!Y˜˜˜˜Y!Y!##!#!#YYY!#!#!U#!#!#!#!#!#!#!Ulincity-1.13.1/icons/waterd.csi0000644000175000017500000000040007340322040013256 00000000000000U!#!#!#!#!#!#!#U!#!#!YYY#!#!##!Y˜Y˜˜˜˜Y!#!!#˜˜˜˜˜˜#Y##!Y˜˜˜˜˜˜#!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜ÓÓӘ˜˜˜!!˜˜ÓÓÓ˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y#lincity-1.13.1/icons/waterl.csi0000644000175000017500000000040007340322040013266 00000000000000#!#!#!#!#!#!#!#UYYYYYY#!#!#˜˜˜˜˜˜Y!#!˜˜˜˜˜˜˜#Y#˜˜ÔÔÔ˜˜˜#!˜˜˜˜ÔÔԘ˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜ÔÔ˜˜˜˜Y#˜˜ÔÔ˜˜˜˜!˜˜˜˜˜˜˜Y!#˜˜˜˜˜˜!#!˜˜˜˜˜˜Y!Y!#YYYYY!#!#!!#!#!#!#!#!#!#!Ulincity-1.13.1/icons/waterld.csi0000644000175000017500000000040007340322040013432 00000000000000#!#!#!#!#!#!#!#UYYYYYY#!#!#˜˜˜˜˜˜Y!#!˜˜˜˜˜˜˜#Y#˜˜˜˜˜˜˜#!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜ÓÓӘ˜˜Y#˜˜˜ÓÓÓ˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#lincity-1.13.1/icons/waterlr.csi0000644000175000017500000000040007340322040013450 00000000000000#!#!#!#!#!#!#!#!YYYYYYYY˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ÒÒÒ˜˜˜˜˜˜˜˜ÒÒҘ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ÒÒҘ˜˜˜˜˜˜ÒÒÒ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜YYYYYYYY!#!#!#!#!#!#!#!#lincity-1.13.1/icons/waterlrd.csi0000644000175000017500000000040007340322040013614 00000000000000#!#!#!#!#!#!#!#!YYYYYYYY˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ÒÒÒ˜˜˜˜˜˜˜˜ÒÒҘ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ÒÒÒ˜˜˜˜˜˜˜ÒÒҘ˜˜˜˜˜˜˜˜lincity-1.13.1/icons/waterlu.csi0000644000175000017500000000040007340322040013453 00000000000000˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜ÒÒҘ˜˜Y#˜˜˜ÒÒÒ˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y!#˜˜˜˜˜˜!#!˜˜˜˜˜˜Y!Y!#YYYYY!#!#!!#!#!#!#!#!#!#!Ulincity-1.13.1/icons/waterlud.csi0000644000175000017500000000040007340322040013617 00000000000000˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#˜˜˜˜˜˜˜!˜˜˜˜˜˜˜Y#lincity-1.13.1/icons/waterlur.csi0000644000175000017500000000040007340322040013635 00000000000000˜˜˜˜˜˜˜˜˜˜ÔÔԘ˜˜˜˜˜˜ÔÔÔ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ÔÔ˜˜˜˜˜˜˜ÔÔÔÔ˜˜˜˜˜˜˜˜˜YYYYYYYY!#!#!#!#!#!#!#!#lincity-1.13.1/icons/waterlurd.csi0000644000175000017500000000040007340322040014001 00000000000000˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ĠĠĠ˜˜˜˜˜˜˜˜ĠĠĠ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜ĠĠĠ˜˜˜ĠĠ˜˜˜˜ĠĠĠ˜˜ĠĠ˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜˜lincity-1.13.1/icons/waterr.csi0000644000175000017500000000040007340322040013274 00000000000000U!#!#!#!#!#!#!#!!#!#!YYYYY#!Y˜Y˜˜˜˜˜˜!#˜˜˜˜˜˜˜#!Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜ÓÓӘ˜#Y˜˜˜˜ÓÓÓ˜!#˜˜˜˜˜˜˜#Y#˜˜˜˜˜˜˜!#!Y˜˜˜˜˜˜#!#!#YYYYYYU#!#!#!#!#!#!#!#lincity-1.13.1/icons/waterrd.csi0000644000175000017500000000040007340322040013440 00000000000000U!#!#!#!#!#!#!#!!#!#!YYYYY#!Y˜Y˜˜˜˜˜˜!#˜˜˜˜˜˜˜#!Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜ÒÒÒ˜#Y˜˜˜˜˜ÒÒҘ!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜ÒҘ˜˜˜˜#Y˜ÒÒÒ˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜lincity-1.13.1/icons/wateru.csi0000644000175000017500000000040007340322040013277 00000000000000#Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!#˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!#˜˜˜˜˜˜Y!##Y#˜˜˜˜˜!#!!#!Y˜˜˜˜Y!Y!##!#!#YYY!#!#!U#!#!#!#!#!#!#!Ulincity-1.13.1/icons/waterud.csi0000644000175000017500000000040007340322040013443 00000000000000#Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!#˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y##Y˜˜˜˜˜˜!!˜˜˜˜˜˜Y#lincity-1.13.1/icons/waterur.csi0000644000175000017500000000040007340322040013461 00000000000000#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!#˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜ÓÓӘ˜˜˜!˜˜˜ÓÓÓ˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!#˜˜˜˜˜˜˜#Y#˜˜˜˜˜˜˜!#!Y˜˜˜˜˜˜#!#!#YYYYYYU#!#!#!#!#!#!#!#lincity-1.13.1/icons/waterurd.csi0000644000175000017500000000040007340322040013625 00000000000000#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!#˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜ÔÔÔ˜˜˜˜#Y˜˜ÔÔԘ˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜ÔÔÔ˜!˜˜˜˜˜˜ÔÔÔ#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜#Y˜˜˜˜˜˜˜!˜˜˜˜˜˜˜lincity-1.13.1/icons/windmill-button.csi0000644000175000017500000000040007340322040015120 00000000000000@@@@@á@@á@@á@ááááááálincity-1.13.1/icons/windmill1g.csi0000644000175000017500000000200007340322040014035 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêê@@êêêêêêêêûûûġġġġġġġġġġêêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@êêêêêêêêêûûûġġġġġġġġġġê@@@êêê@êêêêêêêêêêûûûġġġġġġġġġġê@@@@@@àêêêêêêêêêêêûûûġġġġġġġġġġêêAAAêàê@êêêêêêêêêêûûûççççççççççêêêêàààê@@êêêêêêêêêûûçççççööççççêêêààáêê@@@êêêêêêêêûçççççööçççççêêààáêêêA@@êêêêêêêêêêêêêêêêêêêêêêààáêêêêêA@êêêêêêêêêêêêêêêêêêêêêààáêêêêêêêAêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê/////////////êêêêêáááèèèèèêêêêêê/////////////êêêêêêèèèèèèèèèêêêê/////////////êêêêêêêêèèèèèèèèêêê/////////////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill1r.csi0000644000175000017500000000200007340322040014050 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêê@@êêêêêêêêûûûġġġġġġġġġġêêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@êêêêêêêêêûûûġġġġġġġġġġê@@@êêê@êêêêêêêêêêûûûġġġġġġġġġġê@@@@@@àêêêêêêêêêêêûûûġġġġġġġġġġêêAAAêàê@êêêêêêêêêêûûûççççççççççêêêêàààê@@êêêêêêêêêûûçççççööççççêêêààáêê@@@êêêêêêêêûçççççööçççççêêààáêêêA@@êêêêêêêêêêêêêêêêêêêêêêààáêêêêêA@êêêêêêêêêêêêêêêêêêêêêààáêêêêêêêAêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOOOOOOOOOOOêêêêêêêêàààááêêêêêêOOOOOOOOOOOOOêêêêêêààààááêêêêêêêOOOOOOOOOOOOOêêêêêàààáááêêêêêêêêOOOOOOOOOOOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill1rg.csi0000644000175000017500000000200007340322040014217 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêê@@êêêêêêêêûûûġġġġġġġġġġêêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@@êêêêêêêêûûûġġġġġġġġġġêêêêêêê@@êêêêêêêêêûûûġġġġġġġġġġê@@@êêê@êêêêêêêêêêûûûġġġġġġġġġġê@@@@@@àêêêêêêêêêêêûûûġġġġġġġġġġêêAAAêàê@êêêêêêêêêêûûûççççççççççêêêêàààê@@êêêêêêêêêûûçççççööççççêêêààáêê@@@êêêêêêêêûçççççööçççççêêààáêêêA@@êêêêêêêêêêêêêêêêêêêêêêààáêêêêêA@êêêêêêêêêêêêêêêêêêêêêààáêêêêêêêAêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill1w.csi0000644000175000017500000000200007340322041014056 00000000000000MMMMMMMMMMMMJMMMJMMMMM    MMMJ MM MMMMMMM MMMMM M  MMMJMJMMM MMM MM MMMMMMMMJJúôïMM  MMMJMMMMMúôïMMMMMMMM úôï MM M o  "úôïMMJMM oo   úôïMJJ M o ooo . úôï/J JMMM oooMooôúúúúúú ïĉïïïôúúú  oooooMôôôôôôï#ĉĉĉ,ïïïôôôMoMooooooo  /ïï,,MMMMMM ooMooooo , #ïôï,MMJ ooooooo  ,,ôôï,/ MMJ oooooo  ,ôôï,/ MJMJMoooooo  /ôôï,/ JMJMMooooo ôôô/,/oooMM oooo /////,/ooooMMM ooooo, ///////ooooMM M oooooooo ,/////ooooo MMMoooooooo /,//Joooo MMMoooo //JJoooMMMMMoooooo /JJJMoooMMMM ooooo o /JJJJMooMMMM ooooo oo /JJJJJMMMJM oooo o JJJJJJM MJJJMo oo JJJJJ /JJJJMMMM oo oo oJJJJ/JJMM ooo oo ooM JJJJJMMMMMM ooo o /JJ JJJJMMMMMMoo oo / MMJJMMMMMMMM oo  MMlincity-1.13.1/icons/windmill2g.csi0000644000175000017500000000200007340322041014037 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@êêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@@@êêêêêêêêêêêêêûûûġġġġġġġġġġêê@@@@êêê@@@@Aêêêêûûûġġġġġġġġġġêêê@@@êê@@@@AêêêêêûûûġġġġġġġġġġêêêêAAê@@@@Aêêêêêêûûûġġġġġġġġġġêêêêêêêàêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûççççççççççêêêêà@@@êêêêêêêêêêêûûçççççööççççêêêàà@@Aêêêêêêêêêêêûçççççööçççççêêààà@@AêêêêêêêêêêêêêêêêêêêêêêêêêààáêAAêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê/////////////êêêêêáááèèèèèêêêêêê/////////////êêêêêêèèèèèèèèèêêêê/////////////êêêêêêêêèèèèèèèèêêê/////////////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill2r.csi0000644000175000017500000000200007340322041014052 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@êêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@@@êêêêêêêêêêêêêûûûġġġġġġġġġġêê@@@@êêê@@@@Aêêêêûûûġġġġġġġġġġêêê@@@êê@@@@AêêêêêûûûġġġġġġġġġġêêêêAAê@@@@Aêêêêêêûûûġġġġġġġġġġêêêêêêêàêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûççççççççççêêêêà@@@êêêêêêêêêêêûûçççççööççççêêêàà@@Aêêêêêêêêêêêûçççççööçççççêêààà@@AêêêêêêêêêêêêêêêêêêêêêêêêêààáêAAêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOOOOOOOOOOOêêêêêêêêàààááêêêêêêOOOOOOOOOOOOOêêêêêêààààááêêêêêêêOOOOOOOOOOOOOêêêêêàààáááêêêêêêêêOOOOOOOOOOOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill2rg.csi0000644000175000017500000000200007340322041014221 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@êêêêêêêêêêêêêêêûûûġġġġġġġġġġêêê@@@êêêêêêêêêêêêêûûûġġġġġġġġġġêê@@@@êêê@@@@Aêêêêûûûġġġġġġġġġġêêê@@@êê@@@@AêêêêêûûûġġġġġġġġġġêêêêAAê@@@@Aêêêêêêûûûġġġġġġġġġġêêêêêêêàêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûççççççççççêêêêà@@@êêêêêêêêêêêûûçççççööççççêêêàà@@Aêêêêêêêêêêêûçççççööçççççêêààà@@AêêêêêêêêêêêêêêêêêêêêêêêêêààáêAAêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill2w.csi0000644000175000017500000000200007340322041014057 00000000000000MMMMMMMMMMMMJMMMJMMMMM    MMMJ MM MMMMMMM MMMMM M  MMMJMJMMM MMM MM MMMMMMMMJJJJJMM  MMMJMMMMMMMMMJJô÷÷MMMMMMMôúúM JJ÷ô÷M M oúúúúM" ô÷ú÷JMM oo úúôô ÷ú÷JJ M o ooo .úúúôú÷J JMMM oooMooo ôïô  oooooMoo #ïĉĉ,JJJMMMMoMooooooo  ôôï,,úúôMMMMMM ooMooooo ôïï,,ôúúúMM ooooooo  ôôï ,,/ ïôôúM oooooo  ôôï,,,/ MïôMMoooooo  ôôï,,,/ JMJMMooooo /,,,/,/oooMM oooo ///,/,/ooooMMM ooooo, ///////ooooMM M oooooooo ,/////ooooo MMMoooooooo /,//Joooo MMMoooo //JJoJJMMMMMoooooo /JJJMJJoMMMM ooooo o /JJJJMJJoMMMM ooooo oo /JJJJJJMMMM oooo o /JJJJJJM MMMo oo JJJJJ /MMMMMM oo oo oJJJJ/JJJJMM ooo oo ooM JJJJJMMJJMMM ooo oo o JJJJJMMMMMMoo oo  JJMMJJMMMMMMMM oo  JJMlincity-1.13.1/icons/windmill3g.csi0000644000175000017500000000200007340322041014040 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêûûûġġġġġġġġġġêêêêê@@à@@@@êêêêêêêûûûġġġġġġġġġġêêê@@@àêê@@@@@êêêêêûûûççççççççççêê@@AààêêêA@@@AêêêêûûçççççööççççêêAAàáêêêêêêêêêêêêêûçççççööçççççêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê/////////////êêêêêáááèèèèèêêêêêê/////////////êêêêêêèèèèèèèèèêêêê/////////////êêêêêêêêèèèèèèèèêêê/////////////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill3r.csi0000644000175000017500000000200007340322041014053 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêûûûġġġġġġġġġġêêêêê@@à@@@@êêêêêêêûûûġġġġġġġġġġêêê@@@àêê@@@@@êêêêêûûûççççççççççêê@@AààêêêA@@@AêêêêûûçççççööççççêêAAàáêêêêêêêêêêêêêûçççççööçççççêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOOOOOOOOOOOêêêêêêêêàààááêêêêêêOOOOOOOOOOOOOêêêêêêààààááêêêêêêêOOOOOOOOOOOOOêêêêêàààáááêêêêêêêêOOOOOOOOOOOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill3rg.csi0000644000175000017500000000200007340322041014222 00000000000000êêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@êêêêêêêêêêêûûûġġġġġġġġġġêêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêê@@@êêêêêêêêêêûûûġġġġġġġġġġêêêêêê@êêêêêêêêêêêûûûġġġġġġġġġġêêêêê@@à@@@@êêêêêêêûûûġġġġġġġġġġêêê@@@àêê@@@@@êêêêêûûûççççççççççêê@@AààêêêA@@@AêêêêûûçççççööççççêêAAàáêêêêêêêêêêêêêûçççççööçççççêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêêààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêêêêêêêêêêêêêêêêêêêêêêàààáêêêêêêOOOO_____OOOOêêêêêêêêàààááêêêêêêOOOO_____OOOOêêêêêêààààááêêêêêêêOOOO_____OOOOêêêêêàààáááêêêêêêêêOOOO_____OOOOêêêêààààááêêêêêêêêêêêêêêêêêêêêêêêêêêààááááèêêêêêêêêêêêêêêêêêêêêêêêêêàááááèèèêêêêêêê////?????////êêêêêáááèèèèèêêêêêê////?????////êêêêêêèèèèèèèèèêêêê////?????////êêêêêêêêèèèèèèèèêêê////?????////êêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêêêêêêêêêêêêêèèèèèèèèêêêêêêêêêêêêêêlincity-1.13.1/icons/windmill3w.csi0000644000175000017500000000200007340322041014060 00000000000000MMMMMMMMMMMMJMMMJMMMMM    MMMJ MM MMMMMMM MMMMM M  MMMJMJMMM MMM MM MMMMMMôúöïJJJJMM  MMMJôúôïMMMMMMMMôúôï MM M o  úô MMúMM oo  úô MôúúJ M o ooo . úôïúúúôôJMMM oooMooo ïĉôïMMMMM  oooooMooôúúúúúĉĉĉ,MMMMMMMoMoooooooôúúúôô,,ôôMMMMMM ooMoooooôôô #,,,ôôMMJ ooooooo  ,,,,,,ôô MMJ oooooo  ,,,,,/ôô MJMJMoooooo  /,,,,/ôôJMJMMooooo ////,/ôôMM oooo /////,/oôôMMM ooooo, ///////ooooMM M oooooooo ,/////ooooo MMMoooooooo /,//Joooo MMMoooo //JJJJoooMMMMMoooooo /JJJMJoooMMMM ooooo o /JJJJJJooMMMM ooooo oo /JJJJJJMMMM oooo o JJJJJJM MJMo oo JJJJJ /MJJJJMMM oo o /JJJJJJ/JJJJJM ooo o /JJJJJJJJMMMMMM ooo o o  JJJJMMMMMMoo oo  MJJJMMMMMMMM oo  MMJJlincity-1.13.1/messages/0000777000175000017500000000000010073426331012063 500000000000000lincity-1.13.1/messages/blacksmithup.mes0000644000175000017500000000025407340322041015170 00000000000000Blacksmiths You have reached the tech level which enables you to build blacksmiths. Blacksmiths use jobs and steel to make goods. See the help screen for more information. lincity-1.13.1/messages/coalmineup.mes0000644000175000017500000000023507340322041014635 00000000000000Coal mine You have reached the tech level which enables you to dig deep coal mines. See the help screen for more information on coal mines and coal surveys. lincity-1.13.1/messages/coalpowerup.mes0000644000175000017500000000023207340322041015036 00000000000000Coal fired power stations You have reached the tech level which enables you to build coal fired power stations. See the help screen for more information. lincity-1.13.1/messages/cricketup.mes0000644000175000017500000000033707340322041014475 00000000000000Invention - Cricket Your people have invented cricket. Cricket pitches use a few jobs and goods and make people in the surrounding areas (about 10 units in each direction) happier. See the help screen for more information. lincity-1.13.1/messages/didcoalsurvey.mes0000644000175000017500000000011507340322041015353 00000000000000Coal Survey Complete Another player has conducted a coal survey on this map. lincity-1.13.1/messages/error.mes0000644000175000017500000000012707340322041013632 00000000000000Can't find the required message page. The wanted file name has been written to stderr. lincity-1.13.1/messages/fire.mes0000644000175000017500000000006107340322041013423 00000000000000A Fire has started You better go and look for it lincity-1.13.1/messages/firestationup.mes0000644000175000017500000000046007340322041015375 00000000000000Fire Stations You have reached the tech level which enables you to build fire stations. Fire stations prevent most fires from starting. They cover an area slightly smaller than the window area. If you havn't had any fires yet, you might not think you need them. See the help screen for more information. lincity-1.13.1/messages/healthup.mes0000644000175000017500000000034507340322041014315 00000000000000Health centres You have reached the tech level which enables you to build health centres. Heath centres reduce the number of people killed by pollution and increase overall productivity. See the help screen for more information. lincity-1.13.1/messages/hvindustryup.mes0000644000175000017500000000026107340322041015264 00000000000000Heavy industry You have reached the tech level which enables you to build heavy industry (steel works). Heavy industry produces steel. See the help screen for more information. lincity-1.13.1/messages/import-exportup.mes0000644000175000017500000000017207340322041015677 00000000000000You can now import and export coal, goods, ore and steel. Read the help pages on these areas to find out how to use them. lincity-1.13.1/messages/launch-evac.mes0000644000175000017500000000021407340322041014664 00000000000000EVACUATION LAUNCH GOOD You have evacuated 1000 people. You might want to reduce the size of your economy to reflect the reduced population. lincity-1.13.1/messages/launch-fail.mes0000644000175000017500000000026107340322041014663 00000000000000LAUNCH FAILURE Your rocket crashed shortly after launch. People no longer trust the technology for evacuation. You must launch five more unmanned rockets to restore confidence. lincity-1.13.1/messages/launch-gone-mail.mes0000644000175000017500000000043307340322041015621 00000000000000Total Evacuation Complete Well done you have evacuated all your people. There is a LinCity Hall-of-Fame that you can automatically send mail to. This hall of fame will only be in operation for a short time, just to see how it goes. This means that you might not get the option again.lincity-1.13.1/messages/launch-gone.mes0000644000175000017500000000011107340322041014672 00000000000000Total Evacuation Complete. Well done you have evacuated all your people. lincity-1.13.1/messages/launch-good.mes0000644000175000017500000000003707340322041014701 00000000000000ROCKET LAUNCH GOOD Doing well. lincity-1.13.1/messages/ltindustryup.mes0000644000175000017500000000024307340322041015266 00000000000000Light industry You have reached the tech level which enables you to build light industry. Light industry produces goods. See the help screen for more information. lincity-1.13.1/messages/millup.mes0000644000175000017500000000030007340322041013774 00000000000000Mills You have reached the tech level which enables you to build mills. Mills use jobs and food to make goods. Watch out, they can use a lot of food! See the help screen for more information. lincity-1.13.1/messages/mod_wind_up.mes0000644000175000017500000000023107340322041015001 00000000000000Modern windmills You have reached the tech level which enables you to build modern, more efficient, windmills. See the help screen for more information. lincity-1.13.1/messages/mousetype.mes0000644000175000017500000000123107340322041014530 00000000000000 LinCity needs to know what sort of mouse you have. Select a number and press return 0 Microsoft 1 MouseSystems 2 MM series 3 Logitech 4 Busmouse 5 PS2 6 Logiman If your mouse is not included here, take a guess, If that fails mail ijp@floot.demon.co.uk and I'll see what I can do. We may have to wait for a new SVGAlib or even GGI. Once you have selected a mouse you will not be asked again, ever. If you make a mistake or change the type of mouse you use delete the file .lincityrc in your home directory. rm ~/.lincityrc then start the game as normal. What sort of mouse have you got? lincity-1.13.1/messages/no-credit-parkland.mes0000644000175000017500000000016107340322041016155 00000000000000NO CREDIT AVAILABLE You have budget deficit. The legislative council will no allow you to build parks on credit. lincity-1.13.1/messages/no-credit-recycle.mes0000644000175000017500000000017507340322041016014 00000000000000NO CREDIT AVAILABLE You have budget deficit. The legislative council will no allow you to build recycling centres on credit. lincity-1.13.1/messages/no-credit-rocket.mes0000644000175000017500000000017607340322041015656 00000000000000NO CREDIT AVAILABLE You have budget deficit. The legislative council will no allow you to build rocket launch pads on credit. lincity-1.13.1/messages/no-credit-solar-power.mes0000644000175000017500000000020007340322041016625 00000000000000NO CREDIT AVAILABLE You have budget deficit. The legislative council will no allow you to build solar power stations on credit. lincity-1.13.1/messages/no-credit-university.mes0000644000175000017500000000017007340322041016602 00000000000000NO CREDIT AVAILABLE You have budget deficit. The legislative council will no allow you to build universities on credit. lincity-1.13.1/messages/nobull-tip.mes0000644000175000017500000000005307340322041014564 00000000000000Not Allowed Sorry you can't bulldoze a tip.lincity-1.13.1/messages/not_enough_tech.mes0000644000175000017500000000013307340322041015646 00000000000000Not invented yet. You must increase your technology level before you can select this area. lincity-1.13.1/messages/oremineup.mes0000644000175000017500000000020007340322041014474 00000000000000Ore mine You have reached the tech level which enables you to dig ore from ore mines. See the help screen for more information. lincity-1.13.1/messages/parkup.mes0000644000175000017500000000022607340322041014003 00000000000000Parks You have reached the tech level which enables you to build parks. Parks are used to absorb pollution. See the help screen for more information. lincity-1.13.1/messages/potteryup.mes0000644000175000017500000000030607340322041014553 00000000000000Potteries You have reached the tech level which enables you to build potteries. Potteries use jobs and ore to make goods. ( You need ore mines to get ore ) See the help screen for more information. lincity-1.13.1/messages/railwayup.mes0000644000175000017500000000017007340322041014514 00000000000000Railways You have reached the tech level which enables you to build railways. See the help screen for more information. lincity-1.13.1/messages/recycleup.mes0000644000175000017500000000027007340322041014473 00000000000000Recycling centres You have reached the tech level which enables you to recycling centres. Recycling centres recycle used goods back into ore. See the help screen for more information. lincity-1.13.1/messages/riverup.mes0000644000175000017500000000024007340322041014171 00000000000000Rivers You have reached the tech level which enables you to build rivers. I don't know why you would want to do this! See the help screen for more information. lincity-1.13.1/messages/roadup.mes0000644000175000017500000000016207340322041013772 00000000000000Roads You have reached the tech level which enables you to build roads. See the help screen for more information. lincity-1.13.1/messages/rocketup.mes0000644000175000017500000000037407340322041014341 00000000000000Rocket launch pad You have reached the tech level which enables you to build rocket launch pads. Rockets enable you to evacuate your population and is a way to 'win' the game. It is very important that you... See the help screen for more information. lincity-1.13.1/messages/schoolup.mes0000644000175000017500000000025107340322042014334 00000000000000Schools You have reached the tech level which enables you to build schools. Schools use jobs and goods to increase tech level. See the help screen for more information. lincity-1.13.1/messages/shfire-oc.mes0000644000175000017500000000014207340322042014356 00000000000000A fire has broken out at a shanty town. The fire is OUT OF CONTROL and may spread to other areas. lincity-1.13.1/messages/shfire-uc.mes0000644000175000017500000000014407340322042014366 00000000000000A fire has broken out at a shanty town. It is in a fire cover area and APPEARS to be under control. lincity-1.13.1/messages/solarpowerup.mes0000644000175000017500000000022007340322042015236 00000000000000Solar power stations You have reached the tech level which enables you to build solar power stations. See the help screen for more information. lincity-1.13.1/messages/sustain.mes0000644000175000017500000000030107340322042014162 00000000000000LinCity has determined that you have a sustainable economy. This is only experimental at this time, but if you want to mail me the ~/.Lincity/results file, I might put you in the Hall of Fame. lincity-1.13.1/messages/too-old.mes0000644000175000017500000000010207340322042014050 00000000000000Sorry, the version of LinCity used to save this scene is too old. lincity-1.13.1/messages/universityup.mes0000644000175000017500000000027107340322042015270 00000000000000University You have reached the tech level which enables you to build universities. Universities produces Phds, which produce more technology. See the help screen for more information. lincity-1.13.1/messages/windmillup.mes0000644000175000017500000000013407340322042014664 00000000000000INVENTION - Windmills You have reached the tech level which enables you to build windmills. lincity-1.13.1/messages/wrong-mpsize.mes0000644000175000017500000000030207340322042015136 00000000000000Wrong structure size detected The load will probably cause a seg fault. Don't worry, I'm working on it. If you could mail ijp@floot.demon.co.uk with the two numbers below, I'd be very greatful. lincity-1.13.1/old.Makefiles/0000777000175000017500000000000010073426331012731 500000000000000lincity-1.13.1/old.Makefiles/Imakefile0000644000175000017500000000121607340322042014453 00000000000000# This is the Imakefile for LinCity. # # DO NOT run imake on this file - it will not work. # ================================================= # It needs to be called from the top level Makefile # where variables are set. Use - make xlincity LOCAL_LIBRARIES = $(XLIB) DEPLIBS = $(DEPXLIB) SYS_LIBRARIES = -lm SRCS = main.cxx mouse.cxx screen.cxx mps.cxx typeinit.cxx\ engine.cxx transport.cxx market.cxx help.cxx lcx11.cxx OBJS = xmain.o xmouse.o xscreen.o xmps.o xtypeinit.o\ xengine.o xtransport.o xmarket.o xhelp.o lcx11.o ComplexProgramTarget(xlincity) lincity-1.13.1/old.Makefiles/Lincity.mak0000744000175000017500000004341107340322043014754 00000000000000# Microsoft Developer Studio Generated NMAKE File, Format Version 40001 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Application" 0x0101 !IF "$(CFG)" == "" CFG=lincity - Win32 Debug !MESSAGE No configuration specified. Defaulting to lincity - Win32 Debug. !ENDIF !IF "$(CFG)" != "lincity - Win32 Release" && "$(CFG)" !=\ "lincity - Win32 Debug" !MESSAGE Invalid configuration "$(CFG)" specified. !MESSAGE You can specify a configuration when running NMAKE on this makefile !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "Lincity.mak" CFG="lincity - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "lincity - Win32 Release" (based on "Win32 (x86) Application") !MESSAGE "lincity - Win32 Debug" (based on "Win32 (x86) Application") !MESSAGE !ERROR An invalid configuration is specified. !ENDIF !IF "$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF ################################################################################ # Begin Project # PROP Target_Last_Scanned "lincity - Win32 Debug" MTL=mktyplib.exe CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "lincity - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" OUTDIR=.\Release INTDIR=.\Release ALL : "$(OUTDIR)\Lincity.exe" "$(OUTDIR)\Lincity.bsc" CLEAN : -@erase ".\Release\Lincity.bsc" -@erase ".\Release\Help.sbr" -@erase ".\Release\Main.sbr" -@erase ".\Release\Mps.sbr" -@erase ".\Release\Market.sbr" -@erase ".\Release\Screen.sbr" -@erase ".\Release\transport.sbr" -@erase ".\Release\Typeinit.sbr" -@erase ".\Release\Lcwin32.sbr" -@erase ".\Release\Mouse.sbr" -@erase ".\Release\winmain.sbr" -@erase ".\Release\Engine.sbr" -@erase ".\Release\Lincity.exe" -@erase ".\Release\Mouse.obj" -@erase ".\Release\winmain.obj" -@erase ".\Release\Engine.obj" -@erase ".\Release\Help.obj" -@erase ".\Release\Main.obj" -@erase ".\Release\Mps.obj" -@erase ".\Release\Market.obj" -@erase ".\Release\Screen.obj" -@erase ".\Release\transport.obj" -@erase ".\Release\Typeinit.obj" -@erase ".\Release\Lcwin32.obj" -@erase ".\Release\lincity.res" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FR /YX /c CPP_PROJ=/nologo /ML /W3 /GX /O2 /Ob2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS"\ /FR"$(INTDIR)/" /Fp"$(INTDIR)/Lincity.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\Release/ CPP_SBRS=.\Release/ # ADD BASE MTL /nologo /D "NDEBUG" /win32 # ADD MTL /nologo /D "NDEBUG" /win32 MTL_PROJ=/nologo /D "NDEBUG" /win32 # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" RSC_PROJ=/l 0x409 /fo"$(INTDIR)/lincity.res" /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/Lincity.bsc" BSC32_SBRS= \ "$(INTDIR)/Help.sbr" \ "$(INTDIR)/Main.sbr" \ "$(INTDIR)/Mps.sbr" \ "$(INTDIR)/Market.sbr" \ "$(INTDIR)/Screen.sbr" \ "$(INTDIR)/transport.sbr" \ "$(INTDIR)/Typeinit.sbr" \ "$(INTDIR)/Lcwin32.sbr" \ "$(INTDIR)/Mouse.sbr" \ "$(INTDIR)/winmain.sbr" \ "$(INTDIR)/Engine.sbr" "$(OUTDIR)\Lincity.bsc" : "$(OUTDIR)" $(BSC32_SBRS) $(BSC32) @<< $(BSC32_FLAGS) $(BSC32_SBRS) << LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib /nologo /subsystem:windows /profile /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib /nologo /subsystem:windows /profile /machine:I386\ /out:"$(OUTDIR)/Lincity.exe" LINK32_OBJS= \ "$(INTDIR)/Mouse.obj" \ "$(INTDIR)/winmain.obj" \ "$(INTDIR)/Engine.obj" \ "$(INTDIR)/Help.obj" \ "$(INTDIR)/Main.obj" \ "$(INTDIR)/Mps.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Screen.obj" \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Typeinit.obj" \ "$(INTDIR)/Lcwin32.obj" \ "$(INTDIR)/lincity.res" "$(OUTDIR)\Lincity.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ELSEIF "$(CFG)" == "lincity - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" OUTDIR=.\Debug INTDIR=.\Debug ALL : "$(OUTDIR)\Lincity.exe" "$(OUTDIR)\Lincity.bsc" CLEAN : -@erase ".\Debug\vc40.pdb" -@erase ".\Debug\vc40.idb" -@erase ".\Debug\Lincity.bsc" -@erase ".\Debug\Screen.sbr" -@erase ".\Debug\Help.sbr" -@erase ".\Debug\Typeinit.sbr" -@erase ".\Debug\Mps.sbr" -@erase ".\Debug\winmain.sbr" -@erase ".\Debug\Engine.sbr" -@erase ".\Debug\Mouse.sbr" -@erase ".\Debug\Main.sbr" -@erase ".\Debug\Lcwin32.sbr" -@erase ".\Debug\transport.sbr" -@erase ".\Debug\Market.sbr" -@erase ".\Debug\Lincity.exe" -@erase ".\Debug\Mouse.obj" -@erase ".\Debug\Main.obj" -@erase ".\Debug\Lcwin32.obj" -@erase ".\Debug\transport.obj" -@erase ".\Debug\Market.obj" -@erase ".\Debug\Screen.obj" -@erase ".\Debug\Help.obj" -@erase ".\Debug\Typeinit.obj" -@erase ".\Debug\Mps.obj" -@erase ".\Debug\winmain.obj" -@erase ".\Debug\Engine.obj" -@erase ".\Debug\lincity.res" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /FR /YX /c CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS"\ /FR"$(INTDIR)/" /Fp"$(INTDIR)/Lincity.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/"\ /c CPP_OBJS=.\Debug/ CPP_SBRS=.\Debug/ # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /win32 MTL_PROJ=/nologo /D "_DEBUG" /win32 # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" RSC_PROJ=/l 0x409 /fo"$(INTDIR)/lincity.res" /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/Lincity.bsc" BSC32_SBRS= \ "$(INTDIR)/Screen.sbr" \ "$(INTDIR)/Help.sbr" \ "$(INTDIR)/Typeinit.sbr" \ "$(INTDIR)/Mps.sbr" \ "$(INTDIR)/winmain.sbr" \ "$(INTDIR)/Engine.sbr" \ "$(INTDIR)/Mouse.sbr" \ "$(INTDIR)/Main.sbr" \ "$(INTDIR)/Lcwin32.sbr" \ "$(INTDIR)/transport.sbr" \ "$(INTDIR)/Market.sbr" "$(OUTDIR)\Lincity.bsc" : "$(OUTDIR)" $(BSC32_SBRS) $(BSC32) @<< $(BSC32_FLAGS) $(BSC32_SBRS) << LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib /nologo /subsystem:windows /profile /debug /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib /nologo /subsystem:windows /profile /debug\ /machine:I386 /out:"$(OUTDIR)/Lincity.exe" LINK32_OBJS= \ "$(INTDIR)/Mouse.obj" \ "$(INTDIR)/Main.obj" \ "$(INTDIR)/Lcwin32.obj" \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Screen.obj" \ "$(INTDIR)/Help.obj" \ "$(INTDIR)/Typeinit.obj" \ "$(INTDIR)/Mps.obj" \ "$(INTDIR)/winmain.obj" \ "$(INTDIR)/Engine.obj" \ "$(INTDIR)/lincity.res" "$(OUTDIR)\Lincity.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ENDIF .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< ################################################################################ # Begin Target # Name "lincity - Win32 Release" # Name "lincity - Win32 Debug" !IF "$(CFG)" == "lincity - Win32 Release" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" !ENDIF ################################################################################ # Begin Source File SOURCE=.\Help.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_HELP_=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Help.h"\ "$(INTDIR)\Help.obj" : $(SOURCE) $(DEP_CPP_HELP_) "$(INTDIR)" "$(INTDIR)\Help.sbr" : $(SOURCE) $(DEP_CPP_HELP_) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_HELP_=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Help.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Help.obj" : $(SOURCE) $(DEP_CPP_HELP_) "$(INTDIR)" "$(INTDIR)\Help.sbr" : $(SOURCE) $(DEP_CPP_HELP_) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Main.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MAIN_=\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Main.h"\ "$(INTDIR)\Main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" "$(INTDIR)\Main.sbr" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MAIN_=\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Main.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" "$(INTDIR)\Main.sbr" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Market.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MARKE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Market.h"\ "$(INTDIR)\Market.obj" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" "$(INTDIR)\Market.sbr" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MARKE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Market.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Market.obj" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" "$(INTDIR)\Market.sbr" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Mouse.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MOUSE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Mouse.h"\ "$(INTDIR)\Mouse.obj" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" "$(INTDIR)\Mouse.sbr" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MOUSE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Mouse.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Mouse.obj" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" "$(INTDIR)\Mouse.sbr" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Mps.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MPS_C=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Mps.h"\ "$(INTDIR)\Mps.obj" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" "$(INTDIR)\Mps.sbr" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MPS_C=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Mps.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Mps.obj" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" "$(INTDIR)\Mps.sbr" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Screen.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SCREE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Screen.h"\ "$(INTDIR)\Screen.obj" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" "$(INTDIR)\Screen.sbr" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SCREE=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Screen.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Screen.obj" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" "$(INTDIR)\Screen.sbr" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\transport.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_TRANS=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\transport.h"\ "$(INTDIR)\transport.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" "$(INTDIR)\transport.sbr" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_TRANS=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\transport.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\transport.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" "$(INTDIR)\transport.sbr" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Typeinit.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_TYPEI=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Typeinit.h"\ "$(INTDIR)\Typeinit.obj" : $(SOURCE) $(DEP_CPP_TYPEI) "$(INTDIR)" "$(INTDIR)\Typeinit.sbr" : $(SOURCE) $(DEP_CPP_TYPEI) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_TYPEI=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Typeinit.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Typeinit.obj" : $(SOURCE) $(DEP_CPP_TYPEI) "$(INTDIR)" "$(INTDIR)\Typeinit.sbr" : $(SOURCE) $(DEP_CPP_TYPEI) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Engine.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_ENGIN=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Engine.h"\ "$(INTDIR)\Engine.obj" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" "$(INTDIR)\Engine.sbr" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_ENGIN=\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lin-city.h"\ ".\Engine.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Engine.obj" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" "$(INTDIR)\Engine.sbr" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lcwin32.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LCWIN=\ ".\Lin-city.h"\ ".\Common.h"\ ".\Lctypes.h"\ "$(INTDIR)\Lcwin32.obj" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" "$(INTDIR)\Lcwin32.sbr" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LCWIN=\ ".\Lin-city.h"\ ".\Common.h"\ ".\Lctypes.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\Lcwin32.obj" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" "$(INTDIR)\Lcwin32.sbr" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lcwin32.h !IF "$(CFG)" == "lincity - Win32 Release" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\lincity.rc DEP_RSC_LINCI=\ ".\Small.ico"\ ".\lincity.ico"\ ".\Generic.h"\ "$(INTDIR)\lincity.res" : $(SOURCE) $(DEP_RSC_LINCI) "$(INTDIR)" $(RSC) $(RSC_PROJ) $(SOURCE) # End Source File ################################################################################ # Begin Source File SOURCE=.\winmain.cxx !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_WINMA=\ ".\Lin-city.h"\ ".\Common.h"\ ".\Generic.h"\ ".\Mouse.h"\ "$(INTDIR)\winmain.obj" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" "$(INTDIR)\winmain.sbr" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_WINMA=\ ".\Lin-city.h"\ ".\Common.h"\ ".\Generic.h"\ ".\Mouse.h"\ ".\Lcx11.h"\ ".\Lcwin32.h"\ "$(INTDIR)\winmain.obj" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" "$(INTDIR)\winmain.sbr" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\README.win32 !IF "$(CFG)" == "lincity - Win32 Release" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" !ENDIF # End Source File # End Target # End Project ################################################################################ lincity-1.13.1/old.Makefiles/Lincity.mdp0000744000175000017500000004300207740174123014770 00000000000000JSG0J˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙à˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙?-I#˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ü˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙Ħ ×t´ĵt m™,m”§,m™Ȗm™Ȗm™Èm™ÈĦ ×t´ĵt ˙˙˙˙-{,d:\lincity\new\lincity-1.11\main.cxx,} .117Ë]@ Control-C@ Control-Break€Datatype MisalignmentÀAccess ViolationÀ In Page ErrorÀ No MemoryÀIllegal Instruction%ÀNoncontinuable Exception&ÀInvalid DispositionŒÀArray Bounds ExceededÀFloat Denormal OperandŽÀFloat Divide by ZeroÀFloat Inexact ResultÀFloat Invalid Operation‘ÀFloat Overflow’ÀFloat Stack Check“ÀFloat Underflow”ÀInteger Divide by Zero•ÀInteger Overflow–ÀPrivileged InstructionŭÀStack OverflowBÀDLL Initialization FailedcsmàMicrosoft C++ ExceptionWatch1Watch2Watch3Watch4:—MLJLĦ ×t´ĵtlincity-1.13.1/old.Makefiles/Makefile0000644000175000017500000001741307340322046014314 00000000000000# Makefile for LinCity (c) I J Peters 1995,1996. # This is where the binaries for LinCity will be placed. LC_BINDIR = /usr/local/bin # for solaris you might choose... # LC_BINDIR = /opt/lcity/bin # This is where the library/data files will be placed. LC_LIBDIR = /usr/local/lib/lincity # for solaris you might choose... # LC_LIBDIR = /opt/lcity/lib # export LC_LIBDIR # This is where the manpage will be placed. LC_MANDIR = /usr/local/man/man6 LC_MANSUF = 6 # for solaris you might choose... # LC_LIBDIR = /opt/lcity/man/man6 # CC = egcs CC = gcc # EXTRA_OPTS = -fomit-frame-pointer -fstrength-reduce -ffast-math # EXTRA_OPTS = -fstrength-reduce -ffast-math WARN_OPTS = -Wall -Wpointer-arith -Wcast-align -Winline # DEBUG_OPTS =-g CFLAGS = -O2 $(DEBUG_OPTS) $(EXTRA_OPTS) $(WARN_OPTS) -DLIBDIR=\"$(LC_LIBDIR)\" # -fno-strength-reduce # PROFF = -pg # PROFL = -lc # PROFD = -DCS_PROFILE LC_XFLAGS = $(CFLAGS) -DLC_X11 LC_XLIBS = -lXExExt -lXext -lX11 XOBJS = xmain.o xmouse.o xscreen.o xmps.o xtypeinit.o xengine.o\ xtransport.o xmarket.o xhelp.o lcx11.o #SOLARIS_XHOME = /usr/openwin # /usr/X11R6/lib/X11/config/ is where Imake.tmpl lives, change the following # line if yours is somewhere else. LC_IMAKE_ARGS = -DUseInstalled -I/usr/X11R6/lib/X11/config dummy: @echo @echo ' LinCity ---------------------- LinCity' @echo @echo ' 'Please use one of the following commands: # @echo @echo make install ' ' installs the binaries and lib/data files @echo ' ' If you do not have the binaries, you will have @echo ' ' to use one of the following commands first. @echo make lincity ' ' compiles the svga version for Linux @echo make xlincity ' ' compiles the X version for Linux # @echo make hpux ' ' compiles the X version for HP-UX 9.05 # @echo make solaris ' ' compiles the X version for Solaris @echo make '[hpux|solaris|freebsd|irix|sco]' for those platforms. @echo ' ' picedit is used to draw the icons, it is not part of the game. @echo make picedit ' ' compiles and installs SVGA picedit @echo make xpicedit ' ' compiles and installs xpicedit @echo @echo make clean ' ' deletes the \'*.o\' files and binaries @echo make uninstall ' ' uninstalls everything @echo @echo The current install paths are: # @echo @echo ' ' Binaries ' ' $(LC_BINDIR) @echo ' ' Libs/Data ' ' $(LC_LIBDIR) @echo @echo To change them edit the Makefile and change LC_BINDIR and LC_LIBDIR. # @echo LC_BINDIR and LC_LIBDIR. @echo all : lincity xlincity @echo All done. lc : lincity install @echo Installed lincity : main.o mouse.o screen.o mps.o typeinit.o engine.o transport.o\ market.o help.o g++ $(PROFL) main.o mouse.o screen.o mps.o typeinit.o engine.o\ transport.o market.o help.o -lm -lvgagl -lvga\ -o lincity $(PROFF) chmod +s lincity # I only call the Makefile generated by imake for linking # all the objects and libraries. xlincity : $(XOBJS) imake -s XMakefile $(LC_IMAKE_ARGS) LC_LIBDIR=$(LC_LIBDIR) make -f XMakefile solaris : make -f sunosMakefile LC_LIBDIR=$(LC_LIBDIR) @echo @echo xlincity compiled, now make install. hpux : make -f hpuxMakefile LC_LIBDIR=$(LC_LIBDIR) @echo @echo xlincity compiled, now make install. freebsd : xlincity @echo @echo xlincity compiled, now make install. irix : make -f irixMakefile LC_LIBDIR=$(LC_LIBDIR) @echo @echo xlincity compiled, now make install. sco : make -f scoMakefile LC_LIBDIR=$(LC_LIBDIR) @echo @echo xlincity compiled, now make install. install : # a version(?) of mkdir for SCO OpenServer fails if the dir already # exists, even with the -p flag, hence the '-'. We should still # catch a failure with the chmod hopefully. -mkdir -p $(LC_BINDIR) chmod 755 $(LC_BINDIR) -cp lincity $(LC_BINDIR) -chmod +s $(LC_BINDIR)/lincity -cp xlincity $(LC_BINDIR) -chmod 755 $(LC_BINDIR)/xlincity -mkdir -p $(LC_LIBDIR) chmod 755 $(LC_LIBDIR) cp -r icons $(LC_LIBDIR) chmod 755 $(LC_LIBDIR)/icons cp -r help $(LC_LIBDIR) chmod 755 $(LC_LIBDIR)/help cp -r messages $(LC_LIBDIR) chmod 755 $(LC_LIBDIR)/messages cp -r opening $(LC_LIBDIR) chmod 755 $(LC_LIBDIR)/opening cp colour.pal $(LC_LIBDIR) chmod -R o+r $(LC_LIBDIR) -mkdir -p $(LC_MANDIR) cp lincity.man $(LC_MANDIR)/lincity.$(LC_MANSUF) chmod o+r $(LC_MANDIR)/lincity.$(LC_MANSUF) chmod o+rx `dirname $(LC_BINDIR)` chmod o+rx `dirname $(LC_MANDIR)` uninstall: -rm $(LC_BINDIR)/lincity -rm $(LC_BINDIR)/xlincity -rm $(LC_BINDIR)/picedit -rm $(LC_BINDIR)/xpicedit -rm -r $(LC_LIBDIR) -rm $(LC_MANDIR)/lincity.$(LC_MANSUF) main.o : main.cxx main.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c main.cxx -o main.o $(CFLAGS) xmain.o : main.cxx main.h lin-city.h lctypes.h lcx11.h $(CC) $(PROFF) $(PROFD) -c main.cxx -o xmain.o $(LC_XFLAGS) mouse.o : mouse.cxx mouse.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c mouse.cxx -o mouse.o $(CFLAGS) xmouse.o : mouse.cxx mouse.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c mouse.cxx -o xmouse.o $(LC_XFLAGS) screen.o : screen.cxx screen.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c screen.cxx -o screen.o $(CFLAGS) xscreen.o : screen.cxx screen.h lin-city.h lctypes.h lcx11.h $(CC) $(PROFF) $(PROFD) -c screen.cxx -o xscreen.o $(LC_XFLAGS) mps.o : mps.cxx mps.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c mps.cxx -o mps.o $(CFLAGS) xmps.o : mps.cxx mps.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c mps.cxx -o xmps.o $(LC_XFLAGS) typeinit.o : typeinit.cxx typeinit.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c typeinit.cxx -o typeinit.o $(CFLAGS) xtypeinit.o : typeinit.cxx typeinit.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c typeinit.cxx -o xtypeinit.o $(LC_XFLAGS) engine.o : engine.cxx engine.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c engine.cxx -o engine.o $(CFLAGS) xengine.o : engine.cxx engine.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c engine.cxx -o xengine.o $(LC_XFLAGS) transport.o : transport.cxx transport.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c transport.cxx -o transport.o $(CFLAGS) xtransport.o : transport.cxx transport.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c transport.cxx -o xtransport.o $(LC_XFLAGS) market.o : market.cxx market.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c market.cxx -o market.o $(CFLAGS) xmarket.o : market.cxx market.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c market.cxx -o xmarket.o $(LC_XFLAGS) help.o : help.cxx help.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c help.cxx -o help.o $(CFLAGS) xhelp.o : help.cxx help.h lin-city.h lctypes.h $(CC) $(PROFF) $(PROFD) -c help.cxx -o xhelp.o $(LC_XFLAGS) lcx11.o : lcx11.cxx lcx11.h lin-city.h lctypes.h $(CC) -c lcx11.cxx -o lcx11.o $(LC_XFLAGS) clean : -rm lincity -rm xlincity -rm picedit -rm xpicedit -rm *.o -rm *.s -rm XMakefile -rm XPMakefile distclean: clean -rm help/*~ -rm help/*.bak -rm opening/*~ -rm notes/*~ -rm messages/*~ -rm messages/*.bak -rm picedit -rm *.bak -rm *~ -rm \#*\# -rm XMakefile -rm XPMakefile -rm -rf Debug -rm -rf SAVED_GAMES picedit : picedit.cxx $(CC) picedit.cxx -o picedit -lvgagl -lvga $(CFLAGS) cp picedit $(LC_BINDIR) chmod +s $(LC_BINDIR)/picedit -mkdir -p $(LC_LIBDIR)/opening cp opening/alt-8x8 $(LC_LIBDIR)/opening cp colour.pal $(LC_LIBDIR) # I only call the Makefile generated by imake for linking. xpicedit : picedit.cxx picedit.h $(CC) -c picedit.cxx -o xpicedit.o $(CFLAGS) -DP_X imake -f XPImakefile -s XPMakefile $(LC_IMAKE_ARGS) make -f XPMakefile cp xpicedit /usr/local/bin -mkdir -p $(LC_LIBDIR)/opening cp opening/alt-8x8 $(LC_LIBDIR)/opening cp colour.pal $(LC_LIBDIR) # Some extra useful ones for me. transport-asm : $(CC) -S transport.cxx $(CFLAGS) # -------- End of Makefile for LinCity ----------- lincity-1.13.1/old.Makefiles/Makefile.os20000644000175000017500000000771307340322047015021 00000000000000# Makefile for LinCity (c) I J Peters 1995,1996. # Version for OS/2, XFree86 and EMX gcc # SHELL=sh # This is where the binaries for LinCity will be placed. LC_BINDIR = $(X11ROOT)/XFree86/bin # This is where the manpage will be placed. LC_MANDIR = $(X11ROOT)/XFree86/man/man6 LC_MANSUF = 6 # # The executable will detect the path below using __XOS2RedirRoot(), # so we don't pass this variable to the compiler/preprocessor! # This is where the library/data files will be placed. LC_LIBDIR = $(X11ROOT)/XFree86/lib/X11/lincity export LC_LIBDIR C++ = gcc #EXTRA_OPTS = -Zmt -m486 -O2 -fstrength-reduce -ffast-math #EXTRA_OPTS = -Zmtd -O1 -fstrength-reduce -ffast-math WARN_OPTS = -Wall -Wpointer-arith -Wcast-align -Winline INCDIRS = -I$(X11ROOT)/XFree86/include LIBDIRS = -L$(X11ROOT)/XFree86/lib DEBUG_OPTS = CFLAGS = $(INCDIRS) $(DEBUG_OPTS) $(EXTRA_OPTS) $(WARN_OPTS) LC_XFLAGS = $(CFLAGS) -DLC_X11 LC_XLIBS = -lXext -lX11 LDFLAGS = -s -Zexe -Zsysv-signals -Zbin-files -Zmt -Zcrtdll $(LIBDIRS) XOBJS = xmain.o xmouse.o xscreen.o xmps.o xtypeinit.o xengine.o\ xtransport.o xmarket.o xhelp.o lcx11.o dummy: @echo @echo ' LinCity ---------------------- LinCity' @echo @echo ' 'Please use one of the following commands: @echo make install ' ' installs the binaries and lib/data files @echo ' ' If you do not have the binaries, you will have @echo ' ' to use one of the following commands first. @echo make xlincity ' ' compiles xlincity @echo make xpicedit ' ' compiles xpicedit @echo make alll ' ' compiles xlincity and xpicedit @echo @echo make clean ' ' deletes the \'*.o\' files and binaries @echo make uninstall ' ' uninstalls everything @echo @echo The current install paths are: @echo ' ' Binaries ' ' $(LC_BINDIR) @echo ' ' Libs/Data ' ' $(LC_LIBDIR) @echo @echo To change them edit the Makefile.os2 and change LC_BINDIR and LC_LIBDIR. @echo all : xlincity xpicedit @echo All done. xlincity : $(XOBJS) $(C++) $(LDFLAGS) -o $@ $^ $(LC_XLIBS) xpicedit : xpicedit.o $(C++) $(LDFLAGS) -o $@ $^ $(LC_XLIBS) install : -mkdir -p $(LC_BINDIR) -cp xlincity.exe $(LC_BINDIR) -mkdir -p $(LC_LIBDIR) cp -r icons $(LC_LIBDIR) cp -r help $(LC_LIBDIR) cp -r messages $(LC_LIBDIR) cp -r opening $(LC_LIBDIR) cp open.tga.gz $(LC_LIBDIR)/opening cp colour.pal $(LC_LIBDIR) -mkdir -p $(LC_MANDIR) cp lincity.man $(LC_MANDIR)/lincity.$(LC_MANSUF) cp xpicedit.exe $(LC_BINDIR) uninstall: -rm $(LC_BINDIR)/xlincity.exe -rm $(LC_BINDIR)/xpicedit.exe -rm -r $(LC_LIBDIR) -rm $(LC_MANDIR)/lincity.$(LC_MANSUF) xmain.o : main.cxx main.h lin-city.h lctypes.h lcx11.h $(C++) -c main.cxx -o xmain.o $(LC_XFLAGS) xmouse.o : mouse.cxx mouse.h lin-city.h lctypes.h $(C++) -c mouse.cxx -o xmouse.o $(LC_XFLAGS) xscreen.o : screen.cxx screen.h lin-city.h lctypes.h lcx11.h $(C++) -c screen.cxx -o xscreen.o $(LC_XFLAGS) xmps.o : mps.cxx mps.h lin-city.h lctypes.h $(C++) -c mps.cxx -o xmps.o $(LC_XFLAGS) xtypeinit.o : typeinit.cxx typeinit.h lin-city.h lctypes.h $(C++) -c typeinit.cxx -o xtypeinit.o $(LC_XFLAGS) xengine.o : engine.cxx engine.h lin-city.h lctypes.h $(C++) -c engine.cxx -o xengine.o $(LC_XFLAGS) xtransport.o : transport.cxx transport.h lin-city.h lctypes.h $(C++) -c transport.cxx -o xtransport.o $(LC_XFLAGS) xmarket.o : market.cxx market.h lin-city.h lctypes.h $(C++) -c market.cxx -o xmarket.o $(LC_XFLAGS) xhelp.o : help.cxx help.h lin-city.h lctypes.h $(C++) -c help.cxx -o xhelp.o $(LC_XFLAGS) lcx11.o : lcx11.cxx lcx11.h lin-city.h lctypes.h $(C++) -c lcx11.cxx -o lcx11.o $(LC_XFLAGS) xpicedit.o: picedit.cxx picedit.h $(C++) -c picedit.cxx -o xpicedit.o $(CFLAGS) -DP_X clean : -rm -f xlincity -rm -f xlincity.exe -rm -f xpicedit -rm -f xpicedit.exe -rm -f *.o -rm -f *.s distclean: -rm -f help/*~ -rm -f help/*.bak -rm -f opening/*~ -rm -f messages/*~ -rm -f messages/*.bak -rm -f *.bak -rm -f *~ # -------- End of Makefile for LinCity ----------- lincity-1.13.1/old.Makefiles/README.INSTALL0000644000175000017500000000762207340322047014643 00000000000000INSTALLATION: --------- NOTE: If you have a version less than 0.95 installed on your system, you MUST ^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^ remove the following symlinks with: rm /usr/local/bin/lin-city rm /usr/local/bin/xlin-city You should also get rid of the old source tree (although this isn't strictly necessary), with rm -r /usr/local/games/lin-city --------- To install LinCity, (as root) untar the file lincity-1.11.tar.gz tar -xzvf lincity-1.11.tar.gz This will unpack the game into the directory ./lincity-1.11 If you want to compile the source (you will usually have to do this.) ================================= make clean make lincity (or, make [ xlincity | hpux | solaris ]) make install [ you can type 'make' on its own to see what options you have and where the files will be installed. ] If you got a binary release and want to only install, go into the directory ./lincity-1.11 and type make install This will install the Linux SVGA and X elf binaries if you got the elfbin version. If you got the source only version, (or you are non-elf or non-Linux) you will have to compile the program. This will install the binaries in /usr/local/bin/ and the library/data files in /usr/local/lib/lincity/ . If you want to install the -libraries- to a different place, you will have to edit the Makefile and recompile. (The binaries can go anywhere on your path.) You might also want to edit the first few lines of lin-city.h to change some of the user configurable options, such as mouse sensitivity. Installing to a different directory =================================== Binaries: Edit the Makefile and change LC_BINDIR the where you want the binaries installed. Then simply make install. Library/data files: Edit the Makefile, changing LC_LIBDIR Then compile the source (make clean; make lincity; make install) NOTE: If you don't run an ELF system, you will have to compile the source. Running LinCity. =============== As a user, run the game with the command lincity (or, xlincity) Press space to get past the opening screen, then select an option from the large window. See the README for some command line options. If you need to claw back some HD space, you can delete the source tree after you have installed. NOTES FOR X VERSION =================== When playing in 256 colour (8bbp) display modes, when you go over the edge of your window, the window manager changes the colour palette back to the 'normal' one, then back to the game's one when the mouse reenters the window. This is what is supposed to happen, but can be a bit annoying when trying to click on areas close to the edge and overshooting. For this reason, I have added an extra border around the game to give players a bit of 'breathing space'. You can disable this feature by starting the game with a '-b' switch. ie. xlincity -b There is now a button that enables you to confine the mouse pointer within the X window. ( xlincity -b, then confining the pointer and changing the screen res to 640x480 gives you a 'full screen' game. :) ) Istalling picedit ================= picedit is a simple drawing program that was used to draw all the icons found within the game. You are free to play with this, and even send me new icons that you have designed - although I cannot guarantee that any icons sent to me will be included in later versions. If you intend to design some that you feel should be included, please e-mail me first, this may save a lot of wasted effort. make picedit (or make xpicedit) will compile *and install* picedit to /usr/local/bin, and its data files to /usr/local/lib/lincity. If you want these installed somewhere else edit the Makefile as for lincity. lincity-1.13.1/old.Makefiles/README.aix0000644000175000017500000000050707340322047014311 00000000000000 AIX support for LinCity Andrew Costa seagull@osiris.isys.ca reports that LinCity compiles 'out the box' with a simple make xlincity (then make install) on the following machine:- - IBM Thinkpad-850 - PowerPC-603e (100 MHz), 64 megs memory - X11R5 with the Common Desktop Environment - gcc-2.7.2, gas-2.7.?, make-3.74 lincity-1.13.1/old.Makefiles/README.freebsd0000644000175000017500000000043707340322047015144 00000000000000 **** README.freebsd for lincity **** Lincity is known to compile cleanly and start up on FreeBSD-2.1.0, but it is not thoroughly tested. GNUmake is required. To compile and install: make clean make freebsd make install Run the game with 'xlincity' Have fun... lincity-1.13.1/old.Makefiles/README.irix0000644000175000017500000000040507340322047014500 00000000000000 **** README.irix for lincity **** This is ALPHA. Frederic Roussel sent me the patches but this hasn't been tested on any other machines. To compile and install: make clean make irix make install Run the game with 'xlincity' Have fun... lincity-1.13.1/old.Makefiles/README.os20000644000175000017500000000066607340322047014241 00000000000000 README for OS/2 (XFree86) port of Lincity Ronald Van Iwaarden (rvaniwaa@cs.hope.edu) did the port of Lincity to XFree86 for OS/2 using EMX gcc. His changes in the source have been included before 1.0. Alexander Mai (st002279@hrzpub.tu-darmstadt.de) supplied the new Makefile.os2 and a few new patches. Note: To compile under OS/2 use: x11make -f makefile.os2 The command above will show you the available targets. lincity-1.13.1/old.Makefiles/README.sco0000644000175000017500000000254407340322050014311 00000000000000 **** README.sco for lincity **** Lincity uses 'gzip' to compress and uncompress saved games. Gzip is not a standard SCO OpenServer utility, but you can get it from the 'SCO Skunkware' archive; currently ftp://ftp.sco.com/Skunk/bin/gzip To compile under SCO OpenServer 5.0: make clean make sco If the CC link fails, with the message undefined first referenced symbol in file gettimeofday(timeval*,timezone*) main.o then you need to make a small edit to the file /usr/include/sys/time.h to make it C++-clean. To do this, add the encapsulation #ifdef __cplusplus extern "C" { #endif before the line #if !defined(_INKERNEL) and #ifdef __cplusplus } #endif after the line #endif /* !defined(_INKERNEL) */ to the file. Here's a patch input that will do it on SCO OpenServer 5.0.0 and 5.0.2: 57a58,61 > #ifdef __cplusplus > extern "C" { > #endif > 68a73,76 > > #ifdef __cplusplus > } > #endif (but be VERY careful applying this on other releases). Now run make clean make sco and everything should be OK. Assuming that it is, install with make install You may need to create /usr/local, /usr/local/lib, and/or /usr/local/bin if they aren't there already. Run the game with 'xlincity' lincity-1.13.1/old.Makefiles/README.win320000644000175000017500000001125007340322050014461 00000000000000 **** README.win32 for lincity **** Welcome to the WIN32 version of Lin City. This README corresponds to Lin City version 1.11A. INSTALLATION ============ Simply unpack the archive, and double click on the LINCITY.EXE icon. Be sure to use a program such as UNZIP which preserves long filenames. You can get your free copy of UNZIP from the INFO-ZIP web page at http://www.cdrom.com/pub/infozip/UnZip.html. RELEASE NOTES ============= LinCity for Win32 automatically chooses whether or not to add a border and/or perform pix doubling, depending on your resolution. Furthermore, it will automatically maximize the window or even go into full screen mode. Here is what you should see for some of the more popular resolutions: Resolution Window Style Border Pix Doubling ------------ ------------ ------------ ------------ 640 x 480 Full screen None No 800 x 600 Window Yes No 1024 x 768 Window Yes No 1152 x 864 Window Yes No 1280 x 1024 Window None Yes If you are running 1280x1024, you may need to autohide the taskbar in order to see pix doubling. Lin City now uses a real windows font to draw text. This fix gave me a speed improvement of 20% at year 800. If you get a message such as "Can't open the font file", this probably means that the long file names did not get unzip'd correctly. Go to the C:\LINCITY???\OPENING directory, and look for the file winfont_8x8.fnt. If this file does not exists (or if it is called winfont_.fnt), then is definitely the problem. Reinstall the archive using the UNZIP program. If you get a message such as "Error. Can't find LINCITY_HOME", this means that LinCity can't find it's home directory. The program searches for the file "Colour.pal" in the following three directories (in order): The current working directory The directory pointed to by the $LINCITY_HOME environment variable The default directory C:\LINCITY111A Multi-transport is now supported. Simply shift-click at the beginning and shift-click at the end, and you'll get a whole line of track, road, rail or power lines. Look for the blue border around the main window to confirm that you are in multi-transport mode. Save files are not binary compatible with the UNIX version of LinCity. You will need to gzip/gunzip the save files when you transfer them to/from your UNIX box. You can now scroll the main screen using the arrow keys. Furthermore, you can do a "fast scroll" with the SHIFT+ARROW key. Double doubleplus good! The source code is now distributed together with the binary distribution, in the file source.tgz. HISTORY ======= 1.11 - See CHANGES file for more recent changes. 1.09 - Added full screen capability for VGA resolution. - Fixed windows menus (open/save/help). - Added "fast scroll" (SHIFT+ARROW KEY). - Fixed bug for placing multiple random villages in first year. - Added help screen for Windows keys. 1.08 - Chaged font drawing routines to use windows fonts. - Fixed mouse offset problems (square cursor not centered under mouse). 1.07 - (UNIX only release) 1.06 - Merged in mouse click fix from Unix version. 1.05d - Fixed 1/2 second delay between clicking and placing item. - Fixed decreased performance when mouse is in main screen. 1.05c - Initial beta release. KNOWN BUGS ========== o Your OS must support long file names. o No mail sent when you win. You can find your winning statistics in the following file: $LINCITYHOME/SAVED_GAMES/results o See the file BUGS for more bugs. COMPILATION =========== I am using MS VC++ 4.0 under Win95. LinCity is reported to compile under MS VC++ 6.0 also. If you are using MSVC, you might be able to unpack the archive, and type something like this: c:lincity???> nmake /f lincity.mak I have also included the 4.0 workspace file, Lincity.mdp. This may or may not be helpful for you. If you are using a different compiler, you may need to generate your own Makefile. You need to compile the following files: ENGINE.CXX HELP.CXX LCWIN32.CXX MAIN.CXX MARKET.CXX MOUSE.CXX MPS.CXX SCREEN.CXX TRANSPORT.CXX TYPEINIT.CXX WINMAIN.CXX And link with the following libraries (in addition to the standard WIN32 libraries): VERSION.LIB COMMENTS? ========= Any bugs or comments, send email to Greg Sharp at gregsharp@geocities.com. Have fun... lincity-1.13.1/old.Makefiles/XPImakefile0000644000175000017500000000067207340322050014727 00000000000000# This is the Imakefile for picedit. Part of LinCity. # # DO NOT run imake on this file - it will not work. # ================================================= # It needs to be called from the top level Makefile # where variables are set. Use - make xpicedit #IMAKE_DEFINES= -DManSuffix=6 DEFINES = -X11R4 DEPLIBS = $(DEPXLIB) LOCAL_LIBRARIES = $(XLIB) SingleProgramTarget(xpicedit,xpicedit.o,$(DEPXLIB),$(XLIB)) lincity-1.13.1/old.Makefiles/hpuxMakefile0000644000175000017500000000356507340322050015217 00000000000000# hpuxMakefile for LinCity (c) I J Peters 1995,1996. # Thanks to john@meertech.demon.co.uk (John Woodgate) # DO NOT INVOKE THIS FILE DIRECTLY, it is called from the Makefile. # Edit the Makefile to point to where you want the binary and libraries # to go. Then 'make clean', 'make hpux' and 'make install'. CFLAGS = -O2 -I/usr/include/X11R5 -DLIBDIR=\"$(LC_LIBDIR)/\" LC_XFLAGS = $(CFLAGS) -DLC_X11 -DHP_UX LC_XLIBS = -lm -lXext -lX11 XOBJS = xmain.o xmouse.o xscreen.o xmps.o xtypeinit.o xengine.o\ xtransport.o xmarket.o xhelp.o lcx11.o # LC_IMAKE_ARGS = -DUseInstalled -I/usr/lib/X11R5/config hpux : $(XOBJS) gcc -o xlincity *.o -L/usr/lib/X11R5 $(LC_XLIBS) @echo HP-UX compile done. xmain.o : main.cxx main.h lin-city.h lctypes.h lcx11.h gcc $(PROFF) $(PROFD) -c main.cxx -o xmain.o $(LC_XFLAGS) xmouse.o : mouse.cxx mouse.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c mouse.cxx -o xmouse.o $(LC_XFLAGS) xscreen.o : screen.cxx screen.h lin-city.h lctypes.h lcx11.h gcc $(PROFF) $(PROFD) -c screen.cxx -o xscreen.o $(LC_XFLAGS) xmps.o : mps.cxx mps.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c mps.cxx -o xmps.o $(LC_XFLAGS) xtypeinit.o : typeinit.cxx typeinit.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c typeinit.cxx -o xtypeinit.o $(LC_XFLAGS) xengine.o : engine.cxx engine.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c engine.cxx -o xengine.o $(LC_XFLAGS) xtransport.o : transport.cxx transport.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c transport.cxx -o xtransport.o $(LC_XFLAGS) xmarket.o : market.cxx market.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c market.cxx -o xmarket.o $(LC_XFLAGS) xhelp.o : help.cxx help.h lin-city.h lctypes.h gcc $(PROFF) $(PROFD) -c help.cxx -o xhelp.o $(LC_XFLAGS) lcx11.o : lcx11.cxx lcx11.h lin-city.h gcc -c lcx11.cxx -o lcx11.o $(LC_XFLAGS) # -------- End of Makefile for LinCity ----------- lincity-1.13.1/old.Makefiles/irixMakefile0000644000175000017500000000154707340322050015204 00000000000000# irixMakefile for LinCity # Thanks to Frederic.Roussel@eng.efi.com (Frederic Roussel) # DO NOT INVOKE THIS FILE DIRECTLY, it is called from the Makefile. # Edit the Makefile to point to where you want the binary and libraries # to go. Then 'make clean', 'make irix' and 'make install'. LIBS = -lXext -lX11 -lm OPTS = -O3 -DIRIX -DLC_X11 -DLIBDIR=\"$(LC_LIBDIR)/\" CXXFLAGS = $(OPTS) $(INCLUDES) SOURCE = main.cxx \ mouse.cxx \ screen.cxx \ mps.cxx \ typeinit.cxx \ engine.cxx \ transport.cxx \ market.cxx \ help.cxx \ lcx11.cxx OBJECTS = $(SOURCE:.cxx=.o) all : $(OBJECTS) CC -o xlin-city $(OBJECTS) $(LIBS) clean: /bin/rm -f $(OBJECTS) xlin-city # -------- End of irixMakefile for LinCity ----------- lincity-1.13.1/old.Makefiles/lc12.mak0000744000175000017500000014721607340322054014114 00000000000000# Microsoft Developer Studio Generated NMAKE File, Format Version 40001 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Application" 0x0101 # TARGTYPE "Win32 (x86) Console Application" 0x0103 !IF "$(CFG)" == "" CFG=lcserver - Win32 Debug !MESSAGE No configuration specified. Defaulting to lcserver - Win32 Debug. !ENDIF !IF "$(CFG)" != "lc12 - Win32 Release" && "$(CFG)" != "lc12 - Win32 Debug" &&\ "$(CFG)" != "lincity - Win32 Release" && "$(CFG)" != "lincity - Win32 Debug" &&\ "$(CFG)" != "lcserver - Win32 Release" && "$(CFG)" != "lcserver - Win32 Debug" !MESSAGE Invalid configuration "$(CFG)" specified. !MESSAGE You can specify a configuration when running NMAKE on this makefile !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "lc12.mak" CFG="lcserver - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "lc12 - Win32 Release" (based on "Win32 (x86) Application") !MESSAGE "lc12 - Win32 Debug" (based on "Win32 (x86) Application") !MESSAGE "lincity - Win32 Release" (based on "Win32 (x86) Application") !MESSAGE "lincity - Win32 Debug" (based on "Win32 (x86) Application") !MESSAGE "lcserver - Win32 Release" (based on\ "Win32 (x86) Console Application") !MESSAGE "lcserver - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE !ERROR An invalid configuration is specified. !ENDIF !IF "$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF ################################################################################ # Begin Project # PROP Target_Last_Scanned "lincity - Win32 Debug" !IF "$(CFG)" == "lc12 - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" OUTDIR=.\Release INTDIR=.\Release ALL : CLEAN : -@erase "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS"\ /Fp"$(INTDIR)/lc12.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\Release/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< MTL=mktyplib.exe # ADD BASE MTL /nologo /D "NDEBUG" /win32 # ADD MTL /nologo /D "NDEBUG" /win32 MTL_PROJ=/nologo /D "NDEBUG" /win32 RSC=rc.exe # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lc12.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /incremental:no\ /pdb:"$(OUTDIR)/lc12.pdb" /machine:I386 /out:"$(OUTDIR)/lc12.exe" LINK32_OBJS= !ELSEIF "$(CFG)" == "lc12 - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" OUTDIR=.\Debug INTDIR=.\Debug ALL : CLEAN : -@erase "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS"\ /Fp"$(INTDIR)/lc12.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c CPP_OBJS=.\Debug/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< MTL=mktyplib.exe # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /win32 MTL_PROJ=/nologo /D "_DEBUG" /win32 RSC=rc.exe # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lc12.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows\ /incremental:yes /pdb:"$(OUTDIR)/lc12.pdb" /debug /machine:I386\ /out:"$(OUTDIR)/lc12.exe" LINK32_OBJS= !ELSEIF "$(CFG)" == "lincity - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "lincity\Release" # PROP BASE Intermediate_Dir "lincity\Release" # PROP BASE Target_Dir "lincity" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "lincity\Release" # PROP Intermediate_Dir "lincity\Release" # PROP Target_Dir "lincity" OUTDIR=.\lincity\Release INTDIR=.\lincity\Release ALL : "$(OUTDIR)\lincity.exe" CLEAN : -@erase ".\lincity\Release\lincity.exe" -@erase ".\lincity\Release\Mps.obj" -@erase ".\lincity\Release\Lintypes.obj" -@erase ".\lincity\Release\Clinet.obj" -@erase ".\lincity\Release\Animate.obj" -@erase ".\lincity\Release\Mouse.obj" -@erase ".\lincity\Release\Splash.obj" -@erase ".\lincity\Release\Screen.obj" -@erase ".\lincity\Release\Climsg.obj" -@erase ".\lincity\Release\Main.obj" -@erase ".\lincity\Release\Clitypes.obj" -@erase ".\lincity\Release\transport.obj" -@erase ".\lincity\Release\Timer.obj" -@erase ".\lincity\Release\Lcwin32.obj" -@erase ".\lincity\Release\Geometry.obj" -@erase ".\lincity\Release\Market.obj" -@erase ".\lincity\Release\Ldsvgui.obj" -@erase ".\lincity\Release\Fileutil.obj" -@erase ".\lincity\Release\Shrnet.obj" -@erase ".\lincity\Release\Lchelp.obj" -@erase ".\lincity\Release\Simulate.obj" -@erase ".\lincity\Release\Shrtypes.obj" -@erase ".\lincity\Release\Winmain.obj" -@erase ".\lincity\Release\Cliglobs.obj" -@erase ".\lincity\Release\Shrglobs.obj" -@erase ".\lincity\Release\Ldsvguts.obj" -@erase ".\lincity\Release\Clistubs.obj" -@erase ".\lincity\Release\Engine.obj" -@erase ".\lincity\Release\Lincity.res" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS"\ /Fp"$(INTDIR)/lincity.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\lincity\Release/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< MTL=mktyplib.exe # ADD BASE MTL /nologo /D "NDEBUG" /win32 # ADD MTL /nologo /D "NDEBUG" /win32 MTL_PROJ=/nologo /D "NDEBUG" /win32 RSC=rc.exe # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" RSC_PROJ=/l 0x409 /fo"$(INTDIR)/Lincity.res" /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lincity.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /incremental:no\ /pdb:"$(OUTDIR)/lincity.pdb" /machine:I386 /out:"$(OUTDIR)/lincity.exe" LINK32_OBJS= \ "$(INTDIR)/Mps.obj" \ "$(INTDIR)/Lintypes.obj" \ "$(INTDIR)/Clinet.obj" \ "$(INTDIR)/Animate.obj" \ "$(INTDIR)/Mouse.obj" \ "$(INTDIR)/Splash.obj" \ "$(INTDIR)/Screen.obj" \ "$(INTDIR)/Climsg.obj" \ "$(INTDIR)/Main.obj" \ "$(INTDIR)/Clitypes.obj" \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Timer.obj" \ "$(INTDIR)/Lcwin32.obj" \ "$(INTDIR)/Geometry.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Ldsvgui.obj" \ "$(INTDIR)/Fileutil.obj" \ "$(INTDIR)/Shrnet.obj" \ "$(INTDIR)/Lchelp.obj" \ "$(INTDIR)/Simulate.obj" \ "$(INTDIR)/Shrtypes.obj" \ "$(INTDIR)/Winmain.obj" \ "$(INTDIR)/Cliglobs.obj" \ "$(INTDIR)/Shrglobs.obj" \ "$(INTDIR)/Ldsvguts.obj" \ "$(INTDIR)/Clistubs.obj" \ "$(INTDIR)/Engine.obj" \ "$(INTDIR)/Lincity.res" "$(OUTDIR)\lincity.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ELSEIF "$(CFG)" == "lincity - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "lincity\Debug" # PROP BASE Intermediate_Dir "lincity\Debug" # PROP BASE Target_Dir "lincity" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "lincity\Debug" # PROP Intermediate_Dir "lincity\Debug" # PROP Target_Dir "lincity" OUTDIR=.\lincity\Debug INTDIR=.\lincity\Debug ALL : "$(OUTDIR)\lincity.exe" CLEAN : -@erase ".\lincity\Debug\vc40.pdb" -@erase ".\lincity\Debug\vc40.idb" -@erase ".\lincity\Debug\lincity.exe" -@erase ".\lincity\Debug\Shrglobs.obj" -@erase ".\lincity\Debug\Lchelp.obj" -@erase ".\lincity\Debug\Timer.obj" -@erase ".\lincity\Debug\Main.obj" -@erase ".\lincity\Debug\Lintypes.obj" -@erase ".\lincity\Debug\Lcwin32.obj" -@erase ".\lincity\Debug\Ldsvgui.obj" -@erase ".\lincity\Debug\Fileutil.obj" -@erase ".\lincity\Debug\Simulate.obj" -@erase ".\lincity\Debug\Shrnet.obj" -@erase ".\lincity\Debug\Clitypes.obj" -@erase ".\lincity\Debug\Winmain.obj" -@erase ".\lincity\Debug\Cliglobs.obj" -@erase ".\lincity\Debug\Ldsvguts.obj" -@erase ".\lincity\Debug\Clistubs.obj" -@erase ".\lincity\Debug\Geometry.obj" -@erase ".\lincity\Debug\Engine.obj" -@erase ".\lincity\Debug\Mouse.obj" -@erase ".\lincity\Debug\Clinet.obj" -@erase ".\lincity\Debug\Animate.obj" -@erase ".\lincity\Debug\transport.obj" -@erase ".\lincity\Debug\Market.obj" -@erase ".\lincity\Debug\Mps.obj" -@erase ".\lincity\Debug\Shrtypes.obj" -@erase ".\lincity\Debug\Splash.obj" -@erase ".\lincity\Debug\Screen.obj" -@erase ".\lincity\Debug\Climsg.obj" -@erase ".\lincity\Debug\Lincity.res" -@erase ".\lincity\Debug\lincity.ilk" -@erase ".\lincity\Debug\lincity.pdb" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c # ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS"\ /Fp"$(INTDIR)/lincity.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c CPP_OBJS=.\lincity\Debug/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< MTL=mktyplib.exe # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /win32 MTL_PROJ=/nologo /D "_DEBUG" /win32 RSC=rc.exe # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" RSC_PROJ=/l 0x409 /fo"$(INTDIR)/Lincity.res" /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lincity.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows /debug /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib version.lib wsock32.lib /nologo /subsystem:windows\ /incremental:yes /pdb:"$(OUTDIR)/lincity.pdb" /debug /machine:I386\ /out:"$(OUTDIR)/lincity.exe" LINK32_OBJS= \ "$(INTDIR)/Shrglobs.obj" \ "$(INTDIR)/Lchelp.obj" \ "$(INTDIR)/Timer.obj" \ "$(INTDIR)/Main.obj" \ "$(INTDIR)/Lintypes.obj" \ "$(INTDIR)/Lcwin32.obj" \ "$(INTDIR)/Ldsvgui.obj" \ "$(INTDIR)/Fileutil.obj" \ "$(INTDIR)/Simulate.obj" \ "$(INTDIR)/Shrnet.obj" \ "$(INTDIR)/Clitypes.obj" \ "$(INTDIR)/Winmain.obj" \ "$(INTDIR)/Cliglobs.obj" \ "$(INTDIR)/Ldsvguts.obj" \ "$(INTDIR)/Clistubs.obj" \ "$(INTDIR)/Geometry.obj" \ "$(INTDIR)/Engine.obj" \ "$(INTDIR)/Mouse.obj" \ "$(INTDIR)/Clinet.obj" \ "$(INTDIR)/Animate.obj" \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Mps.obj" \ "$(INTDIR)/Shrtypes.obj" \ "$(INTDIR)/Splash.obj" \ "$(INTDIR)/Screen.obj" \ "$(INTDIR)/Climsg.obj" \ "$(INTDIR)/Lincity.res" "$(OUTDIR)\lincity.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ELSEIF "$(CFG)" == "lcserver - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "lcserver\Release" # PROP BASE Intermediate_Dir "lcserver\Release" # PROP BASE Target_Dir "lcserver" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "lcserver\Release" # PROP Intermediate_Dir "lcserver\Release" # PROP Target_Dir "lcserver" OUTDIR=.\lcserver\Release INTDIR=.\lcserver\Release ALL : "$(OUTDIR)\lcserver.exe" CLEAN : -@erase ".\lcserver\Release\lcserver.exe" -@erase ".\lcserver\Release\transport.obj" -@erase ".\lcserver\Release\Fileutil.obj" -@erase ".\lcserver\Release\Ldsvguts.obj" -@erase ".\lcserver\Release\Lintypes.obj" -@erase ".\lcserver\Release\Market.obj" -@erase ".\lcserver\Release\Sermain.obj" -@erase ".\lcserver\Release\Sermsg.obj" -@erase ".\lcserver\Release\Sernet.obj" -@erase ".\lcserver\Release\Serstubs.obj" -@erase ".\lcserver\Release\Shrglobs.obj" -@erase ".\lcserver\Release\Shrnet.obj" -@erase ".\lcserver\Release\Shrtypes.obj" -@erase ".\lcserver\Release\Simulate.obj" -@erase ".\lcserver\Release\Timer.obj" -@erase ".\lcserver\Release\Engine.obj" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE"\ /Fp"$(INTDIR)/lcserver.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\lcserver\Release/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< RSC=rc.exe # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lcserver.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\ /pdb:"$(OUTDIR)/lcserver.pdb" /machine:I386 /out:"$(OUTDIR)/lcserver.exe" LINK32_OBJS= \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Fileutil.obj" \ "$(INTDIR)/Ldsvguts.obj" \ "$(INTDIR)/Lintypes.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Sermain.obj" \ "$(INTDIR)/Sermsg.obj" \ "$(INTDIR)/Sernet.obj" \ "$(INTDIR)/Serstubs.obj" \ "$(INTDIR)/Shrglobs.obj" \ "$(INTDIR)/Shrnet.obj" \ "$(INTDIR)/Shrtypes.obj" \ "$(INTDIR)/Simulate.obj" \ "$(INTDIR)/Timer.obj" \ "$(INTDIR)/Engine.obj" "$(OUTDIR)\lcserver.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ELSEIF "$(CFG)" == "lcserver - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "lcserver\Debug" # PROP BASE Intermediate_Dir "lcserver\Debug" # PROP BASE Target_Dir "lcserver" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "lcserver\Debug" # PROP Intermediate_Dir "lcserver\Debug" # PROP Target_Dir "lcserver" OUTDIR=.\lcserver\Debug INTDIR=.\lcserver\Debug ALL : "$(OUTDIR)\lcserver.exe" CLEAN : -@erase ".\lcserver\Debug\lcserver.exe" -@erase ".\lcserver\Debug\transport.obj" -@erase ".\lcserver\Debug\Fileutil.obj" -@erase ".\lcserver\Debug\Ldsvguts.obj" -@erase ".\lcserver\Debug\Lintypes.obj" -@erase ".\lcserver\Debug\Market.obj" -@erase ".\lcserver\Debug\Sermain.obj" -@erase ".\lcserver\Debug\Sermsg.obj" -@erase ".\lcserver\Debug\Sernet.obj" -@erase ".\lcserver\Debug\Serstubs.obj" -@erase ".\lcserver\Debug\Shrglobs.obj" -@erase ".\lcserver\Debug\Shrnet.obj" -@erase ".\lcserver\Debug\Shrtypes.obj" -@erase ".\lcserver\Debug\Simulate.obj" -@erase ".\lcserver\Debug\Timer.obj" -@erase ".\lcserver\Debug\Engine.obj" -@erase ".\lcserver\Debug\lcserver.ilk" -@erase ".\lcserver\Debug\lcserver.pdb" -@erase ".\lcserver\Debug\vc40.pdb" -@erase ".\lcserver\Debug\vc40.idb" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP=cl.exe # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c # ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE"\ /Fp"$(INTDIR)/lcserver.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c CPP_OBJS=.\lcserver\Debug/ CPP_SBRS= .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< RSC=rc.exe # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo BSC32_FLAGS=/nologo /o"$(OUTDIR)/lcserver.bsc" BSC32_SBRS= LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:yes\ /pdb:"$(OUTDIR)/lcserver.pdb" /debug /machine:I386\ /out:"$(OUTDIR)/lcserver.exe" LINK32_OBJS= \ "$(INTDIR)/transport.obj" \ "$(INTDIR)/Fileutil.obj" \ "$(INTDIR)/Ldsvguts.obj" \ "$(INTDIR)/Lintypes.obj" \ "$(INTDIR)/Market.obj" \ "$(INTDIR)/Sermain.obj" \ "$(INTDIR)/Sermsg.obj" \ "$(INTDIR)/Sernet.obj" \ "$(INTDIR)/Serstubs.obj" \ "$(INTDIR)/Shrglobs.obj" \ "$(INTDIR)/Shrnet.obj" \ "$(INTDIR)/Shrtypes.obj" \ "$(INTDIR)/Simulate.obj" \ "$(INTDIR)/Timer.obj" \ "$(INTDIR)/Engine.obj" "$(OUTDIR)\lcserver.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ENDIF ################################################################################ # Begin Target # Name "lc12 - Win32 Release" # Name "lc12 - Win32 Debug" !IF "$(CFG)" == "lc12 - Win32 Release" !ELSEIF "$(CFG)" == "lc12 - Win32 Debug" !ENDIF # End Target ################################################################################ # Begin Target # Name "lincity - Win32 Release" # Name "lincity - Win32 Debug" !IF "$(CFG)" == "lincity - Win32 Release" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" !ENDIF ################################################################################ # Begin Source File SOURCE=.\Animate.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_ANIMA=\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\clinet.h"\ ".\animate.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Animate.obj" : $(SOURCE) $(DEP_CPP_ANIMA) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_ANIMA=\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\clinet.h"\ ".\animate.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Animate.obj" : $(SOURCE) $(DEP_CPP_ANIMA) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Cliglobs.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_CLIGL=\ ".\cliglobs.h"\ ".\common.h"\ ".\geometry.h"\ ".\lin-city.h"\ ".\lintypes.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Cliglobs.obj" : $(SOURCE) $(DEP_CPP_CLIGL) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_CLIGL=\ ".\cliglobs.h"\ ".\common.h"\ ".\geometry.h"\ "$(INTDIR)\Cliglobs.obj" : $(SOURCE) $(DEP_CPP_CLIGL) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Climsg.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_CLIMS=\ ".\lcconfig.h"\ ".\lin-city.h"\ ".\lctypes.h"\ ".\engglobs.h"\ ".\cliglobs.h"\ ".\clinet.h"\ ".\shrnet.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\protocol.h"\ {$(INCLUDE)}"\sys\Types.h"\ "$(INTDIR)\Climsg.obj" : $(SOURCE) $(DEP_CPP_CLIMS) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_CLIMS=\ ".\lcconfig.h"\ ".\lin-city.h"\ ".\lctypes.h"\ ".\engglobs.h"\ ".\cliglobs.h"\ ".\clinet.h"\ ".\shrnet.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\protocol.h"\ {$(INCLUDE)}"\sys\Types.h"\ "$(INTDIR)\Climsg.obj" : $(SOURCE) $(DEP_CPP_CLIMS) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Clinet.c DEP_CPP_CLINE=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\shrnet.h"\ ".\clinet.h"\ ".\climsg.h"\ ".\config.h"\ ".\confw32.h"\ ".\protocol.h"\ ".\lin-city.h"\ ".\lintypes.h"\ "$(INTDIR)\Clinet.obj" : $(SOURCE) $(DEP_CPP_CLINE) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Clistubs.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_CLIST=\ ".\lin-city.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\clinet.h"\ ".\climsg.h"\ ".\simulate.h"\ ".\animate.h"\ ".\engine.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Clistubs.obj" : $(SOURCE) $(DEP_CPP_CLIST) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_CLIST=\ ".\lin-city.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\clinet.h"\ ".\climsg.h"\ ".\simulate.h"\ ".\animate.h"\ ".\engine.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Clistubs.obj" : $(SOURCE) $(DEP_CPP_CLIST) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Clitypes.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_CLITY=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\typeinit.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Clitypes.obj" : $(SOURCE) $(DEP_CPP_CLITY) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_CLITY=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\typeinit.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Clitypes.obj" : $(SOURCE) $(DEP_CPP_CLITY) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Engine.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_ENGIN=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\engine.h"\ ".\engglobs.h"\ ".\cliglobs.h"\ ".\simulate.h"\ ".\sernet.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Engine.obj" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_ENGIN=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\engine.h"\ ".\engglobs.h"\ ".\cliglobs.h"\ ".\simulate.h"\ ".\sernet.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Engine.obj" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Fileutil.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_FILEU=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Fileutil.obj" : $(SOURCE) $(DEP_CPP_FILEU) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_FILEU=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Fileutil.obj" : $(SOURCE) $(DEP_CPP_FILEU) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Geometry.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_GEOME=\ ".\config.h"\ ".\confw32.h"\ ".\lin-city.h"\ ".\common.h"\ ".\geometry.h"\ ".\cliglobs.h"\ ".\lintypes.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Geometry.obj" : $(SOURCE) $(DEP_CPP_GEOME) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_GEOME=\ ".\config.h"\ ".\confw32.h"\ ".\lin-city.h"\ ".\common.h"\ ".\geometry.h"\ ".\cliglobs.h"\ ".\lintypes.h"\ "$(INTDIR)\Geometry.obj" : $(SOURCE) $(DEP_CPP_GEOME) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lchelp.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LCHEL=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\help.h"\ ".\clistubs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Lchelp.obj" : $(SOURCE) $(DEP_CPP_LCHEL) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LCHEL=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\help.h"\ ".\clistubs.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ "$(INTDIR)\Lchelp.obj" : $(SOURCE) $(DEP_CPP_LCHEL) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lcwin32.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LCWIN=\ ".\lin-city.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lintypes.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Lcwin32.obj" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LCWIN=\ ".\lin-city.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lintypes.h"\ "$(INTDIR)\Lcwin32.obj" : $(SOURCE) $(DEP_CPP_LCWIN) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Ldsvgui.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LDSVG=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\protocol.h"\ ".\clinet.h"\ ".\ldsvguts.h"\ ".\fileutil.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\shrnet.h"\ "$(INTDIR)\Ldsvgui.obj" : $(SOURCE) $(DEP_CPP_LDSVG) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LDSVG=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\protocol.h"\ ".\clinet.h"\ ".\ldsvguts.h"\ ".\fileutil.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\shrnet.h"\ "$(INTDIR)\Ldsvgui.obj" : $(SOURCE) $(DEP_CPP_LDSVG) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Ldsvguts.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LDSVGU=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Ldsvguts.obj" : $(SOURCE) $(DEP_CPP_LDSVGU) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LDSVGU=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Ldsvguts.obj" : $(SOURCE) $(DEP_CPP_LDSVGU) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lintypes.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_LINTY=\ ".\lin-city.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Lintypes.obj" : $(SOURCE) $(DEP_CPP_LINTY) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_LINTY=\ ".\lin-city.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ "$(INTDIR)\Lintypes.obj" : $(SOURCE) $(DEP_CPP_LINTY) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Main.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MAIN_=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\animate.h"\ ".\timer.h"\ ".\clistubs.h"\ ".\ldsvgui.h"\ ".\simulate.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MAIN_=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\animate.h"\ ".\timer.h"\ ".\clistubs.h"\ ".\ldsvgui.h"\ ".\simulate.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Market.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MARKE=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\market.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Market.obj" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MARKE=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\market.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Market.obj" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Mouse.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MOUSE=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\mouse.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\engine.h"\ ".\screen.h"\ ".\climsg.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Mouse.obj" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MOUSE=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\mouse.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\engine.h"\ ".\screen.h"\ ".\climsg.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Mouse.obj" : $(SOURCE) $(DEP_CPP_MOUSE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Mps.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_MPS_C=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\mps.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Mps.obj" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_MPS_C=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\mps.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Mps.obj" : $(SOURCE) $(DEP_CPP_MPS_C) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Screen.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SCREE=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\screen.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Screen.obj" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SCREE=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\screen.h"\ ".\engglobs.h"\ ".\clistubs.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Screen.obj" : $(SOURCE) $(DEP_CPP_SCREE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrglobs.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SHRGL=\ ".\engglobs.h"\ ".\common.h"\ ".\lin-city.h"\ ".\geometry.h"\ ".\lintypes.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Shrglobs.obj" : $(SOURCE) $(DEP_CPP_SHRGL) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SHRGL=\ ".\engglobs.h"\ ".\common.h"\ ".\lin-city.h"\ ".\geometry.h"\ ".\lintypes.h"\ "$(INTDIR)\Shrglobs.obj" : $(SOURCE) $(DEP_CPP_SHRGL) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrnet.c DEP_CPP_SHRNE=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\config.h"\ ".\confw32.h"\ ".\lin-city.h"\ ".\lintypes.h"\ "$(INTDIR)\Shrnet.obj" : $(SOURCE) $(DEP_CPP_SHRNE) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrtypes.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SHRTY=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\typeinit.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Shrtypes.obj" : $(SOURCE) $(DEP_CPP_SHRTY) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SHRTY=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\typeinit.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Shrtypes.obj" : $(SOURCE) $(DEP_CPP_SHRTY) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Simulate.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SIMUL=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Simulate.obj" : $(SOURCE) $(DEP_CPP_SIMUL) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SIMUL=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Simulate.obj" : $(SOURCE) $(DEP_CPP_SIMUL) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Splash.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_SPLAS=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Splash.obj" : $(SOURCE) $(DEP_CPP_SPLAS) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_SPLAS=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Splash.obj" : $(SOURCE) $(DEP_CPP_SPLAS) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Timer.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_TIMER=\ ".\config.h"\ ".\confw32.h"\ ".\cliglobs.h"\ ".\common.h"\ ".\lin-city.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ "$(INTDIR)\Timer.obj" : $(SOURCE) $(DEP_CPP_TIMER) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_TIMER=\ ".\config.h"\ ".\confw32.h"\ ".\cliglobs.h"\ ".\common.h"\ "$(INTDIR)\Timer.obj" : $(SOURCE) $(DEP_CPP_TIMER) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\transport.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_TRANS=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\transport.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\transport.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_TRANS=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\transport.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\transport.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Winmain.c !IF "$(CFG)" == "lincity - Win32 Release" DEP_CPP_WINMA=\ ".\lin-city.h"\ ".\common.h"\ ".\generic.h"\ ".\mouse.h"\ ".\lintypes.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\cliglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Winmain.obj" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" !ELSEIF "$(CFG)" == "lincity - Win32 Debug" DEP_CPP_WINMA=\ ".\lin-city.h"\ ".\common.h"\ ".\generic.h"\ ".\mouse.h"\ ".\lintypes.h"\ ".\cliglobs.h"\ "$(INTDIR)\Winmain.obj" : $(SOURCE) $(DEP_CPP_WINMA) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lincity.rc DEP_RSC_LINCI=\ ".\SMALL.ICO"\ ".\lincity.ico"\ ".\resource.h"\ ".\generic.h"\ "$(INTDIR)\Lincity.res" : $(SOURCE) $(DEP_RSC_LINCI) "$(INTDIR)" $(RSC) $(RSC_PROJ) $(SOURCE) # End Source File # End Target ################################################################################ # Begin Target # Name "lcserver - Win32 Release" # Name "lcserver - Win32 Debug" !IF "$(CFG)" == "lcserver - Win32 Release" !ELSEIF "$(CFG)" == "lcserver - Win32 Debug" !ENDIF ################################################################################ # Begin Source File SOURCE=.\transport.c DEP_CPP_TRANS=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\transport.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\transport.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Fileutil.c DEP_CPP_FILEU=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Fileutil.obj" : $(SOURCE) $(DEP_CPP_FILEU) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Ldsvguts.c !IF "$(CFG)" == "lcserver - Win32 Release" DEP_CPP_LDSVGU=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Ldsvguts.obj" : $(SOURCE) $(DEP_CPP_LDSVGU) "$(INTDIR)" !ELSEIF "$(CFG)" == "lcserver - Win32 Debug" DEP_CPP_LDSVGU=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\fileutil.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Ldsvguts.obj" : $(SOURCE) $(DEP_CPP_LDSVGU) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Lintypes.c DEP_CPP_LINTY=\ ".\lin-city.h"\ ".\engglobs.h"\ ".\lctypes.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ "$(INTDIR)\Lintypes.obj" : $(SOURCE) $(DEP_CPP_LINTY) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Market.c DEP_CPP_MARKE=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\market.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\engglobs.h"\ ".\geometry.h"\ "$(INTDIR)\Market.obj" : $(SOURCE) $(DEP_CPP_MARKE) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Sermain.c !IF "$(CFG)" == "lcserver - Win32 Release" DEP_CPP_SERMA=\ ".\config.h"\ ".\confw32.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\timer.h"\ ".\fileutil.h"\ ".\simulate.h"\ ".\shrnet.h"\ ".\sernet.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\protocol.h"\ ".\lcconfig.h"\ "$(INTDIR)\Sermain.obj" : $(SOURCE) $(DEP_CPP_SERMA) "$(INTDIR)" !ELSEIF "$(CFG)" == "lcserver - Win32 Debug" "$(INTDIR)\Sermain.obj" : $(SOURCE) "$(INTDIR)" !ENDIF # End Source File ################################################################################ # Begin Source File SOURCE=.\Sermsg.c DEP_CPP_SERMS=\ ".\lcconfig.h"\ ".\lin-city.h"\ ".\lctypes.h"\ ".\engglobs.h"\ ".\sernet.h"\ ".\shrnet.h"\ ".\simulate.h"\ ".\engine.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ ".\common.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\protocol.h"\ {$(INCLUDE)}"\sys\Types.h"\ "$(INTDIR)\Sermsg.obj" : $(SOURCE) $(DEP_CPP_SERMS) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Sernet.c DEP_CPP_SERNE=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\sernet.h"\ ".\shrnet.h"\ ".\config.h"\ ".\confw32.h"\ ".\protocol.h"\ ".\lin-city.h"\ ".\lintypes.h"\ "$(INTDIR)\Sernet.obj" : $(SOURCE) $(DEP_CPP_SERNE) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Serstubs.c DEP_CPP_SERST=\ ".\clinet.h"\ ".\lctypes.h"\ ".\engine.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ ".\lin-city.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ ".\lintypes.h"\ "$(INTDIR)\Serstubs.obj" : $(SOURCE) $(DEP_CPP_SERST) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrglobs.c DEP_CPP_SHRGL=\ ".\engglobs.h"\ ".\common.h"\ ".\lin-city.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ "$(INTDIR)\Shrglobs.obj" : $(SOURCE) $(DEP_CPP_SHRGL) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrnet.c DEP_CPP_SHRNE=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\config.h"\ ".\confw32.h"\ ".\lin-city.h"\ ".\lintypes.h"\ "$(INTDIR)\Shrnet.obj" : $(SOURCE) $(DEP_CPP_SHRNE) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Shrtypes.c DEP_CPP_SHRTY=\ ".\config.h"\ ".\confw32.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\typeinit.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Shrtypes.obj" : $(SOURCE) $(DEP_CPP_SHRTY) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Simulate.c DEP_CPP_SIMUL=\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ {$(INCLUDE)}"\sys\Stat.h"\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\cliglobs.h"\ ".\engglobs.h"\ ".\config.h"\ ".\confw32.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ "$(INTDIR)\Simulate.obj" : $(SOURCE) $(DEP_CPP_SIMUL) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Timer.c DEP_CPP_TIMER=\ ".\config.h"\ ".\confw32.h"\ ".\cliglobs.h"\ ".\common.h"\ ".\lin-city.h"\ ".\geometry.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ "$(INTDIR)\Timer.obj" : $(SOURCE) $(DEP_CPP_TIMER) "$(INTDIR)" # End Source File ################################################################################ # Begin Source File SOURCE=.\Engine.c DEP_CPP_ENGIN=\ ".\common.h"\ ".\lctypes.h"\ ".\lin-city.h"\ ".\engine.h"\ ".\engglobs.h"\ ".\cliglobs.h"\ ".\simulate.h"\ ".\sernet.h"\ ".\lcx11.h"\ ".\lcwin32.h"\ ".\lintypes.h"\ ".\geometry.h"\ ".\shrnet.h"\ ".\protocol.h"\ ".\lcconfig.h"\ {$(INCLUDE)}"\sys\Types.h"\ ".\config.h"\ ".\confw32.h"\ "$(INTDIR)\Engine.obj" : $(SOURCE) $(DEP_CPP_ENGIN) "$(INTDIR)" # End Source File # End Target # End Project ################################################################################ lincity-1.13.1/old.Makefiles/lc12.mdp0000744000175000017500000004300207740174123014116 00000000000000JSG0Z˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙à˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙O-Y#˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ü˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ vcbks40.mvbğ“ t x, int y);so ('n ‰I+Qöż$0p$p‰_ ˙˙˙˙YNàà\Œ_$p‰_+QöżhUrPdOy€Oy bğ“ t x, int y);so ('n ‰I+Qöż$0p$p‰_ ˙˙˙˙YNàà\Œ_$p‰_+QöżhUrPdOy€Oy lincity - Win32 Debuglcserver - Win32 DebugË]@ Control-C@ Control-Break€Datatype MisalignmentÀAccess ViolationÀ In Page ErrorÀ No MemoryÀIllegal Instruction%ÀNoncontinuable Exception&ÀInvalid DispositionŒÀArray Bounds ExceededÀFloat Denormal OperandŽÀFloat Divide by ZeroÀFloat Inexact ResultÀFloat Invalid Operation‘ÀFloat Overflow’ÀFloat Stack Check“ÀFloat Underflow”ÀInteger Divide by Zero•ÀInteger Overflow–ÀPrivileged InstructionŭÀStack OverflowBÀDLL Initialization FailedcsmàMicrosoft C++ ExceptionWatch1Watch2Watch3Watch4ò˙MLJLso QHˆeI+Qöż$0p$p‰_ ˙˙˙˙YNàà\Œ_ $p‰_+QöżhUrP`ëw|ëwlincity-1.13.1/old.Makefiles/scoMakefile0000644000175000017500000000165407340322057015023 00000000000000# scoMakefile for LinCity (c) I J Peters 1995,1997. # Thanks to Simon Baldwin # DO NOT INVOKE THIS FILE DIRECTLY, it is called from the Makefile. # Edit the Makefile to point to where you want the binary and libraries # to go. Then 'make clean', 'make sco' and 'make install'. #LIBS = -lXext -lX11 -lm -lsocket LIBS = -lXext -lX11 -lsocket -lm OPTS = -O1 -DSCO -DLC_X11 -DLIBDIR=\"$(LC_LIBDIR)/\" INCLUDES = CCFLAGS = $(OPTS) $(INCLUDES) .SUFFIXES: .cxx .o .h .cxx.o: CC +.cxx -c $< $(CCFLAGS) SOURCES = main.cxx mouse.cxx screen.cxx mps.cxx typeinit.cxx engine.cxx \ transport.cxx market.cxx help.cxx lcx11.cxx OBJECTS = main.o mouse.o screen.o mps.o typeinit.o engine.o \ transport.o market.o help.o lcx11.o all : $(OBJECTS) CC -o xlincity $(OBJECTS) $(LIBS) # -------- End of scoMakefile for LinCity ----------- lincity-1.13.1/old.Makefiles/sunosMakefile0000644000175000017500000000233307340322057015401 00000000000000# sunosMakefile for LinCity (c) I J Peters 1995,1996. # Thanks to sarum@softdisk.monosys.com (David Allan Finch) # DO NOT INVOKE THIS FILE DIRECTLY, it is called from the Makefile. # Edit the Makefile to point to where you want the binary and libraries # to go. Then 'make clean', 'make solaris' and 'make install'. OPENWIN = /usr/openwin CDE = /usr/dt LC_XFLAGS = -I$(OPENWIN)/include \ -I$(CDE)/include LIBS = -L$(OPENWIN)/lib \ -L$(CDE)/lib \ -lXext -lX11 -lm OPTS = -O3 -DSUNOS CFLAGS = $(OPTS) $(INCLUDES) -DLC_X11 -DLIBDIR=\"$(LC_LIBDIR)/\" .SUFFIXES: .cxx .o .h %.o: %.cxx gcc $(CFLAGS) -c $< $(LC_XFLAGS) SOURCE = main.cxx \ mouse.cxx \ screen.cxx \ mps.cxx \ typeinit.cxx \ engine.cxx \ transport.cxx \ market.cxx \ help.cxx \ lcx11.cxx OBJECTS = $(SOURCE:.cxx=.o) all : $(OBJECTS) gcc -o xlincity $(OBJECTS) $(LIBS) # You'll have to hack the top Makefile if you want to use purify # purify : $(OBJECTS) # purify gcc -o xlincity $(OBJECTS) $(LIBS) # -------- End of sunosMakefile for LinCity ----------- lincity-1.13.1/opening/0000777000175000017500000000000010073426331011713 500000000000000lincity-1.13.1/opening/do_image0000644000175000017500000000017007340322061013312 00000000000000pov open cp open.tga open_0.tga octree -C=252 -W=640 -H=480 open rm open.tga mv open.2d ../open.tga gzip -9 ../open.tga lincity-1.13.1/opening/8x8thin0000644000175000017500000000400007340322057013061 00000000000000~½™~~˙Û˙ç˙~lŝŝŝ|88|ŝ|8888ŝŝÖ88|ŝ|8<<˙˙çç˙˙ŝ><~~<$$$$$$’’r>c8DD8Ìx~~~<~~<˙8|TT|8 ŝ 0`ŝ`0@@@~$f˙f$8|ŝŝŝŝ|8$$$$$~$~$$>@<|bd&F0H0Vˆˆv  @@@   D8ŝ8D| ~ @8  @ ~~B?` .11.|` ,2""b08BB<` $(0(&08vIIII\bBBB@<|| BBBF:AA"AIII6D((DBBB>|| | ` 002L"AA B8088<@@<@@>$ p B|D(||ĝLxDODEĉ|` 8 ~8DD8| @B<~@@~BÄHö)CŒBÄJö*_‚$H$H$$H"ˆ"ˆ"ˆ"ˆUŞUŞUŞUŞÛwÛîÛwÛîôüôôüôôüü˙˙˙˙÷˙˙÷˙˙÷÷˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙1JDJ1HHH0DDDz@@€3L|8DD8|$B~B$$BB$$f ŝ><~~<ffffffÛÛ{>c8ll8Ìx~~~<~~<˙<~~< ŝ 0`ŝ`0ÀÀÀŝ$f˙f$<~˙˙˙˙~<0xx000lllllŝlŝll0|Àx ĝ0ĈÌ0fĈ8l8vÜÌv``À0```0`00`f<˙ÌÌÌüÌÌÌx00000x ÌÌxĉflxlfĉ```bfŝĈîŝŝÖĈĈĈĉöŜÎĈĈ8lĈĈĈl8üff|``xÌÌÌÜxüff|lfĉxÌàpÌxü´0000xÌÌÌÌÌÌüÌÌÌÌÌx0ĈĈĈÖŝîĈĈDl88lĈÌÌÌx00xŝĈŒ2fŝx`````xÀ`0 xx8lĈ˙00x |Ì|```|ff|xÌÀÌx |ÌÌ|xÌüÀx8l```|ÌÌ| ĝ``|ffff0p000x l8``flxlfp00000xÌŝŝÖĈĝÌÌÌÌxÌÌÌx|ff|``|ÌÌ| Üvf`|Àx ĝ0|004ÌÌÌÌ|ÌÌÌx0ĈÖŝŝlĈl8lĈÌÌÌ| ĝü˜0dü00à00à0000àvÜ8lĈĈŝ6ff~ff|``|ff||ff|ff|~``````8lllllŝĈ~``|``~ÛÛ~<~ÛÛf<~ÛÛÛ~ff<ÛÛÛÛÛÛ˙ÛÛÛÛÛÛ˙à``|ff|ĈĈĈöŜŜö```|ff|xŒ>ŒxÎÛÛûÛÛÎ>fff>6fx |Ìv<`<~ÛÛ~f<ÛÛÛÛ˙ÛÛÛÛ˙à`|f|ĈĈöŜö``|f||>|ÎÛûÛÎ>f>6ff~`|`~$E¸òS@… *T¨PĦB… *T¨PĦB… £„£*T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB…Šġ*T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB…Šġqn냖€ *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦb@ŝKdz× ¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB…Š B+à—àÄpŜA… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨X6X6++œsPĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… ż„µyÌÈ"dƒ "wvÚ*T¨PĦB…:m¨tQŽĤ… *T¨PĦB… *T¨PĦB… *"Gít}í=z{£˜ â ?¤¨PĦB… ġìTï/=“–… *T¨PĦB… *T¨PĦB… *G *ÔÙ‘3 hcyċl^éR B… ġÜT{1¤´€ *T¨PĦB… *T¨PĦB… *šG *T¨PQmÎ&˜ *T¨P?Ií/èŭġ‘–… *T¨PĦB… *T¨PĦB… *~G *T¨PĦŝŝ]ѝl{ċŒîâPĦBŭUžŠX*T¨PĦB… *T¨PĦB… *TÄ ŽT¨PĦB…úïŽ6@ B… *T¨PĦB… *T¨PĦB… *T¨PĦB… *TìÖ˕­aÌ*T¨PĦB… *T¨PĦB… *T¨PĦbU B… *T¨Œâ>c€h ¨PĦB… *T¨PĦB… *T¨PĦB…Ê|ü}>>‰ÍšsÔ B… *T¨gÚ·*T¨PĦB… *T¨PĦB… *T¨P™‰ĈŞ€ *T¨PĦ22úèÈH.˙ƒƒüaâ_Ż9CżàZ *T¨PĦB… *ÔOSµéÇcUH-ÀuñbĵÄöĤ~kƒ¸ë›×ÑuĦB… •LuÒ B… *T¨Œı>92ú×ˑèS=údT¨‹g³ñ¤0T¨PĦB… *T¨çĦ:u1–… *TŜÉdŞ*T¨PĦB…ʘ‹‘T¨POví:£ ƒ2˙1e8Ñ B… *T¨PĦBŭ×ŭëè.&Ò´PĦBe֌¨PĦB… ê?;†1ŒısA… ê‰=“OÙ ÊĤ‹ħt2¨PĦB… *T¨PĦJ”Ğ鐺ĦBeyĉŭĦB… *T¨ŒaêßK‘)ı*T¨P?ï†(}DĠr…|Žš›ò4-T¨PĦB… *Ô}`|Ñ4,Tf ˜Kg›™˙‡ *T¨PĦžuĴĜĝĴ÷MáèfPĦB… uöS%}ÈéŽ[ĵh” ¨PĦB… *T¨PeJİ„ ù8 ŝ›3ŜçöÎ6•ÎÔ?T¨PĦB… ßbĥŬÇŻXÑ B… *Ôßn|Ò ññ˘ŝġ´PĦB… *T¨PĦB…Êt÷ÑϟrièPĦB… *TĈ\ċïäĊqbßô&pn@… *T¨PEFŠÚĈ‹1?-ˆœ1£+µp B… *T¨PĦB…ÊrT¨PĦB… •‘Ñ_˜ï>#ıuTgT¨PĦB… U„êŭñ .~Ä|ĥ\g4ZN B… *T¨PĦBemë*T¨PĦB…ÊÈ蛞½Ĵç9N4¨PĦB… *T¨˙¤B¨PĦB… *T¨PQ,è PĦB… *TFFô¨PĦB… *T¨PĦâ—`@… *T¨P˙ÒÈÈĥĴ!4×”—i °`Á‚ ,ĜgXk†LǑ2ËsT¨PĦB… *ÔóÎŻ{VpèaPĦB… êIWóϝùì_/'ŝ‘~Ì$5X°`Á‚‹Ü°<ş9™Î,žÇ_ĦĉëğR4í9&†¸€ ,X°ç| 6ĉ„½^ŒĴèl`Áò@ *Ôè îdÛ+—\MNŻ "ıì˘”áĤ,X°`q,1%¤OHĤƒËÔċCĤÒEÓ´H!`Á‚ ,ĜsJ!rê†>á6Ğ“u V:ÀŠ÷1ŠLA… ?ĉS~ Ô#ï_‘á"E°`Á‚ŭCò"X°`Áò<ġ=Şğ˜H₀ ,X°`O邜nnEnf_N1qlóÇWP˜|–BŽ\`E7 *T¨ŒH?0Ó'Üĉ3’6Qĉ ìpÖuR…Ü$Ĝóc™½‹ġhÍE9š?,X°`Á².ùĦ÷ŝñœôa䓏Mġû’W!ñFF *T¨Ld‰£hùħî§ÈG.1#Ÿ€Eç@ç K,XžŞ~†êì…"’VâfĊÉ-…sd‰aá,X°ÜâÁ2_*ÏÔ`ÁŝĴ˜Ħ„¸Zˆë„Ë´S6Œ“Üċ\\Ħ^|2ï,X°`ÁòD *T¨P™­ v+VĴâêżžSBn›Y“ ,Xô°`y˜‚ •KĜżƒġçZàÚ\m„Ĥ+Ĵœáä, …:›ŭSĜ+rÂÍġÒ¤„C§/7QKiUŝUú­›E0&-mxŭ‹¸'ŝ™ÛX°@>\(AUË3?T¨PĦBEU‹Sò'U•í‹Ċ""ĊŸšZÍ ^ó”—Ö/Í/¸ĊF†yaе(SİN0)}Ğñĥ?ŭkSžċµ]ˆàÍĥ×/mĵ:­š)Û8Ul΀ĴôKì­'JÚM–éĴĦ€û7³fJêĞòóQ;Ñ0,ànáNğCĜŜö żZ†Ğ½ 7 mo 2\wq;ĴŸIqÓBòԆÈ&÷·œmjy97§§P~t”1-‘E-ˆ,ĥˆ,Ħá1<ˆ,ŬíßÚV&Ê8ìAÈvzÈpIĴ½éRGéPŝUĥqöˆe/f³r;7Ün~ ߍžç/9íĈhe½÷ï£ß•S'<ФÔÈ9Nĝzp.ïOŞK,³EĜ*ż˘¤ıْì ĥŒôĞ[ûráç1Ş…Óƒg1b¨½*ĤċŭXŠáj ŭ^ŒpQĊ)·1FbĴh`:Ŭc¸ùQ׋1ÌĉĤ{c8Żm#†kĈhó#ö#½U‰Óĉ½êé1_‰ážİ^–ĥ³ŭ˜7žk[ù7ÚÊ| –µX¨PĦB…Šë‚”ÂĝèskŠJhJóL+ĞkéßR>ZùE²’RÖ:G˙¸oeÂh4P_¤{Öùy|îëüŻ?¸İċO–$×£ñ]]À‚+Œ)/ÛŻĵêT`°`Á~{”Ò‰ğIëùOúAémUŬ•D:Ôï—L!Îӟh]WŞ×ӟÔ(ĥş)F‰%JMÑşE/éİy”T ;Ëħ’e]—!]]Ñ-í]£ôA"ïÏäÖ™ĞpB½ŬٍJğeŝ‰y$ñŒöË·žu_żĴtË.Z˙´?Y[ġ4‹>Ċ0ß0Ñ%§6EçrŠZ5¨Í2á*7ŭÇèt\öÜüHĠ:öQŭçÉíZĉ†ìL&²ħ%K”K]Tżv@ߞ{™< œ‘̳!f T¨PĦžÁuRÚ’â¨Ħ’ ’üMCEͧs^[Hĝí)NĦÖçʈħ]ĝ̔ô89x³Eċw2îóÂħVħĥëK9‡H×7ınílkáP^Vĵ~wÛ£ün§Dİ­S(ûÑŬırÔHM ‚ET ì›˘Êöäˆ*`Áb”|Ä(é֍[ò83s=ĵ)Gc­pÈ}= %JD(IBĤ‡’*ÀdĥMQ˜½Ï0ŞĴÖ?›˜ËK¨ĝJg +9 kYÜÙ§î[äT{Jt÷1´vî’Üú½ħ׏sï³ŭÓĵRƒPĞ+)_z\Šê›8 ĵÏ­rëáİ_é#ğİDµğWî·\C_YI _òĉŠ™K½l¨†ıò)µi…çD°,C… ½äqÏGvç'è„È‘2€}AbQ_–XÔıÖĥÏĈM—Û›mċ`żXLÈ=ç/×òúUçdu*ë ´Y2ƒÎ’'Şf>‹îÔµlüsŸ%W%żúżyôYZsgyì6q›ç—îk.”Ĵ: Ò-IwNpĴŬmnB:uÖßcI[ĵ2qĤq\ZIħuż51H÷UO1U)(ĉˆo™#δġ×xÒöEO‰³ ŭßŜƒ¤F;Ş’°İbŽr)?Ôèû“ên(W_§~Í2[aïûÙlĝ´’›ċuKeġħu˙ĊÉéꌒJúŜFż.£D1òşa‡„ŻSÍŞ÷¸y=\~Ms)ÇRÏ5—´¤ı„„ĉ‚ĉÍ*T¨)ŻI˙jûĈó ?ˆ(`˙Ĥß²}NċLIZN–â;É_^7D’œ{"¨µ¨Ġ)‚\Ÿşh-ŭ™1OÓÒ˘Ê›XO´–§V‹˜fr(ZNÙħÑżchḬ̀`Á~;YjÄ\ ĊdQ1I‡Ŭ’fĊğÄ΂„QìĈ“¸ìħ²#^F2q[GŻûġ•“ĠcQכŠž—ŜôŭiŭLĊêĉ;˙Dê~Y2/Ğ,ĞO/£ŻO)lk™ÏZĤöĥ´.zÛĈŝä'FÏoĞÇ+E¨b™ŻÍ:zɨ\²’ĤğM[ż[mIĞs.ÂÙû k´İBDh ıċÇäĞk‚ŞİÜRzÛXSŞGÒ£ĥ ĥ€Em * }áè·ÜnÁžße9l}á¨úĠI9™"ó“.‹’CûĠ¨ë„vNîÜÔeÉoBŞğĞ˘ÍÈeqĊeÉyTB‰·"³(§ÊÌ·^š* uBìÙ,\ž s˳àö÷”–SÊ2J J X°`QZÀ‚ŭ%÷$çĉ0A^?éÏ>b§jHIGÒ8ëzYU:l}Ê[+ż£Ë0ڄİ˘MC\#Ĉ$Ċßıh>:hí/·ë“1“89íÁÜi1u<Ĵï˙7ġĈĞC_Ÿ5ö-ž÷+IìĞr‹˙Î8VMĉÌV“C]„Ĵ“$&ú,;ôšÉĦäI&UÛ*pfĉËp‰ Ġ`ñ ïĦœm:'c.†ħE×(nĉÉX½)ʃ(°›%šħƒ‹1FĤ˘YŽaŭ|Oôdö²m‰ĵ£î‡E›#X#³i|ìDlËX°,ÁB…Šê2~îw´-T4°`ϨımîßÊ­òVú–âЉĴ~Ê_)HäÄ<š—É[d3’]t•]t[vqMÙ%VÙe=sËË.ÊjJj44°ŒÀ‚ŭvşXv\ŝˆŠqÙ(šb£’ҏVï™DâTIqzÁIÑŬŠ“’³Y¸¤ĤD™Y)Ô¸f9Èâ!Rl ˙ÊtKŸĦÊjĞv cdżéAÂż5Ž}bÄğù˘ş˘”?QĦ.ŝuöR³@VmGm”_^÷RÒÖg‡V%”ßż#ú·Œ—ï%AùIßem£U^U%­İâ’^ši[âSQĤM˘H$†íώ߽ Êğ4ŸÇ˜üct§[ıŝıĥ#qÀ#ŭŻ“Ûİ[ìsÁè^µî™53*2ġGôD+'$ó‰×*Ôššó{jMÓBċN ìj%˘W×ŝÉJD'ËŜ²Ĉ}CéÄĵA£Ċ}8}ËŞÑò“füŜç.ŞädŻÓ' jñï_•CV ½LF;Áf ì›6‹ßéÌ6Ë9¤'FÖ'$˵Ĉš|âïCĤPċ“QŠğ˘^ˆŜœċmġD}"!JĊ*Ÿwí]ċdû‰€Í˘‚ŸÙ,C¤-drŻÔ…sĉñġ˘9i­fŽÓe^&wrĠdŜÙùÖs=³&’9o_öL6ÏlHÔò u‡FY[ÂB>•UĊîe]œ]1ùy\ÁÔA‡Ž35VxVˢ*T¨ç§Şŝ~îhY¨h+`Á~I[yu1ádzħ0_$Ş­ş%rBŒ2ë³;ĉú´[gH—ğ”bë´%jÑ]ZÉkM°ÙZ nôqyçxŭUSVß5-Œŭ‰^:1$}M1A^A^ıükYÔÀ‚ŭv&Żlż‘zĈĈ™ğڑÇÎ-û%.%·sSÁĕWÙ½jĜİ-˜¸yŒüü]w³*66‚ĜAqlżéu˙·Şl}…Ĝ,'³Mĥ?J^éH-â—MÄ4–=ÜúnŜÛößm~ˆ—°YÂÜfݵbôbòŽ8ÊÇ"d³$l–}6‹ĞG³ğšÀÎ.0²Ĝ,Ĝ,`ħY BŭÛT­nOT4-Tt°`˙Î²}~&EkÎ7ż£_Íİ1ä™u VŞ E9Ğċ t{êÙÄŞµĝaµ\'Êlĝ\j qğÓò†rb×Úèm‹Í‚86 ‡ ,Ĝ…óJLáĝLĊ—ë-wÖqŞ+”x6]Ħ›;ĈN„…ˆK!ÂTğ8*D^—uedšÙ£;(ˆíj<ˆz3ˆŞAĉ5xş%Ä·ƒ¤Ċ=QŻïI\Va”ŻşîˆW|.³I+"Œ Ĥò::m&Gı>*Kr—ŝ|*ç˜-îK s÷Ċ.¸/ıi9˘Bꋠ òEĞfĉĝÍÛĴ6?fëĵĴĴÍîGí´ġIûĝbBï‘SÜÖ.}?žµKµ–ôó\BzÛĥGħV‘ğ²ŸĉERŒy]ˆâY^^Ì>/f°œÔì`Ĥz0—RöàĊàĊ€Ċ‹ ġëTM*JB…Ê},ËkBËĴ‡u_‘m^÷J’˜ħ’êÂĜnpatualyöƒ £Ġȅ)+ħ۟ßeX›ËóÙá:’í0ġšßÈ]j¨ô޳z^&–€Ċ„ᐁûiĈI7„jX09mGÎ÷ĝ½²¤sNÜ˙U6k>¨1vÛmŜĥpB²rĊmÉjIYŞQê‡V·Ï]Ídò´Ğ\TÚĥùŜĵ3²jŽ@CMób‹ÊR{7JBUáħc";[–˘g}xXž·úĠċù$gÏÈĦxÄzòLáŞŜ2ݲŞ5/TTSğtcúÍ:EINŸyÄލÚ(Zü˜~òer„œ—´_ÏB•ÚI¨çʛN‹mT°sCħ3Ó Ì˘Ó§%\%Ô= R•]·èZ„qC.ħó´5f$Î%Ԑ† +:­MsHo³FÜ+AÌĥ şÑ\£ ÖíIß;)ÉĈ2c, ´P˙5³OÓB…Šìoc'SC4îÏcĠ2ö@Sċdĉ+ĝù`ǘ™îÈqŽÊ Èĵ,ÎĜ/aO‘XEÛżsàS>LŜm¤(9ôşìR3ıtwCaäE,äqİëTĞ/ÑżĴ‹$1%OqQŬŞ2¤pñn_ ½û`Ÿgċ„dUeµûÇÍ`u6e{~TI4zËaŠ Ú"”%×1ZĴl§ğê•ŞgwyċĤ˙ û–/~Ħk;ï~ž,˜´ċ7ŽèÑYPÎHfo*T¨PĦBċ6 ,Ò ĜOş0Żb“ÖŞÙĵó„ìÜ £X]˘XWûm~™/5l•²òs—·#ċl•GíĉXt‡Ż, XĒĊg*ĦĤPË •:żÖoĉÛÜâje]Vu ä¤ [†µ”ĦÏû~X£ŻI‡K·{ íüĤNòĤÓ\ˆÒĤšŞf÷ââÜbñCğ`ħì'ñŒòÄaİİwR7wXÔĉ<-'3M3´ˆIF(m3_Ş ù•‡#ğ_MrJÑ6ĝš âĥKŞ”ŞUÎB£ĦM#ÁYîÉ:N݃!Òùò€"—mçkş{›=í€Úı\zìñ´7×ôĉvħÒ÷qŠÊI_oG%·á}Œ£³­Ĥoı5Tı*ñuğtĦĤK°›îEš‹Ÿg éëĦáD˜a#·²ù‡5”.şïuĤÔĊ³ñìĤŽK°ġxĤF½ûx&ħĥAoaÚ½*T¨PĦBċ6 ì,ïij_oXĠÙŬħT ¤Íh%¤ù¸r\%VcpÛsħ#ÏО‹<—0ò\BËsħĠsYÍÊòFğŸĴéáÂŬŜKÂA÷’)7ş=çĈŽ„QBĊŝ”û¸'¨Ì³ÜÓ3o?3Òw”d—_'ë­Gĝ4-˘’‹ —r[ħ2NôKyZ&%‰jQ˗Kù§gärI˘ _ĠQÖ^-ĤşèûáÔÊÎ İ…d-ŭèâሺ#Ş7Póî=\¤‘#żq'‹ĊK'Ŭû–.T‰"żMŜ~ŬDGġ;è]‹ZXÙZXvóµWùO¤jİÙwlÜĤ%İá ŒĈ‚Ĉ*T¨PĦ˘ħ€ûħ_ÉÒÒ?“%;5Rĥŝ¸E‘%”Öq7™ç1ĴT²=›užEÛáġWgĉÉZ’½Î>?wX2àŝŽËz²–ƒÎÂ#:Ĝ?‡ÍoĈşVŝo öíÌEd)ıPU§ô2ÛÒAúK¸OS×e‡şĵiÓ}á;ĜĈ˘h½néF÷ÀĜcm J˜aíU_ê Ċ$£Ìċf-L*a†wGu]Ĵ5%Œj„É·Ö­aúó7L×jêŜ(ÛS—~Uĝµ½)+˘eM|xÙÖŬ#ĝ4O‘ğËP#`cˆÖRHi­f‚ Ûmo­T*1şš¤žF*_͏‰ĞKöëG¤ğLjfCĊPb´NsPĜâ§AÔGv%=q ĤÄP3ġRl#FY 6†şş6NqyVìh”ò§öÂAˆ EŸ‰‹Ŝ֔?ŻK(Û[ü‡Ì™ gÎ,'Ÿ ·<ñˆÁë´5Ìp÷Às9öӍîš÷<5—j­ Ssñ¨nÖ(ŭÈÀÇMD£1u°‘ĤƒŞwéCÊî&1F}\wéoÛFż ×ßĴyäĉtôÜq? Ĥk‘‘," T¨PĦBE¤ ‘ĉ¨Í•³]h~³–Ò'¸M‘Ĉ¸şB L¸¸[w²Áhû_Ĝ: 0işŝS-mÒĜS Ltj°ßÄhğàÑ ĵ˜nYxIċ^ MQêúy(‰B+ @ŝ°ċğ¨Ĉ [?+aâLĞqĦ„q0qF}Ħğĵ‘!F¨w§mĜĴĴĵ²–úĞQX\¨éBÒŝ‘Òİ.O[[:gû{eıÑ\ġ’-M-‘$&8C9QîVD½ tċ#ß5ì&·W‹Ĝm‹ĝŻy(gÌ“j ĞûÙ?úŝ\pħUäÀoùè0j93Œ ƒòƒvË)”Ż&ˆ9Ĉ>9”ĵáFcmġ Š9›ĥYgt \ŬM70˜~èòÏoĈħާŭŞĈŬ8A&NoÈÇ 4¨ĞĜË)Ġ§ŒċµµáÄM9ß2œˆo=Wĥò`/•#ZŸ•T×ԗjĵ°ÑvùñÇL&IÀb¸@… *T¨ÜfÁ‚ŭ–áòïaŻÈiœŝS?äNoWäW‘ï °‡Ù€ÙƒŻ]Ĵ0RçÓÌµUà—ÉIŒÜší™Ê.Ħ)ğĝ=²‹[“]òLqïú.ß,Ĝç>˜Ò&$'&d@ŜĦ§¸šŽE—É^ĞG›q;àQÏS&(g6ë)NÏ£tó(ü%ÊİïÚ)Ÿ’^ŽÈyZA-c”7ç²]ĥ6ħ@-¤—ÑëëRş+ÙuRšZ.ZDžjHċm=^•şŜjö… “rk5żR [WàmcÙ¸r/+)k-˙29‰‘7Ĵ(—´LYHœÖCеRjċeŠS%;cçĵıĜŭNĤq·ĠĴ+Ëi{Ÿ)Ù¤¤ê;Ĥ“qsC!p'Î]ÓZÌ\kñ‹ZËòU(ó•{[9I[oğÇ×>zY4ħbä–ÖEa …*T¨PĦ˘°€‹ÂB‹}]×èÄDîŒòŠy˜°Ş×ua2Ùy˘Ŭ=_ümRy+ŝZi>È+×µÒúâĠaŬUhj6Ŭm ܕĦî‹ĞZï<.j’ŽâÊ˙0ïżövxµŠ‘ılŭsŠŝùHldµÁCİĠA´.³òĥÜ(²58÷Pìè˜5='ĉĦĝż³TĝsĜI6³¸ğV ͎³ĉ›Û[? _ßŜŻ.ŞX.ġ ‹Ż+‡‚?zızIoˆds‰ċ’”ü,›Kô Ù\Ò`żw2FG'ĉŠœ‘ĵËoñ ~Klù-AĜoÉôšĉH]'bıÜêٟĈrûUU™˙xµé úèú2Ù|˘²ĠÑ\Ác¨ĥÄóşˆ‘ë ½üZo‹xĥ9ĦZa‹ÍPù 7[ċgŞ6Ġ²ŒGÂİ1ŜVUš(C‚ÁìĥMiB ·Áz­Š£(q1J#…Œ^T3ìe´ Ġ›ĠĠˆâĥGöEÏ˘h½˜)e{q̑Ìbf2K}4ZNş3‰˘ÄöċÌ>>s4`Qf B… *Tn³`Á˘Ì Ìœ_™QĞù^r~–˘°8ĠPXúOÔ½RE^+,Z™Ë}Z ç†iċ{ÉÓàoNzêg=ĉtö VÌ?ì™81òt>yzž×*”İP[ĉú\ÎZ};ÍhÌħ"nŒR҇³iKc6OŽşRù"'ÌĴò8y]ö·‡¨W·ÎMCèFˆÒ.)mžH~{/úĞûCŒÔœF.1Ò,­‹­™Êġ<ŠRjXEHŬJ˜cĴ•UŬw_ÏY˜²7Ħkìó›½ê¸„Q³FSöĈ·J5yğ#Œaì<Œ.al+Ìö^Ò=JO1“ ĤԃʂÄÌtŠOV+ìR²à=ş°m²hüÄT†?ŭÇI§˙•³—ċħ‘ĥËİġkòŝ·k~~6µƒÙ/ŝ|cµĉuwfó’ħ@òCıış Wğ/'”ke*qn+ċx9äe-ÇvS-Gwĥ‘vĤž\Ĉ7?À/j3räġZ+ƒżçşñĵßÚŞƒ¨ŬsĞùM7„ .½ì¸¨îkúŒùuFIüé–/#Ĥ&Ž1vfĉ¤´dĉԛÂc=¤VV²ŝ?Òc[ĞPä@Ŭ•𸝝‡2yĜĵ•CêĦy¸ùĜÉñ9á^F{1ò_¨›sŜİ€Z,j T¨PĦBE­ öĜşö2èŻMBÓ¸¨52L÷M·&ż‡T‹)ŬŠ@_'m†…0WVëó’ßu•áöŬ’ô>gıÑu›nM´C²á—ûˆ’ħkÒç%—/G˙´^óç[Yó`T­SĉĞÙQŽWĊPi½$¨ìóB72ÌGî’ÓĊ§/÷•ŻÙJğ²5™B|~)Ñ+K+qh‡]Û=^rġž³'Ü'ೌX̜Ğhʕ>ÖĊ~]”üRtTkŝ|ÔNö~ŭvúa’>Î Ó=o)7µ”{˙wZŽĴĥNçW˘Ġc ³”ċcè1×W§7mĵ{k› G)á§Ĵ?W)%Ë@ö21oëêeÄ6ÊbËé ™7î B›ĞÍŬġ·œúÚ÷Ŝ§6uk‰ Mĥ V})Ç4ʖeŠ#[ZE‡#ó£ŽL²ċX–£ek˘–!Ó) ™Ï‘Ó֋up‡~PŒ9r£:ıĵC2jLZ3ctızh]“ÉÔ+Dı dx&Ĉ·1ïĠëöGóJžÉÔ4i/G#4ŽùUDŬĜPìĊj=“{—Ĥ‡Û•n‡[ùnsˆR0gÈîSC”›N²Ġ=°ï„(û•|+„ßœŻMĠ,Efz0j51ĠĊùѨ™Ġ†k*¤§mġ¤îIġĵ>ħ'bĜyù˘‚ħĠ8ÑşQżfǎĝyjĊıÄ.ÙrLß·´+šİgĥüçİk†Û'ŭ´ 3Ó8N˘ı•·Yç–a3#*‡UÁä'š,‚T¨P/·œkÚÑ´P’š>Bŭġ…h!.Í Ú ê+›;Şíf˘7Èqİ:ïı°L32ul5u†i-ŻÖLXM×6uŜöhÎ$σ|ŭU“&T“F—Ô,5ıFŝÈ l-˘žİġä,£8Ä18ħ'ŭ Çċ0l’ı%Nıǽû ³ü-§–s a17S÷Ó>ç&óqô}œï‘İ+<1K\ùĝŸ+jŬUgV*ċ’ ê˙Ñrj Ş8×rJŬ&3RŭêÉŬm­ˆrFkFŽüĈġZ*)M'Çĥ3¸’wÍW]˘ ŞâZòŞÈ`RsÀíÔ×bqäòRü³ë‰W›.$>Üİ"7¨›9<ċ€…"*ĝ–ŭ’ÌŽĤëŜ=𣲄/ͳÒ’ŭ%üÔZ żağ_2ceÚ|,N|ó:ùf§QĦş/zŞñ´Ŭ—ú[ñä4êƒi^„ŬIĞĈċâ[çrjZ0­ –ċ^¨P¨ŭĈ İüKTs"DugŜĜ__W' gQBùY¤ÖœĊ¸n§˙²}ÎUH€Q'ëĉSâ Ġ÷\!H›Ïôµ#7YĈE¸PV+6́ykrÍfuV²×<¸"h%‡îänŬaÉ5áï/6‡˘–Ô5ŸhŠZ’ZjI7T.YuX´*iZRM:S?|MÓüM>U÷$!…ċdŞö*„ä7ÊĈë ÊïNXĦüóf^ÎXQ=|ú˙ ´˙Xâš\_DL”1bÎIúƒžÌAËÇ™ƒòÖ ÈœWÑB\%Ôfż"6*2^\ŞPáÔˇíû܎ñ ;Ĉ|ԎùköÊÈîgÈJÌ,IĴ&3òjëmQM+ĦgٌïᲐ(–ÈzGŞĊߔM¤CĠÊkâÑ!L#ĞM*Qj\=LÎĠTCñ˜ŞG³’imì<ŠİéŒü,JĴQBĞĤïh˘•y œL‘M'cs==ݧŒÍââ|}L‹o!ĵ)8:^VAÚÀÉ9ɨf…+êɨş³·)}šċ”sy-îLÎÔZk„N\%ÓúLmğÒÁf’ÌÖHZ=yè7χ(s̔”âċ„‡›>+Î†ˆ•`:Ù­î–=™üae|jy2ö:-sŬԟËjêÉD[:aŝ+!O&'ÑQĤÛ$ħ;ğ:~Jfq2‹kĊ ³8ħĈ)2Kŭш‡ĥšLrŭşD(ôĜşí]Ë!ó›‹ Ú2£T2İ‘JĈ‡–!Sg†ĵ+†Ìaìßvâ+çp— [ĴU ‚ZùMġŭ͖ñr#mŒ|’żuĞ´ı!7mïba(Ġċ Mx>/²k5kzI­*ŜĞá´¤RÔÒ$zğbĵ:H1JKk¤˜Ò^9”Ġ•Ż ÂOv4Ԕ9”JĘOʀߕšÄΖRb˘`~ğċŽhçnÈÎ'˜ƒĥ8~m 6h/a½ÄÍڋâ³òŸ4S>AĈF Ŭ*Ô\œ––ŭMŞ{2…äé;çi8hq[f)ŜÈ4‚ìaez‚“i[gE°^Ĉx BĜĈËÖù§EŒ'söúùì\*¨‡[GhÈ.ùE%]Ŝh޲K`ə…Ġ}½Wwé˘]7µ]şş‚JNˆ°kL­€zh†€y<ş0/+‘$@³%BŠĉĦ–U‹JŠĞ/µDPjĵW+ġÜÖ̗ „Ì-”ŸLKċóB\İí4_œœž˘ċa—ùıaü&´r”Š7Y[üŽù2}Yxs+‰½,ü•ċ²Ĉĥ­—gúŞ~M­—R,I[j§Íı`ŝ½Ĥ>˙ŞïËNÊÚ êGl—š8d<ê¸÷îĝ%ÛĊ"†mYŭ<·àı4ʙäCŒ…÷÷,GŬz_™Íá•6VTÒċ3•ùPëSú!÷h7ˆ5e }-½tĞ*Aâ^L­ßĞJî 9X°`Ñ[ B…úW‚Wöĝi EËXBF9d^ëdúmê`P!ÊX!T%/˙ÈÈJçÙO-¤qBÛíĊĜIKY)JTšPv/TE$ mo “%y7ÜĤJ‰}ûĝr+½Ĵì°fP­˜s2:çµ·µĞ­p݉žìFêia1ÁnMżkÜ Wż‡Y$ß0-ş²ä‘Šh‘ê˘F()FĈËwġĠk[Aò™ˆc#Œž†ñCBX˜ĈĴüF݇qċŭîàgSRŞSBcwêO²‡@İ¨ßŞP:â=P*Lê2ҐĤ³oİ.)uŭĊQœ–ocĞcĉqLcqÂpo•ñ`l”9Dĥüŝ½ˆçef‰½Ž2‚ĵçì("K}7”ë´şò×_`[ġ‘jö×ĴäêŻ]q`üš3}ÙvóRtÎ&ÒìĠ*Żdş\ànI(ĈçƒıïÀP³§ìlÚÌb~™z›ro-˟‘Ü^ž)7ˆ,ÈÜZÓÖ++³ċH5²ÁàĊœĞ6ruWÜĵÚ —ó%íLÙßlâĤn½ÛIëYDêxħìLUûUŞĊÀB£Wëî½:òĈıĜí+hŸ)Y)+X›}Żßéĥ^§ü[é(ÚŝžşÔ,•Ó²WĤ[J ʍĠˆ¸é€öOT9‡fxrLğÇôĝô0ï‘]÷Z?ċNŸGCÏĉ½ÚĥċNĴMŽ&żÓ1•:4ژĦn•Ÿ^ûF¨1ıô´3Çllôġ£6Z{?ŻĝrûZ)HĈ_’ò^ĵT§„ÀTSH-çϳ|g¸xğuÎa7;/²ŒçZ•€T¨£„Znäjħܧuùm()ħ†7…m}=5úÑ\u‘7E²5’)żH%áû5/‹)ç­ÄPuŬ˜Ù.Ôĉ¨3Ôı‘UÑUîmU™€֌êÊi˙eÓ'ċœú6ƒÜ{y¸\ħ]oëıµ_V² ÉŞŬgo\ë°o° [ݰ•Îy Ôí6çò²RşŻtĞáUħÑşâ8İ•Ì/uöžÎÖ Í!ZĦŠ>Z(˙ˆ1'êö\2Ħáф%&‹ßÍ%Óíí-J]ĥ­}ı·–ÖñgÖŭ™ú3qîÏSIÙV^™‡z%Y“|W PŻ.„‹G7½ùÇ|ğŒ}ŬuQ›{÷~ôjïŽ3‹f°zŬFižhĤޗ䆽˘ìhïBŻQĠ 3hlK İwT݃İĥÍ_Ó[LvóC”ĥÛ§Ĵ&F›Útó üĉµUíîîÎ_6È CÛßĥµµDšüÔŭ[—nŞ05ì˘Š­,4c‡ĤûžKv"  X°`q2 ¸>z")ċLTİÊ=2X)%EF R<ĵŒ‘’„DİT,Qĉ„ZĤé(taÊ c´˜8’3v.Š#/Ÿpó’ GñéëfU|b{ċWĵ‘™Ka7˘ƒŽ25˜ĵP§²ÁŒê$d˜(´Ċĉa1‰ÖQMċĞŞ`t-ĤQÖ?•7ƒnQ~}Múr7ÄÔÄ숭`޳5˜-svˆĠH´+ħ´O÷T%Kħòu™i4’ò& ÎvB™’VC´ja” “3¨˜f2–òÊġLZQzkCuÍp!}yŸĜĜ4 —äöÍ^—­J°#Ä—_G²zħ{ M¨Ê^%_­™nn͘š3&÷Ŭ‡Îá# í§j‰˜Ü@ŝŝuWl!– İöDuÏ5$ ˘ä׳$—ĵ_blŻċĜŬvön?¤ĜiĠ)ÊŬîohĤzyÍU‹ú_§öÔĝ,HšÚ Ó rżö´òt°ş8ó2ÚÚġŠO£l7v°tކÓĠ‹kżóŠOùnRÜ )KÇï´t6gѳt”S^Ôßôtr1û/%kw×ŭSƒ­×í’ŭn”éfkN3Š4˙Œ˘³9ċM,ÔôRfi•s4—6ġôŸ]hß´€Ú=ÜߏŝĈ\†ż³ŭ3Ħ!˘)--x¤Ú:éCPğÂWµuJz‡ÁljĊÖq‘‡²Ú:ét²NBÖùëd1£ĉŸquÖΗ=š´µ…w“ġş ckÁëšz² :ĥZÔc=ÑL·Rŭ?GÚ˘ÁÏ ?êS…„îTXĦ:#2‰T* ™5\'c½™~+”6&JġÛ(Ԅş˜PĦ Ğd¸FÈ­²^ ‰)6ż*$Ĥ8u#H°“ħrĊÔ¤‘² §&ԜyişÌĠeĥamŜ–ËMÑĴ/ŻÙN7,‡îİQ‘†`…Ħu ĉRrèêDŞNÀêF0×–şy0ß°†ôûÑ݆R!³cÎı†Qñôˆ ġ-5fî_öĞ›ÇòĊ!ùY³R†ŭ ƒ `–{G=LJĠ ³/Ĝ°cƒZ†`ş̖™›PħÌ.ëÛkIîÉiËîrO˜J)NrÏâä$ž…şvÖ{İİ~ƒÙ9hÉ׀ĊZ35Ñħħ{ï*Q5§79–ĠĝUGáeĥ3Q*oHzô”œ‘ŻşVĜÜUM+XhĞ]5–3Ŝ{-§˙Ĝ'=éĥT‹l8‹ħ#ğQ´î–˙èĥ~in–rĵgÈİÊm? Èş\F„ú*CòESóWŠÖ…W mW'Y_ĥjTòrleÄĜ‘…`b…eÈ׳;Ŭm `g6aĤò”ŜÌòÛgÔĤIù”IŒ,¸ÑŬj7̗™ ·Ú@ê™ ôìZùYóÈçšı?JĠ9­Şrĝx…½ŜƒgıJÎ5­|•Ç\Ĥİ (LžNĤQB‰bf²‘.‡ĊŞF}­a¨ÖÍë¤ÊìËJ[KK‘żnmNhÊÌ˘äWÛŞk³Ĕ q!ˆiݏAl;Y,ÚÄÊuÜî9~ùšòôA ’şċ=Y RZ‡FÛm?(‡ìÊj˙*EéY]âĉúaÓ^Ĵjî6½D•î5dˆĞŻ.ĉ÷gn|WüH;] Rö$KġdWlér15‚èÍAò[<÷ğfÒ³BDĦX]#‰”v£9÷WÂèyß £ß #°7ş5LU[ʽµL´Ġgi¸|qG˜šâĈĝéŜÄZAU7 ġ üÈîXU3ö¨iW‹™ĜÓUqèñ‚İeĵ£t‰Ñf떜ŸC'Qô°DR£ĝùĠż”­ş§Ġħß³zzX°èMPÛFÇİŒ!u*Ĵä%dsœJDŠB’—“’Ǥ X q½P 'sa0IĤ›9'S*/†Ê¨H^PE ŭĝYĤĥR2F¨=Rv%FUWV,¤ħ?£j1‰EÏ$Ġn?uÔîPŞfí¨ÎŽÉošĴBjëmcöç]˙0=Jò™ŽŽB³•ċ½0fó Â?IWĝĵġi2=ŻĴ!ĈÍ›äw’Óĉ‹‚şx‰ħXHjŻĈ”Ç($½ĥ*üşaT³wlj×ÓW‹ëm7h=§ËËì¤ĤLb²ëŜQ׎ÊI_WL)Í˘Ş ¤êµ¸&'WCnU;:ĈqŠı\†”v”:+ĤïÄ(§E+—Ñ(&·µ÷ï/Ö˘[%1QÇ9yIAyɘW £Ŭù†òşƒbäÜNĊhëUÙèeĊèġ×Ydĉ•TUӇ[Çġj;!çì~Ħ.¤OÓi_ 5@Š|lŻ0·•v(^mñcö§ħ.7cêŝ¤²l‡Re-K7ďqı³Ġ(uġ/Ĥy”ş.×*ŞfĥGİkŒ9^ħċ‡#[úh#J57D)G&/6Ŝ£ĝA²²e9°%,ĝ³0݆‰Ó0´˜Ö­0iO˜÷÷frÖ4LJe´˜|­Žë‡ ĵŜ9ôĝAĝi-Öt-/ı€Ż'Ĵ÷{qsKş*ĝ÷ÒħŭvöşşßÔRšŭŞ*Ô½W÷Gè|+ċĜ̰œ'"tùğİ%ŭt_â;û"•èhsÖŞÑż¸ÙRżè6˜ßÒFaÍڕÄ+]ùş‘ĝà7vV½ı³†£SúĥèĜCòKĞêá{ĦŞOċz^nÉ_cÍĥ6ñ·É/’ĠÖ9d*ĞAےÙĠäxqïlĜSIŭJÈSeáÀĵuO½ì)‘Ù–ĉzS³·ŞyvÁ–/…­‡Vûċ7âTö9ìġ€$ĝ€‹:ġqŒx&ÉG{[2^‡Pe!ÉÇ É8Tŝ!n*†…úPħ1dµy^ £¸VHjqŭCƒ”äµÙ•ĥ§kX,f9£È0 ¤Ü´=ħL-*3£`ÚîKoó† äí´6Ñ˘ 4Î}TC…ċFĴıbşüNœ‘(0f´^ççïOżWĞÇĜ‡I}}ûri^Ñûàž-ŬŸëKĦ{§=úGë™Ġq[]߆”b[-ôĞôĴÀäÊòdÚĦġIû }­JFCĤ(£ÙĥtCHÓuêXçµd1ËHG1W'¸6ûš˜â]¸êÖ˘ĵaYİŜîÖĥ×4£ĵì’îWŽúZĥ+ІùYĈ!SÖ5TÒnâ5ËĊF°a½ħï¤w„yFU_°5šMĉáĈĵVho­Ĵ䍟Góh]ڐÒì¨}ğœÛ9‹6T¤ë˙4•ƒPïŽħ·~‹ RoO9‡ -Mİ6Ô,tnĜ9UÂUá5oĵŻĞPnx#ĵ–ġseÑ+lf‡Ö÷ŞTĥѕ˘ np˙û’-IoI|ç†Ĥìo˜%ܐÉ! áÂnHU˜îá|Ĝ’Ó精óĤ۔Şî[|ĦPÇNnTüÑ6Ré" ™ë@umߔiEĞ-ċt3ZœEğväĠZ“Gí[6D̊‚’ËUÖ–~0Ż*­Ğ5BÓ¨“T1Ğ˙˘Ż›şÖŽqƒ;3Äg-÷%7îK'vEËÙĦ32šöR–Ñġpħµ³ÖÌ͆Ŝ1ş„ŒĈûnôhħ1V7‰Ġ¸cšÚ‚=¨hġz”ÈuQÒü$ë?‹ġèaĠÈê–}Ïq½jx_÷BÛzS)Ŭ<—Y;)yñ>}–ıJ—c–×- Kpï.„ŝŝ|ĝ (}%+çċ³-ˆu}Òù˳ ™•4(F7ôğhÁVI›[ċí|kħ;ˆĴ6ËŜ˙:m&Çß$7­W¤§P §QNİ‘ jHe7Vw{ŬGÚÜ0ǛNŻ{HNŒüò`˙–~ôäƒĴ£#ÈR]ηm&‡ìÖùMˆP˙“TE:ÑĤ•ŜM^ÚxqŠöQ/˘;d&°`Á˘MŻ^"Ôt"*.ÓҊo “Ê$Ó * eJ2A •çÓIFâ1BŬÌ ÉL^¨}ŭ,AÊazòêûíMòCöĤµD6ûŬ˘!÷uže72§·Pñ>„ÀşÒét°Ë—¤×çöÄa’Ÿğ‡™BQ[1ĥĠNèùSĞyşŻ•LG[§i•K“`Q;ri·­8ž^2Ë:„˜†Ô_ċj•EĠv×òÂ~^û{wÛ]'—İI…”¤ş|÷p÷ıŬ‹–T$7S‘9Ë˚ñ, ‘E4rßR£‚ĦÊ·BùË}AöšÁċÂ^Â}†0Ôäé5½ŠĞ“N]Üí<3&gGҋ9ŞCh_…]„Ŝ€ÇIMĞĉAñĥaŝ¤0;(Ĉ—öÉö´Ş~‚-k;aġ¨äô·VÍò†ĥħ 8ġ ÔRkŞĞÖAé˙4·­ŬvŸ&љÍe7Ü<žƒ­vŞŻŜĈ2÷œó ŜS·Ĥ’vĊÚy Ïċ9IR·ħ×îÎÀ´Z òuĥŽQŒ­´TÉ¨÷Ŭï7'ÓQĉnŻ’}")ÒĦÎLÚjrì&›żUSìe£%‰ı2ż@6›”ŝmĴêä7·ùĜUËŻY;5n†˘ecĤNÜxÓ2nZcŽëÍôámW‹p— e{Óĵ{X³é–ŭÏsY‹‘ż´Ĵ} f™ĠŬµ‹Ò¨.˜ħ³ş`ñ2$„lT9ĴçV³mĵ–ÊD‰Aĥ ,²œjr*ÛFHŬÙZĦġW+³úút˜ĝné5Ħċm-¤Û8!-F{!L;X#Ó͜‘i_/čVĉ¸ĊN&‡RÒ¤ÔZGğoçn‹V.Ôiuħù)Ì2>F¨™MôîW—šŝñ:[w&ˆħsĥEö놆’rmtˆb™sLçĵ˜“œ\ĈŸ”ÓYȈ.Ú}koik74şs³ m7w’¤Ĉ#Ú'D+éO]:ÔvQŜËI\Ê ç*Ù6Ó=ñ;nìi_U7·µ‘’êö‘ÓÖáи mĥ?ïĊ[½y]Q%ew˘ġĉĞxr!ÇEGĊġ9¸–ZùêŻˆ+3Ż+&Ú8/篸'éĴYVŜÇç!“”˙;'Ĉ6^‰éäĜŞ“ÒÂÎû²M›ožBĴ”ğ²&7j¤\ïŜzúġí}Ĥŭ£4˜sğûÇcBˆF2]ÊéU$FĠğ†*az^%,—–ĴŻŝ4ïOf–IÂ9keÎİË|Âk‘ÚÜĥ/Š/çL,Œmù2îY†š-ĞgĦœÒ‚,™ĠÙWe™´M–Y"톘ëÒ ½,X\\!EBÈdħZ„j˙È´m² d Aċġ6P*ˆ$”ë%Ê´Ż’pŒÊÉeäž(%Ò)-•fKœÄ42½ìáĵ!³8c¤„•µ$)™ħRyœ(ÓI‰2&j)Q&ç!’“YÄDmäŜèÎz1Q&i™ñĥIkäĵ’ĠîkŒ`ŻñĈ]ܘk}8. [vħlBŬ£w÷–U=é xL‚p׉•RKb9ÂÚÛüŻÏ½ÍFz‡tÊ I´g’+iŠe A2ĊŒ“JİĦœb†L#fÈè¤ÓÇ<É?•ŭä<µüĤ’œ~c˘;—GSd”T÷n§"£7_ĵ’Ä}eİĝ(}ċP´™WJy.Ĉ'´NĦuĴbŒúCbŒ:—£pf÷á÷7—ü.ßġ`Îs †Áż‹Íoèêz6LJ›îµ¤ìíԍ A~ÓdD|ĞËċŒù[Ĥ0X°`Á"ü°ĝ"¨H•ŠÁZİE~™5~Ħ<FHĦʇa”Şc…’ ÁV¨}P—¤d;#ŽBuĊ¤Ċ(%TĈGùԗ`œ˜BbB’ÓjĴ˜²sÍ˙!¤xĦœ`Q¨6šîĵ’Úb!ƒ2̲_µ`­R„qqċ…î×}cÖKkĵ ×] r&JRZnËsUE!ÍÀ#4?•ٛ¸máĝÉâRéürΣ7|;}âYËç³uIVÙ~¸¤dÚ:ksJ¤EbŜh™ĥĥ9]ÙhİU²°&.p¸ĜîİŝbĞßwfŒŽ‚İ_’ ×"uQuŬĥËÓîMWRİ_„Ôim-g¸Ì 7Ò¸#óKž·²žc^\ş‚‹)Éĉìx…ÙÖı‚†àbĈw§*ÂV5żçŬĦTJS]¸<ûzµ­}â;ís(Y,똤ESç_<„)>9‚ië<-tÛHPSĦäJZ%%t…—Ş4—„|;=ŻŬv˜†âRĈ8½Vqä E .~=KÀ;‚KĴ_´Z·ġkżT •ŒĵĠ_JĥÙ9)²ĠkĞbŻ (ÚĴž5Ż;múžvB=$!p’:[VOër’×ŭ Ŭ:·Ĥ?•Úŝü(AŞĥZjÊf*^%ƒ7*„&žÖŠq½~1â uç“%`X_Ż9,… VKù{¤iġDuX-ÛŜ1ÊÉ÷e–½Ù[ÌÚ%éeĠds,ĜS:,äk ,X‘•T!!BhUkeÖÊĵPÛJ5P~„–{½LoQh{…$ #$YxĦ•^ïe$eé£TŻN(W„ê„–Ò•şRöO-2çrŠBÉ­œ”˘¤Êm%/T8G'!IQEĦn…@ŭħênÑŬ봒*%%Ò/t‚x!ÙVi)YQİj AêÎ$$ÜŞNê̓:A’Pò³(ôÔ„üĠĜÉpƒàÊY™ö5zù ˙şßßûAÌC‚üï”KéĈp<è\·4ÚçĊÊĝá‡~ĝᇟ³˙„‹îÇ˙iĞc—|w‰}M-ĦlöÔĊwĈ(sÑĈ™kħÑóĉ˘êĤër‚ ŬÛëüoc‚ëÒġó\šŜFw1ÖçŒ(· >VÏë˙C]˙}‡Ïŭís•?·Çİ~œ'ġcsûXçt•Ë×û‹+ëÔċż­_·#zs[Üe€›{` û‡ŭñ=ŜÀ²?.·}ŭö°;n´ï£Œ£/ÛÖÇnθ~Yµ÷pÜPfĥzttF›íGpWwŬŽżmëÇŬE7vr×>x7?u˙87ÂÔ"â¨ëŒŽ–}üĴ£İnvtoG,֘£ÏŻû^>·£Ż›úİjo‹ÉÑĥ¸Ċoç³f|ÜÇßîf‡òĥCvv(Ġ¤›¸ĉ™3>8vÚµ'ŸŽ"灿Œ?­=ŜNċĵ7ĜñùîûċĵħŬèÀğşo`=:4:ÚÉ5ú_½˙µ?6k_ŽŬè~ŬüD}8ĵe³'½ûĦµMĞKO§ÖĦ]?n(; ĝ_h6‰jŸO˙ùÖ%cÔ˙âx÷ŻçSŭ||âÔó)^bûëİM7mèĉìXŻ&qrj›úyzĜÑ@˙7|<>È=°|<´áèÛitŠ×ËûíS=bĝé\ż;´Çzôñp&4;›ŸÖq|öŭç÷Ïî2]0!T´ŭ.ġ½° ×lÙŞxş?ġŭÂê˙ *ŝ_}´î|Ħï[ÖçCĦ•úŸŝĝ^˙<¸<3ÑôÏ`êúÓŬ˙{úïöOW˙ûöóŝï˙ŝï˙{ñ?˙?ŝ#”r… lincity-1.13.1/opening/good_times.scn0000644000175000017500000005063607340322062014476 00000000000000‹‡UÁ2good_times.scníÍ–Ğ:“`ç~—[ ŭKïÓÓö ß‘ 2`L8Mž½²ëësÎ i‘â­küh£oĤù›w~ B… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB½UéxWkCÛB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦŠıQŠlG *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… ëCĵ%Ò[*T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB…ŠŭqĥóàÄÈú‚d ¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… Şœâhjß@… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦb}`}@… *T¨PĦB… *T¨PĦBŬžÛêü-Ò²PĦB… *T¨PĦB… ïï*T¨PĦB… *T¨PĦB… ê0ËÓ˙2T¨PĦB… *T¨PĦB…Šĝĝ*T¨PĦB… *T¨PĦB…:̔ӞĤ… *T¨PĦB… *T¨PĦ"~pÔ B… *T¨PĦB… *T¨÷Ÿ¤IL*T¨PĦB… *T¨PĦBĊûÀû€ *T¨PĦB… *T¨PĦ–“nŠĵPĦB… *T¨PĦB… *T¨xç‘ñ> B… *T¨PĦB… *ÔkSµ57ciZ¨PĦB… *T¨PĦB… *Ô/?âT¨PĦB… *T¨PĦB…úAŞJŬ͐›*T¨PĦB… *T¨PĦB… ññ*T¨PĦB… *T¨PĦBŭùqŭ#m eĦB… *T¨PĦB… *T¨PĦâ}`”@… *T¨PĦB… *ÔúcŬMѲPĦB… *T¨PĦB… *T¨PĦâ~à~@… *T¨PĦB… êħ7C~ ¨PĦB… *T¨PĦB… *T¨PĦb”pÔ B… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨Pħ> B… *T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨Pħ>m}PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… *TìȉL:*T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PħAhüœÎ;¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦB… ËËcc…s*T¨PĦB… *T¨PĦB… *T¨PĦB… *T¨PĦ◰6ıY„l°AäÎCÛB… *T¨P—£ •nÊÑ´PĦB… *T¨PĦB… *T¨PĦBEà¨]/°½goo“A䇏t*T¨PĦ^êŭ­gÒ²PĦB… *T¨PĦB… *T¨PĦBĊµà¨A…ú/û rm,ïŻ\Ík"] T¨PĦ^›jo†”PĦB… *T¨PĦB… *T¨PĦBE³à¨A… *ŞÍĠ¤@… ê'İŭ½ż>Ò²PĦB… *T¨PĦB… *T¨PĦBĊŻà¨A… *Ôïż+ş‹mݜ]*T¨Ÿ˘ŞÔS+ B… *T¨PĦB… *T¨PĦB…ŠXÁQƒ *T¨P˙ŬÑT¨PĦB… *T¨PĦB… *T¨PĦB… ££*T¨PĦB…ŠŭÑÚcı²5Œı B… *T¨PĦB… *T¨PĦB… *TĴ úT¨PĦB… •QÜg *T¨PĦB… *T¨PĦB… *T¨P™ĉ“ĜĴ9G *T¨PĦB…zµ‘‘ĦmqK0@ B… *T¨PĦB… *T¨PĦB… •™hĴ ¨PĦB… *#£ŽŒäò?8Èv!ŝġš3ô ĊPĦB… *T¨PĦBŭ4U›x>V…tÓ\oĈKloê·6H€ğy]*T¨PY¸ÀT'ŭ*T¨PĦB…ʘë“#£½‰ôÑ£O@FEşz63L C… *T¨PĦB…zŞS7hY¨PĦBċLĤŞĦB… *T¨ŒıA… ġb×+ 2(!ËsS† *T¨PĦB… *ÔŬżŽîf"M *Tf͘ñ‡ *T¨PĦŝ³c˜‹1T¨PĦ^Ĝ3ù” ˘lşK'ƒ *T¨PĦB… ŞDıšİ*Tĉљ÷gŜ*T¨PĦB…ÊĤŝ½™’kPĦB… ġónˆÒgT !WÈç¨ù¸)OÓB… *T¨PĦBŭ×Ĉ7MBeĥ€ıtĥ™ù¨PĦB… êUNJÏúx_ÜŽn*T¨P?>ġP҇\î¸Ċ›Fı€ *T¨PĦB… UĤ”J¸‘êż9}màjSéLŭC… *T¨Pñ-Û}ŝŠ*T¨PĦBŭŝáĈ'­oê_Oë *T¨PĦB… *T¨LwŸŭü)—ցŝ*T¨PĦBeÌUŝŜA^'öMoçT¨PĦB… Ud¤¨mĵóĠ‚È3şR *T¨PĦB… *T¨, G@… *T¨Pŭ…ùî+’[G5pÖA… *T¨PE¨ŜŸŸàâûGÌWËċzE£ï*T¨PĦB… *TÖ°. B… *T¨ŒŒ~Ó3 —ġ<lj*T¨PĦB… ġŸÔAHC*T¨PĦB… *Š}*T¨PĦB…ÊȈ*T¨PĦB… *Tü,¨PĦB… ê_ږ5„ĉ‚ò2M,X°`Á‚û k­Ôé<2C&°`yîƒ *T¨PĦB…zŬùuÏ = *T¨PĦB½èjŝµ3ŸŭëċÄ?ҏ™¤ ,X°`‘ÖG7— ÓÙÀ‚Ċóĝ+Ô|}WŠĤ½ĈÄW°`Á‚ öšÔĈ\ħ׋‘ ,X¨ĦB…ú]Á]l{ċ’ĞÉéT$—]”2ÜÔÁ‚ ,ŽĊoL é ’éĈ`Á2‡uŭİtÓ4-RX°`Á‚ öšRˆœşĦ/¸Íêbƒ•°â}Œ"SPĦBĊù”ġÌûWd¸Èp,X°`˙ĵ,X° K!g.°˘›@… *TF¤ƒé nóɏ›(sŽ€ v<ë:İBn'’ ìġħÌŜ€Ċú@´ĉĤM‹,X°`Y—ü{h˙x Nú0òÉÇĤúŭɊАx##Š@… *T&²ÄGŽQ´üX÷Sä3—˜‘OÀ˘s s€‹%,OU_CuöF­Á‚ ,Ğ’·Ğ™FVN°Lô˙‰~²À|ŝúƒ *T¨P™Ċ Vhŭ;âš\S\0´X°x!`Áâ…@…Ê5X°`›=iL)1%"]4ñ-‹ë\#À‚½şssĊŒ/ÒĴ-‚=kd°Şƒ+Ĝĵt]°X"`Á2Mġ—¨Ŝ‚½–ûĜSħúbOvŭ'½qĦ’XŜPë¤^? IŞ•:ĝ £ĊùÊôilmÖzúa‘k1´r{ÑŻ[Z-elé`ǝˆ„!òû†HŽĈpË[­b˙ğŸÍßĤ§¸ÚFWŒ'·Ĉd³ûsF9+³ŬİğĈQËÓ8T¨PĦB…ÊmğjvÇg¤‘yu_§÷O½Â}á‰GżÂ5^†Ğµ×iĜjˆ½]$½ĥÁ)íßܗÀʝ³ÁGO„4O{ŜÜ2àŠ–âÖFÀ2ŠË´T´ $°`Y"9Möpŭ§LYÔ~Ü<PĥÑŭ_(s?‘t žÂ˜Ñ—ç7U·TëR%ú[t“g€ĜxÔ%Šuó(ĦDIzŒ2ĤÍC”ĝ°Şĵ%”(i´S†(fŒbQTßd›aœ˜4ßWĝċΨTêŒ(ĥS¸ùŜĜÒf9È2NÔ%ŽMË8³1ŠĠj_Ğ}Ĥ\âĜFœ`KŬ·ĤßùPĉ.ĉaĈŬqkaL÷‘½Q³½ħ·F™rptŬ›rfÄE™ċi£\íŭ7­Ä`S,İIDYù}ÙAÎ*ùùt£W,ŭPĦB… W,RÉßtU^p)˜ŬÀê\òVğeÍà} nµ…]9ḿIÖŝİL×Ĵ¸JéĵšvŒçúAy˜×n%‚7û6^ÚxtÚ Ÿ5UĥqêϔNċ˙ï|^&Ëô–°WÀ‚ŭ›Z ŬużOl_À†£úóÌħXH´I†ëĵ W µƒj^sğċ>KYëŬ9Ü7.0îıgy!9½ˆŒ[6šbqċ ğgu&}XŬ_˜Ħ½Vä}ɽ¨ \érDĠ°?Lœĝ/ÍIĽ›oçŻçŸ•tĊÊ UÒÜŻ_àPĴ†PÖĠ¸ë³Żö m÷=ƒ‡âv/3£œ†ÖrhġP.F™˜°1E:Òĥ'f<Œ[önċJ·M·¨·Ş[,gÛ,†ĥġ¸ê–rdÔeâÎXŬĜW˘¨ÎÛèX£Ĝ†<“gĴJ'ù}ÙĊ”( H[·eĝ°{üşÒ­Ği:,,7™jU£Ü²4^¸ĚġaŠbœ·Ë6ûǤğĴŸëuö"ڗ›hŭ€~=ıyT{uŝŬĠLÚ7”Ĵİœñ5ġíY˜ÙCÁÉ<%âİ@… êÌ-ġÈ}"Ù(Žb bÉßôUŻî_îżR–#?sŭĜŭ²À÷Ĝ$‚ršM4^wéPËcÎ<ĵí8Îó¤xiëgÖ+ÏĜĴËÔ­ŞRŠğEÄ.Qğ§QÎG_Ĵ³d„²,Ĝ_RVÜ~Ê X°¸%ŸpKşm·DU£,êqŬ”& zı^jê“ħ¤Ħ|˜RcĊû…òaK•àZb‰›ˆ%2ʇPŞ’Evó¸jġÉ%żŭŜ7ŞòG:‹ÛÈ éËoƒ{ċ|’îŠ>Iú9ŸDÉ=žóı?Ġçn˜úéé.üDKİïAċïm̀rŻFdë%+ĊrrğĞÛÄ×ӕnù'ċmÙ7‡ñï9&ŸĥWNÉIJó`&ħ†ÁZáAk*T¨P˙IżD_ìO>Q ‘#3d{Àbħżlħ¨k-n_›îsY5ÊéE†ÒF!ŻĊt–7fsÎ Ĉ‰ÎÒÑYê4ƒ²31yfó„ُ{íOAôû/û³sNÛǟéˆhêąʕäBğŸâ=?ecêLŸ¸´²eë~sbxèħĵ Ĥ‚ ”³>İFğ³GĊ—Ï…½êU²#“í,ĜH{Ù í,Xü”—ŭŬĤ}i2Ô.J‘ï—ëğŭ3AÓPq­Ed= nÄÓĊ§V!“1Èj-˘8ó)?ÖèûŻ|Iw•Ÿĥ“9N×GŻáĠ•vħ\ŽR‚ÛÈĠrÜUQ[5uŜ@_3÷I÷'Ñǵ” FŜV$lœ+u0ĠÙŞH¤†ï˘4Ë·ù.%_ú.ĥ•­ú.*âğàğ€Ċw *fÊ1ûà_mßx}ó#ìŸ]Ŝı"\h~öbÉ!~' ÌqU$‰I(räÇİĈö Nù͖aÙÙŜâÍ}2àıŜtÙÙZNÒMNEËÉ /lô÷,ƒƒ,X°o,ƒ,XT“Ÿ‘v,_-ş׏ Ä,-Z¸fĤš¤Vĝ,v$+âË u8׍Aâ†Ï’e’a„ëQüj½Sh9š¸½Ĝ—Éêbiuŝ6MèŸżòĦû]Óú1˜ŠĠÒwŝĤžlğ_ÏébË,›OOo˘“ß×2Yš·LíléIğôßzß֟ŝìw˜ĵ;qi˙ì7<óoiwóa0ÌF‘`òĈÑĝ7÷6Ŭ³ñ-ÏĴ9ááL­s<Ż`cLKpw%!¸|™àb³Ŝ]Jgkë-½½,z T¨PQè ˙@żċv ŸċlŝK‚ÈĊ4™Ż´NşßZô~ĦEµ„[…–¸%´ä9­k½ëqV²Î‡Ù§Ağġipû}ZË%…™­­,X°ÄΜh-`ñO–ä<ĝ4á J*vˆš—ÉD–ŜFù­5ğëñ䗟ĉ)UÌ2H£ĉUcñBı퇇jĥżÈԒjĤÛptJĦ´ħ˘8ö„òŠ}Ġm^XBï£İ°ëÁáeËĊ_k<ĞĥµĥD’°òÛèúDÙäTò,ğŞm\fŸĞc"ÙZ×Ì4²yÖcr~Öñzd™´ÄĤ!ˆ^ħuOòĠrİqLRȍ áiI*”f³?È :Ê$„m/ċ°ğy~UîžÊtcŒz÷Rc9Ş4½ v2ğa™ –X¨PQ^Ĥ3Žĥ…Šî잉ĦĊKµûgÄ'Ż/|!öWĞ99ëċ8Ú~4KĜLrXJyĴ·t.şCxAxAx , RĈ›RĈ)d£hŠŬrJġF–IEŠIâUCħnJNmá>g§¨úô1ùWĝİ'dï£òîQ½i\F6Ĵò—ŝ­Ħì†s<ı˖s\NÙ0F_lX›^Žmô…Ò­ÈmtÎi#ûâŠ;É}ÊáÒG‰Ğ]žQİÓT½=†Ċ•zŝÉ-oŭ>16Ñé)W,–ÌċkééİW.HĉY*T¨˙4Uğ|ëiĦr§ vKpħû­$¸Ïe÷;%‡ö›ó÷Šö‹,J…Û0ñ4Ê-ÉĠIèl -ċmÂÍt;í–GÖ ö˜´/‹÷âocÑ{nú™µúĤŽ÷G-‘Í:B‡Éĝ'h-`Á‚Ekù;v„#ë ’ċZcËB1]Ġô\°eeÊwK?ÄuğS¤¨8:vžˆEİ˘]L-;’>#bĵwċ“ŭO(^‹òµÍZx-ÚŻ™?vĴ\ï‡àĜXü„j:ŝ¨Ŭ’öÇO÷fĉĵèöw‘ŝ[öLœH&Â=웤Ŭʃ`1˘Q=Ĵ5#ÇdOÓ´$za²lÊv‡• suÍäÓ‹_ÍêFÖ{ˆ-‡Û[è<[w…';°,ĴB…z}Şêo莖…Šşìï¨+n˙#òr³0a$Ş$9½äSRÌs%sĊ·ÍğaĝÍjDcâœ:Gmk­íÍ×Ns˘Û—şÊĞ2çW#:lƒ¤_óL0X0Xn˙Z A°`݈•)}yMĠDNÛ¸rW;óĜıuÉÄt.W|™é>6R”_şĜvLÜj Sb¨EŒ#Œ†‰ßÓc§k[W²[§żáÙ]CNú³µ.S <ĵ)òlĦmc•ÊK³óÍO–i?^ô#ö˘´˜Eı"JK­çä”–‹)'ŞCûWmż›EĤ<—ß—e‹ÛzÏŸċGy·ëQÛŭ(/aµĜêAĜçVË´JÍÒjQ˜Ö’ZŽj-vĦµ¸Şµ¤ĈáœhBkAk‹Öê_¤êûó M Ż,Ĝ?•’ċ¨+òOĥ˜ëMò¨'ÏĴ‡jÙ<ÀFÑĦ(§·Gğ'fÙÔ[ŽÛ'Ûe‡Plħˆ-,b#ĥpÈÀ‚Ŭ-ĥ\ÌŭŽğHÂaŠĵ`ìIáÄHûœ÷’³Ò#şS÷#ĈcğħĊ+ ŸŸÓċ0úÙBs˙T‘ӵ̳şDóbV—noµ˘oôT~QY(0v÷6ĞŬĊ}u><Ú<{Ĝ>^à·ôÂó+ ½GV{&—î™7Lµ—ÒóÄBzßĈGħf‘𴜟óEҎùêœ/9ĉ¨CÎä°È1PĦ^—Ú?2ѰPĦrŸ v[ù›)_…użbÜ—K’˜ĥ’~Uˆ ş.J¨Îċ…˘G!ĈİûÌÎÏżk1ĉ6Ĵşmë0‹>à󴕿­p;6“[Ÿ&MbBÌa2r XTX°ŸVaœtC¨Ĥ“ŭÚùZ×á_ċĈğÜ3s’ŸŬŠŬéë $½ÈÔUš<0SÂîväÑ÷ŻíÙ~oŜX5‡ŸşR 2„_”²]Ÿħ’ġąPIïZŠ^ôበx}>u\Ôîs>úŒĴŞEz,GUSĵtĤᷔßÚ0=ĤżY´(Éù3‡ÑIìˆŞ˘Ċ—ù'żLސ³Ċĝ^FŞÔNHĠ8_ŜôZl£¨Ŭ˜ġĊ–ğIġ|ƒYġZŞ Ñ_ŞÂm]C­öŒ-Œ)ûR Œ {ĉAhGQ5J˜ï‹W­(”K£l(µ6=ßߝ%Ö(iÑb~½ĊÚQl˃ Ë+ôj’˜K—oĤéí°ÛËäX°ĴÔBŭÔLÌî,M *2 X°ßÍѸ_UëĜ••ÓÈŞ“CûċrÄ ‚iÙ0Ğ0ÎLl˜0ħa솉 f'‡µ’Ç:N§˘“™WYÀ‚Ċ€ûKĜKäYÑöï8d•“_T”:íyğÜI~:½öZßR|ñMñEDIbZJşž˘şMEĈ‹]/*Ĵ/ñĠƒy~ڕ ’˙%ĠeÂTI4²Ëi*Š äÒLŜ▚ƒžßKžH.jRÚhĠË}p}Fhnŝ(7˙ÇdèW•ĵµUˆ÷‡_On^‰YĜ+F-³ˆMí•ï9ŞggFı"™ù¨PĦB… •Û,X°ĝ+`?İĊŸ\”ÙZ½˜ž‘³…RĴm–)\òÁĤkH+5Ñ˙€_Ĵ'¨­81ıd[Â[ ·ìż-˜ĦĤPë <ĉ^MGİCl·>‡^_' È —$™.Üĝ ‹îž%qĴ ò|UÛù]=äMAĤı•j!§ô´Ò´:QY ĞŻħ|F}Ĝ²XB*Ëx$Ç5š·ħ˘hĠ…-ÁŒ-bN’ÙXÎz„½cU9܉ŬŻ& ùŬŠ6X‡šîÇ˙*WŽíÜjh•òôü"Â)}/$rıx ğ·Ùóŝ§ËÈĉÔ}>À ÖÀ0ÎRÏˆu̔ëû韜ùbĦ~ŽGÔ÷™„Ÿ} v×}HBssı”KDĤnµŞÍԇèpP~ÏnÉİ€Lİ“gŬóä<ÑĴ§għ/$Ö8ˆ-L¸ ĥ@… *T¨ÜfÁ‚=Ql{+#ĠêZÛ w˜LúĝeœËÉüĠp‰M%í7\…].Üßğ•œg Àŭ Ü ÔéYo‰ú2ç¸Brlc. –Ë·“ġŜ#x~š–Ï.j~´;ÌŠ˜Ĝ/+B×–‡+ıç§äz…˘ Ú(Û-/‡–3]bWóµÄy_j2deo~H]z,:•Öi^mŸŝßʑµñŬ#{şP#G~ž&"½Ä['Ŭ ×.Y'#ßMŜDGġ=藄³ZšċiFY/!´ì&çĉUŝ[|= ~^ ĦĦ,B T¨PĦBEh –L-Û\ċÔM+ÛJbıçÇ­D†²Ù:LĉID +•²Ċ.Ĥ -ԔîyòxVjÎïï‹˙,;膒;ë°,¤|İÖĦëŭƒĜtŻfŻ$ïöíäE$*ıQ`§ŜĤZfH?B zsy­ßÔbŭGĥĴ .2:è麃›Üz³ cJÓSÓÒßçÍw‡ygoĥÂ$Stóıŭ|˙ú°\ĴıׁŜFwĦ¸E<¨%ĤÄ6‚X÷B¸Ĝ—qáİ´XN żŒâ'ġĥšÌùZ2qĥ+Şß…“öE•şŒŭ`ɔ ħ1 î…>ĉÊ ,Äı ’×ŭ—|j”QÀÚ bËĦOfžfE%ÛȳR€Ĥî‰RŽ}EÖöRݵ+n%=q­fŭâĠ]İĠròĝżgĵG§_,~TÒĈ¨¨icŞ5-~T{Ĥߙ6ĉ¸‹²żÉżH  rÍ*7/8;uÒÈĵ5jm’³++ŭcşËï5Gŭ/[FġëÎŬ7÷B1“Ä*‰ċŬ~"`ԌEê•gĵğ×20ÊF¤2²IbFMú´÷ҏt~³’İFšTï9Wh¨Á¨‹Q*T¨P1jÀ‚Ċ¨9ksċ¤tšJ§qÛ:Mjé4uÊ„/ióŞßŬêôh°ż‰=QzA§Á{1Ŭş÷Ğ)0ĤuÙĴŠ"“İäÒyTômíE5˘TOÄÚe”R⠄ŽòE]Ş·Èĵĥ/´ıj'W×ŻŻ‚éğâ²ĥ4P‹ä¤×7˙R—¨´³µ9ÜÚŞom³Ğµ%²ÇdÏf8ċGiˏĞPƒí—gĵ1Żê/k#ŝׄ”+ĉñ-B-L—êrM5;½0]>4žZżçÚ(_èı\ÒFùĠŒ1çH(§’wÜjlXú-U‡¨ċqé"HššğğîÈ*”;r¨X½~G“œüH܋(Y4q~W>Ŭ¤QaC”gq+U wus\ñc²îWÄ·ž3·Ô½˘˜•MĤÛé|ùs'³&`ñ] B… *Tn³`Áŝ–ïòïaïÈ×Ŝ‹İ—£ŬĝèYĉêôïRà16ĴŜÖWN_žBÙZ>LNbäŝé}1 ˜KĉIm¤û҅# X°rXk…4ŠÉĈ‰ _UB7Y‹œ‰$ıԈ-SóK‘$ˆ‚³>Têdü”Ͳĉ˵ė½-,P,é0z{YŞTSÉI>f…u´.Íċ× S_àžIŬï´óĠğÎܧ›şş²Ĝ AVÖáYOAàĞ)[-˜œÄÈꅃúj‚—Ŭڋ°=v[ËüŠ`ŝn÷ 7ío]‘[–’*Ó(NżÄ-GŞÔŝ–B-܉s?œğċž€Ï‰K'ÇÉğïç/k&VŒüı[WÀ‚e}*T¨PĦ⯀‹żö|U£“@äÈŞû”ıbĠnlßчFoîç ÖĠ¨oÊ bJ˙µQ\)Ğ’ı0ĥŝüĤT˜Ì8ŒêŠËßnÄ %žoĈ³ QfŒweLğá~GÏÜĊ0_{0ż³Sè¸9mK(ĥ_g୙¸1?‡%Ĉeıċ\[BqĞQÌJߐPĤQDD&ĦHı-ö•eĴ´?”3£^Z0uîœísuâîĈŝê"a./5,ÌU?| rj }/î´ĥxċj.nsñ*Wş eqqQÂÈŻ$uQv,ùÔɝ˜+rEò+~K-ÖUĤÖċ–]` ë-ù°Ġ·ĵÏ ÄrÎêٟö÷;[ïÜϞŬĵÚu}öá3XTtÔQžß0wùċQaÉk)ş|ıì%/_ĵ9éižu™ËÉ+9U1VÌżê™81ò|Fyq˘×6–iÊşäÍÍ-'.kâ„mVÄFj”2?Zß:vê6Z‹(~˙ôhr%HŞAêEҕ Ê-ç-ëLïvW‚è::J"}ËÙ²ĵ\Ä3q2żĈ×0ċ5ÔħS¸˘8$Û0^L™‚Wö1L’Ù›4}Ñğ%§ôÉZóÈŞIÒğĜV™I/ÛXPh†Ñ“Ż aÜF˜C““ħaœ]ìMÓj6“Ġè÷˜Ġ0µ ÔŝĴ~gwlcİ­ïj%Ìòàh3„iìPi’HhUĊè˙ژz‰u­U^Ô˙Q>V˜v]ö¨W­· ‚ŝR²‡ŭ‘~cç¸L£vğéh²1Š70Ótr§üé2öıفó äuIÇtËÚK'1†ĉ—³|£E#GŜ]ĞöŬߖôpZÖáİ{nx8żëFp~ŭşËŝKà…2’Ê*ÔmI›E ¨ĉd,3„ÛrsŻĊwÍêH­ìdŭ˙¤0wìÔl0[˘ZĠè)­fż?9Ùyçߋ£½ù/ÔÜÍo·İ€d,’ T¨PĦBE² ö2X²Ò Ù|‚,XNÉìplBËħ‰Çßvl˘sŸIû+’´ sËĉOğòyFµ˘˜e”ÒšŜîòuœœFĞoÂ&9ìó“^o,Ĵ”ĉĥñċŭxÍĠÍïŻCïRħ­|ġ%úġɖ5~mË2zĠeòċv½¸ÇÏüŝO%ĵÉ&Ž…’6÷Ĥï³˘…ÏZʽ}ß;Ü‰‘÷iU^B­§”îÖ³}Lš\y·oóŬ[wğĉşÑ=)É7‡…UD7‘ħê)ßí]{–óW.gĈĵq})İ€ÒŻt’pŒ÷|0*Úh§vulQ9&ĈSD]#Ż–ĈŽùZ;FÏënvŒ_*‰z’;Fœœö^Ĵ{÷ħ‹ˆ1—TnT'—‚HFI/˜1µ¸R¨jĈ4tó*·¤½œ—ŭ$f–<9’y„ŻÄµ•[ˆ‘òlú‡?c˜8 –[¨P/Gġ?™·iX¨1_‰µ2X/ƒĠ2Ĝ(ƒużÒjŭùjµOq>€•.*~ŸĊ5‹9!ÑT3Ħ­Áè./ ’lĉ‚Ì%„•-­ÄÇÒWmÉİ\×röĦ÷N×Àjn„ÉË{›yV\K|ıĠœÉ—06.__^É=bÇ a$Ö<+Ö4Öóô‡í•ÏH1o(+ğ}‰×ÑÛĠEl½n˜† Së%ÙĦž€öÑ_ÑË(yc£żÀŻqb]ñeôġ&Ħ1q‘ĤżPÛjż-Ż)nş²Ĵ'5|^ށQu.íVžVë9…$&׈‘,˜7îĤû$ŜH:o*0Vµ>ĞŜ„Q+uœrRĞÚ½ìöżˆbŸ‹6Ġ)ó­“È„ŭ‰İjMŞ1JÍbXóxġn”ì‹›>DÌŒ/ı||븨Ԍb›T¨Qô<İŒ-ŸŬH*£Ĉ‹ÛC–µĠK‹]ħ%Qhä×ҝzá°6İùaħċ¨„V{uĉÀħܓRĈšyWö#5ĈÉʍÉ5v‡póó¤Zo)µjVêŬ…gĈ:‹½( •µ×ĊS…Ò/$#TşZW.gJÙFc)³{OúŻğâYS\9G”ndMQÚĊîŠÒ¸x½ċ„}ٕşŻŭbJŽ'céì8İܗFUÔŝZğ( d—AUšĤAöċRújgg>ÇqžWó3Ees‚J6“¤rXL(Fó‚Ċف êí'›v4-ÔŻ¤ĤPÏZCş'²ı’›{5nzMŬħn˙ö*ş™ĜĉĈKµÂµ°™ šòNÎ2şVÎŜ†\uN3ğ:E³Èġ´+s[U!İL…çé0%³B&җ:œ ñó$F˙ĤZ£U]ÁÑeԍ3éħè(ħħş˘â¸`ż•³Eş™.+Ԃl JcŒˆœ?‹Gçœ{Ŝ ³ŸttìŒ5y½GÌÑñr&MwÁT5[dêOÌĞĤúǔ–÷ó"ĉžBEŬj—Ĵ˙)`ëä|:%í\YŻĝ])6]Şr6{3Ġ\PĤAÓıÀKÜíËì ôBi UÏْMÄ6ŬtÚ˘NĊğYülX¸ï:âÉ]ú$ò“ğĉp'İĠĉ3VĈY›ìĊ„„\Û¨#NŒêF)Ĉí—bòšj&'×Lîž!W­ċZ}ÊdIÛ&ËjßĠ8v#Z£öĝ¸N¤üËİ,t|ŜÌëı,êѵáġħ´píwĴü™ _ĈW_Ĉ7|™òĤéé˘?è˜ä²|Ĝ’Éİ~ĈÌ%™|9$ûNħ$™ÖI#_ÊĤg"$Éh!’á*³S“İé&BBÔ Mfĵî-P6żvèŭ'Ĥż´ÇòiCFC&Íó¸$½jȄß-ätE…ċd÷5d%Ĥ–¤?HV{gğ?¨ÇBhÜÁ‹j§zëġ5½Mh ~‚#µµNd°2çÂӟ7O\™CfşKġżŠ]”y ğŻİOŜúÎV°Ÿ9à…ü$AG1+!'²Új3¤“ÇĜ ĉÉô]fŽ~Ş'£/‰Ŝ’Ylİx”jĥ”şT”ŠËr˘/S“ıÖeךĞ••ş’jÛĠW·c(2Kjċ@·“=šÍrŭ£IşÔµ6w+‘ÌqÓ$É9,Ŭïê1ç¤“éż³Ħǜ6XÙX/‰ûİ_4˙\5[x0û§˙ġq!ĉĴĴ1sDÛ[˙‡Ž˘iîÜÚOxiħR½W‡Qáù“ÊK+Yó jÙù7 ;]-oŒÒ1/ÉŻK£t@‰y,ä‰ëLb'ËÉ0ñEf/_ÍWÜ´tŸ4/sŝ•²µdÔ8ÓT Ÿ5ß1ѓħTìöè.ġé_h˜*)Ÿ £!€‹çŞw)ßJU`WĤsÒpPéJX#ÓĥVĤ'Ĝx%li[/Óo½Öu/ı.vïKĦq]ĴÌÙkùŞĉeÁˆI)ŭc·6"ĉĊµìĴMĥ9'‰“Ĝdïež ĵ}¸Ñ…ĈlHT£ç˘j>˜q†o;ec5´ëĉžË½Y~ĉ' ˘ì6vË4]3 )ƒıWqhıĊòöY\Ħ’`ĉáHÛVf•ŝâ3—^âşôbҋqÓ÷ÖÛÒËrî¤œĦ*VĊKèÊ ˜™LÊzéŻ,bnŠ :œ ½Ĵg…Iòڋ~Q{ÑûÁ2Ż ˙ÊrÙcےœœ]–•m=[;7,‘èVÊ m7ÑXÁUßJÊVê(QÙ(ŜE"ĠaGğw#ŭ‹‘·]°ûv-벜ÜÜsQşŠ.şqU' ÜߗUë‰çoɓ[TÚë÷JÍ£ñ›lĉú0”ŬÓt•T˙$˙zŭ~e^ŽnfÊŞĞĞ~#fĥK~¨ž6­L§a§í”_à$ĴLv#cL\Km2dY’ÊÁ#uö qPÚ'´½Ë…“ĵàgİÀÏb‡Fİ•³6ÛY9ö]„ZŞ=…Ä‚$4êWXħ´Ç gžgİJ:çq?oyßĞ›ğ1§Ë°f³çĤŸw‚ı˙×Ŭ¨HĥÜ÷sîÑÁ‰êVáÖôğĉĠˆlÉ/áĵäëJ†‘z›Ëċ燽™,áMQzLż}yˆcÚ)QbÉC\ŻsZU§C5²Ğşbԑ0ħĈ.÷&[Hƒh¤e˜şÈ-£¨E5•:éÜ_Ù&g\ğ”‘+ĈR²s&ÏêĈ7öĤŜM½”#%8!ħDĞ›Œé•SXÉ‹rR[셖zŞĜoï˜H0!´$˜zÏSùĠ‚Ñ ĈŠY0JŞy&3˙C/™‘ğïġt”ĉĤIĉ.KUsúŻn,ÌۑúĈÂüÉÍŜËÚLbŝ´z½Áä"#ż‘ F%ĘËbĠN*“äw.:*UdĜ\sŭ2R;ö˖LÚQ÷Ğ Ğ`']w°dZ9a´˙@ÇÎĤNi0ŭƒ~µŞàÊ;~g³żêxş½W*˙VJŠĉ5ċ€ĈZ*i:ô6eÜı< ]ıµš/8 yˆìÔCJSéù)bŜ#ğîX?ċ^p}Ö&jߖ;ħ69›üNDzxö8YtÙÎy½=LÓ6T‡ĤŜ_¸ĉaëIӘ—Ói–§MċÓŭqâŝ|'%÷OŻúçzÂÄ·O˜Ê½ż~!ž§“‘(À‚Ez€ ġST„Ú@È%ù•²%‡×#dÚVH°Rv†Œ£˘¤z•‘_´T;)mKÈے*ë$”àDG+dżó“Àŭù6Ï'YvŻ6˜Iîċ“ŭ”–U_NcDžûrÒAÔBŠŠ–*d˘ĵXV-–j­ƒw\rÑÖïsx™µé$RĞ=~y‰,•ÁĜ¸ŜĦt*£ˆœf8tıè“*.?uuÈm¨CñĥêkĦ*Ĥg\žqòhgeUwG—8u :‰£k ĞşFEùôŜäԕúñÔT,şê†ÌQ£¨Í(aħÚ^Pê¸UVŒ´˘Ì/zŞvçb픿p5…]KEu,ÈDğ[ËÔİöÓX=gGVkòŒy–Ĉ‚yġUŭdñŞÄg7ìtW:VÔ³ĠûŻ[iİ='·X&Î=ÉÜçܵĠe[Ġ˜3ßĠpöŬŒD¨ ŞşıôütWâ;ğÒÌÑacħœbMŸY§.trЉıSċtl?QÇğĞġwT=ğO=k¤rúÊÍÊTnÙW•˙É|ğгêŬ5œ{ﴵĆ*“µ[ġ0RĉrŭÛaÏğ˘6.‡ża_“ĝ“›äÉi÷aœ “vgħë6³ĜĊĥ"}ĝJ÷w@ÎK1÷$ǐzĠ Z8'jQáa!ëÛpñşğ?Żì-ìmíĠêXœK<‡;Îȸ;`Á˘Aí7ö\Ŝ²ldr•ÁD¨zS”Ñ@„jB)%eï\Ğ֔ĥ2íë„ò99Ħ‚q6q;'dĞĝ~€,fïD){GuZèÄ3F¨žb 2êŽÖBb˘5IÏú^’†,à÷i[cçYlžŸ]› ´)Ü_`|˘˘_Ş^<žĊV÷ZQBì{J‘ÏԙġħöBÚ;GÒüOÚäÍĥÔN1T]‹nĴI– 2-ôħRŽ=A!(%#ĤĠ¨<ÇӂßWžŜŜòÍúCÇÙÑ{)!H=x´[ɅBZfüQѕì—y%Ċ—ß—7šëR„òzž_(­Góc´ú>y“kġóĊĠĠp1/ĜncÎWÛÉĠ³BZÌם˕ú\Ş^Ò¸óĥXKŬŽĴbž…n)jşĵħ.o:3О×ĴĝvÖŜEw”tUħġeĈj7ħc)' Ġ†9ŬΘ=Áj?ĞĉìCµêßp[ÎĞ< #%3Suı—mĥv03İiĜŠVeÊ0DKŬñ`ŻîYĥO·[1żœËÊŞŞ–sŻ%s޸l,@Ĝ Ñl´;öĴS£G¤QŝV)}W<"íҎRŽge;şĜLü½ŬiïÏŞöUŸ^‡G“ĵTRCĠßë"iĝ‰½iĊŞġóJĈ&e²Œ‘ŒÛŽäjeQ[}£œƒL+B^9ĠĜ+WŽ—™_ˆğĠX^ÙĜŠ×bİÇş™Wͅ{Ŝ4Sn›Ħ^t)šñƒT÷ğZWÓŞĊúfşĊ9µ™U­œóîċAġ×rl}S_é2–›ž•OŸ3띴ġĈSżÚĠ;ğĦßE ĥJÚŬ*§—KĈ)Àǵ¨lMÔw7M—ë„éĠœDi´–_~şÑ[S_Çá*<š•OŽË(™Q,Ż4vü˘™şznC=ĞŬöaÉSħċ™#—Òŝdyi˜ϒ@¨ÏjċµK|á¸ĵ~1j÷qy9ŸY| [-ċKżeÎıßwW+fÚÇÀ 3^L²}4ÓèŸîĞɆĵKğÛçċ$IJ‰ħUHbw~ĦÙµü’³Hâ"d6X,qÑ÷ ]Fíµ8^F›żUÌë°Í’Ä<™o ȧÍr7Vê*ż™vÌTK’ı…mşVF eÛ´†÷Ûéô^c]­ĥË*zYËŝ1ğ?ğkżlÜìkĵLÖbä_ZÒ>Q1ÌÊîÖU)ż]<7/f6ñlÂòş”êħiV÷ÂĜ0x6`Á‚Ċ³ı‘6g¸›^É]r6œ”%ÔŒP~›N*ɆLß5 ×j™\RVhĊßi[#x!•*'dÌuB šŠR… …$4e…RUİ uíé„îÇĈĊ(ÙÜ30i6~ırš c\Ö ˜¤ž7µyY³ÙßÚyĠütŠğo~ÙgĜ%ÎJï£ò5[¨H‹r~1Ŭh°·•”÷îĊ qi÷Êrߢ/ĦĠî­JŬd–iÍŭ8ÔÖ{£igMÊméŒs[tJV~·‘d,7.\ǽ’ŝ´˘´n7xÊù„ŜÇw>ˆIەߎ³m“UŒê.(Â$#äÁ(İ^żäĞ4ʗäŞKzÈZ¸YDu‹ú%óîQn ν|>>Ĥh¤$›T sóòÖĠ*aŞU%lĵeĊ?4Żû•id’p‚ü˜kú1ŸY¤6w]91Í –ŭc„ÓäÈ,ÇÉ1ï'ĦÙ!í‚˜{ÁMÜ:5X°¸1rc„ „½Kİĵ.^ȍ‘ÁŞNhş“ŞA##h%#Ch#T¸,Jĥ‘ÙŜĵR*rZċuIBĉ\”Êw¤¤?YĦr`*5ħVBz˘òNê"á˘Ġ2 yÁKé1Z-UÓĜQ0M×%9ĥ BœfYîï´Tnc‚WċġÚŝŒí4ÁĈ°mĉ>ŽXó*œ‹2ióİG½5à{Ŝ]Òĉdìa¸ŠÛKÇá&F)-aéwžFZ¨+z§_sÀÜnr­rş[˘ĵ—³bTÚì!ïlypRŬϧNʊQá…;Ż×Šóbì¨ÚÖÊ]ÄħïgpħVN\”yrRM)v’Zġéµ+•UğïôR)á~euĝ¸°²yO?L6ËB(óuž˜0ĥ8 Ġı×Ζş‚Ö-U˜ħ„ßĊTu-+áÊĥ÷o.)\~×|QġÇşbÔ/èVj˜1qœş°ù‚ĝÂàßĊfİĥ$+ e|QşŬ$ߣ])û]ñ­N܍e5]5_êÄG-M¨Mš4ûFş X°`Á"ğĴ޵ÏZZ“Y ”Yt2M+•à ZÊxĦ‚PQ Ħö5BiĴ•i+TŭĊ İ V¨?D+s^$İóMwBùDtKT"tğB…­îş„'¤ÚıNŞĉ’Úb¤.Q(/ŽÒÁ´²qû{ğĠ:Y)rXĜ’§ŭ=şÓC´ÓVM[‚3 \’ŞrħžĉXEóÚrħß}ùŬkıžçC\ĥ´z1mOÚoÊ8_µ9í(Ĉ½Éu^~17ĉ’`2:ş› 萄Vħ\Ô{ Ÿ—M–'Ġürŭ(c’““Y:Á /JŞöLxñò÷†2QÈf‘ʲaA´2ĵèxj†sTké^ÑZLÑZjÜ>ŜŞÖâ§Z‹}x­yŜ[ž ÊBQŠOŻ^íkžĝNóœJ+@&İθîLuİÏÛ'‡0í=„§'d‘#˙#ÂËG¸mĊ,Œ—°4^Ô²èÈhĵ¨ċċìaO2R>îşèêşĝ…ë×]ë,X°¸.{g/NÂÊ$Y*t…ĴİÒO^(%DÚ^!+E™Ġ[#´½VhµÙ %ƒ°Buy¤ŞÑxĦŝµyĦ­TŽĤ(ċ •îRZ 5…³B ŸOb‰„.—VI9PI¨WD/$ŝDĦlcÚ8ħE^ÊI R䔔˜í˘ĥ³#R’ í˘ÂvUp×)ı<BŭD#µ8a½G£ĵJ=£´Úh{!œlŜjì¨on}UĴpíËZŠUbËWÁÊ´wˆ~Ŝ’[ŜÒ^[Â'-#éĝŝ,_‹Ž? ç{Ù¨ö6çÉë~÷î0Żjh_­ĥ·`\żÉ/)mğ—Tœe£úvÓekéĉ°‡²{•^Âp)‰T˙x>.ĤŽĉÊÒMv]ŞáR’£Ŭ™¸ċ9²ê.Ĥ·¤ûBúÉ?#ĥìÄj]ЧÖÙ2ŬMR(ԛéÒvÎŜl|úl$ĉß;Uš(Sef—óÑs ĠijıŒëÊvg^—ñÉ·(v£İx~_܈5°`oâŒê@)t Ċ$¸SŞ•bj’ËĊ,X°`Q\>˘¸h™uE#³F'TdH)!Ô:³P-•Ħ@¨€ˆz)ßz™uU+” µoèdÎ İd I(وRB‰0”•ŞÙ´PB—$””HyĦ,?*&İÜ6Ryµ’”0˘“PŜ•è…Ò£XĦl<ŭC·“:xRĠ\ĴTĉ˘˜â˘sÒ Áœ+FŜi99§żŽŠ).ÚIé"Ĥ“R\Œ#T'uÖô£‚ä7”ĵĥşÑ÷Žœ^´P2Ħè„ĵ-ï…zžÛÊ~”ËeMJ…t£ş-ŞôÎ×s$ݲ{Ş}£ÉïVdĉÍ"s­œ–’şJ ?.–zasÁFëŞĥ¤jKMŜ=jKëÙ"ퟨµeßÁ;É:9ĥ}_ŻJĊg)>K•ílİ’fĥH‡U“´·YH€ì–:" EùŻ–  X°`Áâ°żçÈ, %şi'³'”BI½m/´Äi„ ™Ħ’.FKċ’éF¨À†2ĈœPï¤T)İ “7:'Ӆ•VbrŒ”ï'u|ò+ŒĦ­Tí +ĠŬ”Ĝİ;RĤê„F!Jé I?ĥ‚¤¤ż›Í‚ĝrmkWĴ:¤6˜%Š!ˆƒĝ÷‚Èí‰)•t?––Žk%4ğ–ˆĊt£¸2 ’Vƒ”_grêıâZ'¤‘M’ oô.›ĉAté]ŭ0}DuÏÏú§{2‰ó uL”Úä#{R„iíAÊ}+èeŝ ş;†İ1â"FızğĦ•”/$ö)ċ…ŽK"§:)Pv<#t½ÔBo ˆĠĞ Ŭç„ ˜ ċÖEÒaVꧨ˙fò$6÷Ža,X°`Á‚ ,ÏOżñÀ/UŝH(uŒÌ„’k²QhBIhÁDK½˙/´üĊʏı8BŻ, ÂVèŠc„–—z¸ZŒòR™yŒûÒBç[Ô2ëž^ʏ肐Û"$%EĦeÚ ô²t0BBháŜ îJAˆ+TÌ Ê“*&%-zĦëƒZTvÌ xĵ‘êżB\/ô0$” Ì öK‰&UÊNè!V™K½ó ¤˘ •*•zİFĉV‘.De êÔ°ùĤK#€ ,X°`Á‚E  *T¨PĦB… ġQí *T¨PĦB… w,X°`Á‚ ,X°Ŭ&×+‰ñZċZŒŜÜĵÊ/ȸ”Köżĥ>× ³!˙;×ósı]˙żÖċOúoFu‹ŭwl²Ú˙Ş'äżMıĤsıˆ¤ 7Żó?˘ùó~ĝá‡~ĝ‘ŭQ!òżżÑ÷€ts>ß܍żE› цŸß†ÛÓW˜ùá‡~ĝᇟĞ˙„{£“÷Áĉ2àúžYBÙjÖİ›ï´Ò9;‘(R¨ş˙Pß\Ì˙P]ò6˙mŝ”kÁġí^&Gċ‰}ó·˙”ê#†úiî†O˙S“ğáË˙ġĝéjĝĜŬĤ_.d{ûÏ7]˙żŬdCLŬ˙¸ž~Ü˙ï¸ÙĦÂóDPùr˙—#ÄÔ/ç-_~ˆĜŬyšDüύn-ĤûïkĜn?ĦĜqwüdğUŭ¸µ7ġÓûŜt#BM<’ğɧ˙MÚi“47¤˙(61ĥÓ7cN?ĥv×ÜĊÉĦyÜÓĝúŭ`ÏĜ:kżTŬĥÇéá€éĊĉĊFı“úšmGΘù|JO;½;ĤR䨅I?VН~vR޽;5İvî1ŜêÇÓÎ:îdšî‹iĈ·br<ì`j5ÈlCş;LNÉĜÜĵÙtç£m_&Ûñäéċ߅|zF>œ{ӝt“Ŭ) ëÉ÷Ĝ‹äĵq3NöÓ=ûvW?uS´m~lVŻ/ŝĉÇÀŜĤ{^7{ĵ˜E‹ü\_Ĉ–ŠÍ£>íî˙İ'Óĝzhœ“‹ƒ ĥúI¨gÂĴŸ˜zÓҏ÷„Ò(Í ïzĉĦħirY˜}×ÀنğFú‡“rzŬħÍo˙7½‡Ô ÏWëĈEŜşĈu§{l*Û#Loeĥyéz¸ïuí³OµÍ´;ÛíİŬë'ûŝ“u=òqĵoúĤÙ½˙ó—·¸è>\KìÚ}|~*<^ÖüÖŭÚ5‡OlšÇĉżĜşÂL7O™jß°Níġħ2ê!áq€ùpu½oÓÏà×ĜàoÁiĠoETùżí-êœWıĜ˙ŸÑ7ŒÊycÎÌló—{âeSżÜ˙½ë¨ÊÉdû/§üċœÊN÷îĊ—ïäŝóI9/ëigʗġ—ğòċó†”żì]ŝr7|9ןœò—cŭò}3BŬAUżœ·ÙŽ›‘·9ŻöûQv0ŻNżżœMwßA½ĝòÏfŒÛœw¨ûöO&>’ıßÚŝËڕ/ûÇ/ërßŭ—Í}íâË&>|9Ŝ7Ĥòe÷œlUPynİë÷ÍçJĠ·£Ĝ<´ı*oÓO1xŬŬʅo˙ˍa3Ğ˙VÜŭ ¨tÌŭèvŻ{³îbż‘ıyû À˙íğ~ïm˙œ•S×§˙éÛż˙› ÷Ç1|—Ÿ‡ÔÏßןöż[Ÿ–ş˙ó˙÷˙ßÁ˙ŭ˙Ċ8ÑÈF… lincity-1.13.1/opening/iconlist.txt0000644000175000017500000002345610002571332014220 00000000000000## size 1 buildings green 0 0 fire1 1 0 fire2 1 1 fire3 1 2 fire4 1 3 fire5 1 4 firedone1 2 0 firedone2 2 1 firedone3 2 2 firedone4 2 3 burnt_land 3 0 parkland-plane 4 0 parkland-lake 4 1 powerlhl 5 0 powerlvl 5 1 powerlldl 5 2 powerlrdl 5 3 powerllul 5 4 powerlrul 5 5 powerlldul 5 6 powerlldrl 5 7 powerllurl 5 8 powerludrl 5 9 powerlludrl 5 10 powerlhd 5 11 powerlvd 5 12 powerlldd 5 13 powerlrdd 5 14 powerllud 5 15 powerlrud 5 16 powerlldud 5 17 powerlldrd 5 18 powerllurd 5 19 powerludrd 5 20 powerlludrd 5 21 raillr 6 0 raillu 6 1 railld 6 2 railud 6 3 railur 6 4 raildr 6 5 raillur 6 6 railldr 6 7 raillud 6 8 railudr 6 9 railludr 6 10 roadlr 7 0 roadlu 7 1 roadld 7 2 roadud 7 3 roadur 7 4 roaddr 7 5 roadlur 7 6 roadldr 7 7 roadlud 7 8 roadudr 7 9 roadludr 7 10 tracklr 8 0 tracklu 8 1 trackld 8 2 trackud 8 3 trackur 8 4 trackdr 8 5 tracklur 8 6 trackldr 8 7 tracklud 8 8 trackudr 8 9 trackludr 8 10 water 9 0 waterd 9 1 waterr 9 2 wateru 9 3 waterl 9 4 waterlr 9 5 waterud 9 6 waterld 9 7 waterrd 9 8 waterlu 9 9 waterur 9 10 waterlud 9 11 waterlrd 9 12 waterlur 9 13 waterurd 9 14 waterlurd 9 15 ## size 2 buildings blacksmith0 10 0 blacksmith1 10 2 blacksmith2 10 4 blacksmith3 10 6 blacksmith4 10 8 blacksmith5 10 10 blacksmith6 10 12 cricket1 12 0 cricket2 12 2 cricket3 12 4 cricket4 12 6 cricket5 12 8 cricket6 12 10 cricket7 12 12 ## firestation 13 0 firestation1 14 0 firestation2 14 2 firestation3 14 4 firestation4 14 6 firestation5 14 8 firestation6 14 10 firestation7 14 12 firestation8 14 14 firestation9 14 16 firestation10 14 18 health 16 0 market-empty 18 0 market-low 18 2 market-med 18 4 market-full 18 6 mill0 20 0 mill1 20 2 mill2 20 4 mill3 20 6 mill4 20 8 mill5 20 10 mill6 20 12 monument0 22 0 monument1 22 2 monument2 22 4 monument3 22 6 monument4 22 8 monument5 22 10 pottery0 24 0 pottery1 24 2 pottery2 24 4 pottery3 24 6 pottery4 24 8 pottery5 24 10 pottery6 24 12 pottery7 24 14 pottery8 24 16 pottery9 24 18 pottery10 24 20 recycle-centre 26 0 school0 28 0 shanty 30 0 substation-R 32 0 substation-G 32 2 substation-RG 32 4 windmill1g 34 0 windmill2g 34 2 windmill3g 34 4 windmill1rg 34 6 windmill2rg 34 8 windmill3rg 34 10 windmill1r 34 12 windmill2r 34 14 windmill3r 34 16 windmill1w 34 18 windmill2w 34 20 windmill3w 34 22 ## size 3 buildings ## (note: industrylq1 should be listed twice) industrylq1 36 0 industrylq1 36 3 industrylq2 36 6 industrylq3 36 9 industrylq4 36 12 industryll1 36 15 industryll2 36 18 industryll3 36 21 industryll4 36 24 industrylm1 36 27 industrylm2 36 30 industrylm3 36 33 industrylm4 36 36 industrylh1 36 39 industrylh2 36 42 industrylh3 36 45 industrylh4 36 48 reslowlow 39 0 resmedlow 39 3 reshilow 39 6 reslowhi 39 9 resmedhi 39 12 reshihi 39 15 university 42 0 ## size 4 buildings coalmine-empty 45 0 coalmine-low 45 4 coalmine-med 45 8 coalmine-full 45 12 commune1 49 0 commune2 49 4 commune3 49 8 commune4 49 12 commune5 49 16 commune6 49 20 commune7 49 24 commune8 49 28 commune9 49 32 commune10 49 36 commune11 49 40 commune12 49 44 commune13 49 48 commune14 49 52 ex_port 53 0 ## im_port 52 4 farm0 57 0 farm1 57 4 farm2 57 8 farm3 57 12 farm4 57 16 farm5 57 20 farm6 57 24 farm7 57 28 farm8 57 32 farm9 57 36 farm10 57 40 farm11 57 44 farm12 57 48 farm13 57 52 farm14 57 56 farm15 57 60 farm16 57 64 industryhc 61 0 industryhl1 61 4 industryhl2 61 8 industryhl3 61 12 industryhl4 61 16 industryhl5 61 20 industryhl6 61 24 industryhl7 61 28 industryhl8 61 32 industryhm1 61 36 industryhm2 61 40 industryhm3 61 44 industryhm4 61 48 industryhm5 61 52 industryhm6 61 56 industryhm7 61 60 industryhm8 61 64 industryhh1 61 68 industryhh2 61 72 industryhh3 61 76 industryhh4 61 80 industryhh5 61 84 industryhh6 61 88 industryhh7 61 92 industryhh8 61 96 oremine1 65 0 oremine2 65 4 oremine3 65 8 oremine4 65 12 oremine5 65 16 oremine6 65 20 oremine7 65 24 oremine8 65 28 powerscoal-empty 69 0 powerscoal-low 69 4 powerscoal-med 69 8 powerscoal-full 69 12 powerssolar 73 0 rocket1 77 0 rocket2 77 4 rocket3 77 8 rocket4 77 12 rocket5 77 16 rocket6 77 20 rocket7 77 24 rocketflown 77 28 tip0 81 0 tip1 81 4 tip2 81 8 tip3 81 12 tip4 81 16 tip5 81 20 tip6 81 24 tip7 81 28 tip8 81 32 @ blacksmith-button.ppm > blacksmith0.ppm > blacksmith1.ppm > blacksmith2.ppm > blacksmith3.ppm > blacksmith4.ppm > blacksmith5.ppm > blacksmith6.ppm blank.ppm buldoze-button.ppm burnt_land.ppm checked_box.ppm coalmine-button.ppm > coalmine-empty.ppm > coalmine-full.ppm > coalmine-low.ppm > coalmine-med.ppm commune-button.ppm commune.ppm > commune1.ppm > commune10.ppm > commune11.ppm > commune12.ppm > commune13.ppm > commune14.ppm > commune2.ppm > commune3.ppm > commune4.ppm > commune5.ppm > commune6.ppm > commune7.ppm > commune8.ppm > commune9.ppm cricket-button.ppm > cricket1.ppm > cricket2.ppm > cricket3.ppm > cricket4.ppm > cricket5.ppm > cricket6.ppm > cricket7.ppm ex_port-button.ppm > ex_port.ppm > farm0.ppm > farm1.ppm > farm10.ppm > farm11.ppm > farm12.ppm > farm13.ppm > farm14.ppm > farm15.ppm > farm16.ppm > farm2.ppm > farm3.ppm > farm4.ppm > farm5.ppm > farm6.ppm > farm7.ppm > farm8.ppm > farm9.ppm fast-offl.ppm fast-offr.ppm fast-onl.ppm fast-onr.ppm > fire1.ppm > fire2.ppm > fire3.ppm > fire4.ppm > fire5.ppm > firedone1.ppm > firedone2.ppm > firedone3.ppm > firedone4.ppm firestation-button.ppm > firestation.ppm > firestation1.ppm > firestation10.ppm > firestation2.ppm > firestation3.ppm > firestation4.ppm > firestation5.ppm > firestation6.ppm > firestation7.ppm > firestation8.ppm > firestation9.ppm > green.ppm health-button.ppm > health.ppm help-button.ppm im_port-button.ppm > im_port.ppm industryh-button.ppm > industryhc.ppm > industryhh1.ppm > industryhh2.ppm > industryhh3.ppm > industryhh4.ppm > industryhh5.ppm > industryhh6.ppm > industryhh7.ppm > industryhh8.ppm > industryhl1.ppm > industryhl2.ppm > industryhl3.ppm > industryhl4.ppm > industryhl5.ppm > industryhl6.ppm > industryhl7.ppm > industryhl8.ppm > industryhm1.ppm > industryhm2.ppm > industryhm3.ppm > industryhm4.ppm > industryhm5.ppm > industryhm6.ppm > industryhm7.ppm > industryhm8.ppm industryl-button.ppm > industrylh1.ppm > industrylh2.ppm > industrylh3.ppm > industrylh4.ppm > industryll1.ppm > industryll2.ppm > industryll3.ppm > industryll4.ppm > industrylm1.ppm > industrylm2.ppm > industrylm3.ppm > industrylm4.ppm > industrylq1.ppm > industrylq2.ppm > industrylq3.ppm > industrylq4.ppm load-button.ppm market-button.ppm > market-empty.ppm > market-full.ppm > market-low.ppm > market-med.ppm market.ppm med-offl.ppm med-offr.ppm med-onl.ppm med-onr.ppm menu-button.ppm mill-button.ppm > mill0.ppm > mill1.ppm > mill2.ppm > mill3.ppm > mill4.ppm > mill5.ppm > mill6.ppm monument-button.ppm > monument0.ppm > monument1.ppm > monument2.ppm > monument3.ppm > monument4.ppm > monument5.ppm mouse-confined.ppm mouse-free.ppm ms-coal-button.ppm ms-cricket-cover-button.ppm ms-fire-cover-button.ppm ms-health-cover-button.ppm ms-normal-button.ppm ms-ocost-button.ppm ms-pollution-button.ppm ms-power-button.ppm ms-starve-button.ppm ms-ub40-button.ppm norm-offl.ppm norm-offr.ppm norm-onl.ppm norm-onr.ppm not-implemented.ppm oremine-button.ppm > oremine1.ppm > oremine2.ppm > oremine3.ppm > oremine4.ppm > oremine5.ppm > oremine6.ppm > oremine7.ppm > oremine8.ppm organic-farm-button.ppm organic-farm.ppm parkland-button.ppm > parkland-lake.ppm > parkland-plane.ppm pause-offl.ppm pause-offr.ppm pause-onl.ppm pause-onr.ppm pbarcoal.ppm pbardown1.ppm pbardown2.ppm pbarfood.ppm pbargoods.ppm pbarjobs.ppm pbarmoney.ppm pbarore.ppm pbarpop.ppm pbarsteel.ppm pbartech.ppm pbarup1.ppm pbarup2.ppm port-button.ppm pottery-button.ppm > pottery0.ppm > pottery1.ppm > pottery10.ppm > pottery2.ppm > pottery3.ppm > pottery4.ppm > pottery5.ppm > pottery6.ppm > pottery7.ppm > pottery8.ppm > pottery9.ppm > powerlhd.ppm > powerlhl.ppm powerline-button.ppm > powerlldd.ppm > powerlldl.ppm > powerlldrd.ppm > powerlldrl.ppm > powerlldud.ppm > powerlldul.ppm > powerllud.ppm > powerlludrd.ppm > powerlludrl.ppm > powerllul.ppm > powerllurd.ppm > powerllurl.ppm > powerlrdd.ppm > powerlrdl.ppm > powerlrud.ppm > powerlrul.ppm > powerludrd.ppm > powerludrl.ppm > powerlvd.ppm > powerlvl.ppm powerscoal-button.ppm > powerscoal-empty.ppm > powerscoal-full.ppm > powerscoal-low.ppm > powerscoal-med.ppm powerssolar-button.ppm > powerssolar.ppm quit-button.ppm rail-button.ppm > raildr.ppm > railld.ppm > railldr.ppm > raillr.ppm > raillu.ppm > raillud.ppm > railludr.ppm > raillur.ppm > railud.ppm > railudr.ppm > railur.ppm recycle-button.ppm > recycle-centre.ppm > reshihi.ppm > reshilow.ppm residence-button.ppm > reslowhi.ppm > reslowlow.ppm > resmedhi.ppm > resmedlow.ppm results-l.ppm results-r.ppm road-button.ppm > roaddr.ppm > roadld.ppm > roadldr.ppm > roadlr.ppm > roadlu.ppm > roadlud.ppm > roadludr.ppm > roadlur.ppm > roadud.ppm > roadudr.ppm > roadur.ppm rocket-button.ppm > rocket1.ppm > rocket2.ppm > rocket3.ppm > rocket4.ppm > rocket5.ppm > rocket6.ppm > rocket7.ppm > rocketflown.ppm save-button.ppm school-button.ppm > school0.ppm > shanty.ppm slow-offl.ppm slow-offr.ppm slow-onl.ppm slow-onr.ppm substation-G.ppm substation-R.ppm substation-RG.ppm substation-button.ppm tip-button.ppm > tip0.ppm > tip1.ppm > tip2.ppm > tip3.ppm > tip4.ppm > tip5.ppm > tip6.ppm > tip7.ppm > tip8.ppm tover1-off.ppm tover1-on.ppm tover2-off.ppm tover2-on.ppm track-button.ppm > trackdr.ppm > trackld.ppm > trackldr.ppm > tracklr.ppm > tracklu.ppm > tracklud.ppm > trackludr.ppm > tracklur.ppm > trackud.ppm > trackudr.ppm > trackur.ppm unchecked_box.ppm university-button.ppm > university.ppm wallpaper.ppm water-button.ppm > water.ppm > waterd.ppm > waterl.ppm > waterld.ppm > waterlr.ppm > waterlrd.ppm > waterlu.ppm > waterlud.ppm > waterlur.ppm > waterlurd.ppm > waterr.ppm > waterrd.ppm > wateru.ppm > waterud.ppm > waterur.ppm > waterurd.ppm windmill-button.ppm > windmill1g.ppm > windmill1r.ppm > windmill1rg.ppm > windmill1w.ppm > windmill2g.ppm > windmill2r.ppm > windmill2rg.ppm > windmill2w.ppm > windmill3g.ppm > windmill3r.ppm > windmill3rg.ppm > windmill3w.ppm lincity-1.13.1/opening/icons.png0000644000175000017500000021402010002571332013441 00000000000000‰PNG  IHDR@P$ìf“PLTEAƒĊƒAƒƒƒĊƒAAAƒAĊAƒAAƒAƒƒAĊƒAƒAƒƒƒĊƒƒƒAƒƒƒƒƒĊƒƒĊAĊƒĊĊĊƒĊAƒĊƒƒĊĊƒĊ¨J-ÑsVâfR5 )19AJRZbjs{ƒ‹”œ¤Ĵ´½ĊÍĠŜĉîö˙Ċb )19AJRZbjs{ƒ‹”œ¤Ĵ´½ĊÍĠŜĉîö˙ ))1199AAJJRRZZbbjjss{{ƒƒ‹‹””œœ¤¤ĴĴ´´½½ĊĊÍÍĠĠŜŜĉĉîîöö˙˙ )19AJRZbjs{ƒ‹”œ¤Ĵ´½ĊÍĠŜĉîö˙ ))1199AAJJRRZZbbjjss{{ƒƒ‹‹””œœ¤¤ĴĴ´´½½ĊĊÍÍĠĠŜŜĉĉîîöö˙˙ ))1199AAJJRRZZbbjjss{{ƒƒ‹‹””œœ¤¤ĴĴ´´½½ĊĊÍÍĠĠŜŜĉĉîîöö˙˙ƒƒ¤ffƒĉĉw )))111999AAAJJJRRRZZZbbbjjjsss{{{ƒƒƒ‹‹‹”””œœœ¤¤¤ĴĴĴ´´´½½½ĊĊĊÍÍÍĠĠĠŜŜŜĉĉĉîîîööö˙˙˙Y’N pHYs÷NċtIMEÔ!tûŽò IDATxœìŬÏoWžï})ȋ™‰€Ì„`XrÏĠ‚Dä—÷0#dhè=XZèû˜2=’}Xğ°C²‡_™‰BßÀŒHĤÏċi Œ@jé)ôs €‘$ÇïF`éIè­Ö£¨ġ(ôŭ̵ëQ²‹ItÀpì!ĵQKŸMúŝf„IŽd úŝf„s,5 }3˘ĦŭşqBB˙=€S˘³WżÎĤˆğœŻ{—/ĜïB˙=€S˘²àWżŝġùùŠÉ†êċ÷Êê pf¨aŻŻ\ħ)c‰ Wĵ—[–ù #Yŝġ…+fáĴúûW1bö_™ċ ıċ|ŭ×"e ËĦ˙À)ŭŝŻŻüZÍc˜|(_~oÀ2“èp†¨™ ıóÉìħR3ÇXŭ÷N‰D$x/żü^vıQıúïœy­î˙ŻĜ]Vzù°Ëœġß#@àĴ=˙ŻÍ ùŻÌ'˙ò{fù•_żç֝ċ W8+ÔAŸ¨wB–/¨ċ÷œċ÷Ìò…¤ŭ…¤ú_™ŭO˘˙7Š Îò{:%Ìò{ĥÇŻdˆ˜öıġC˙=€SÒ¸bGúÄrgùBş|Á­ż—kŸYŭ÷N‰ŜW£ aèèx/]Î×ġ)„Ŝċà”42Ñ`c9ôß8%úÑ#"âs$FœYI.<}ú4“Ér§ÓèÜ­ëċN£q;ñ³Û·;œU&,KKN‚ÈċŽYñÑé<­/‰Ï9ò0Ñħ¤2¤…˙€@–dZ4ž.5L€¨ċNaı^Ë2@DpˆċÛ·Ċòż p†™Ħ‡ÈŠ%=â°Ë½\_c‘Nçn]ŽCäòíÛbùöŬşŜE€ÀYwX5T‚,é9dYŽ8ê zCDÈ] ˙"–evÔ;·˙‚œYvşüéÒÓĈ’3}n—ċÈC$ĈŬ§ġşJbùömıÌ.,8žŞW&7–ôpÄ]?UÇa݁‰<K,ßîÈéóÛbùöż pV5žÚXKK20<ËuµSг´ÔYŞ‹e}ĝĠíÛb™98ğ:%ä´ıx,éidıSW ˘ödĠġì‡LħÌ$:œaz´ĦcĞ’,wÔ²HĈÓğjYŒ@n˙ìv]$ÈŬ†…Ô9‘Î*{–š˙XJDôñ´£¤!Ĉ ò|Âğ"Q䉄bùĥZŬagUCpDÒé¤ËdıóônG%ä_äİ„"F:b,ÂLàÌJwZ=]Jk˜1ˆúcN#”cŬmDò4t‘u%ĴğœU&1ô§ ß²§ğò0^u1E!ġÛ˙rWŽAĜ…g–™:_J&ѽËKÎr$,-Eêšî\ÎÎĴFNèû˜*5÷úâ–Ώ½½½ŝ3 IÈŜVż{ĝ.š€ĵLJ‡1š€ìmííĊ1ž™9'ŝc0<5ٓcŝ³­-0$yïĠĞW÷öÄĝƒ MÈğ"A>{ö.Z]áòĠĞ[ïŠü @jˆı,˘CÈğ[œ‰V£Ħ²C¤Çğì Ož‰ö]5Fà\ˆw‹ ËıĈ²ÜşŜşŝiëBĞĠúôċÖ§­ürèû˜R­ÖË-myıĠş²Zŝâ‹d9ôŭLİ ÑË"*ÄÈc9’‰Ñ’Ë_|ñż~ûÛßŝ/ñİĊà§ĈÑË*=˘V$3Dä‡ñÛß.‡€)Ġzı}*’C>–Ċ7b9É‘ Œ@~büñòË/Ëü—?Ën€|úŝĤTk9˘ĤÎċîĞëbÙÈçżùÍo‡€)bCMƒ,›ïÒühµĜ…(ñİ{\×Ç`}Új]h}Úräݐ֧ËrGÖ§*?>7ò2“ç ŠqÇus6áġ–ʏÏûùç2@Źüä5K.ˆ‘ /НXżcħü›Ï#—Cß?À”COÍċL.È uħüÛßÈċßŝV-‡€).yŽżZ6!’]}˙SŞF ÔĉŜÌrèû˜R/_XVSléÏ/ç—Cß?À”ú+ż#ñ1Š|ûA˓^SğżĦ_˜˜!;ÈAÀYSÑA~öÙàŽxäġ”Ö„€}œÍ‰4/>ûìH|žċÖ}hY=ğŸċڗ­_•gœĥżúĞd¤‘&ĈgÙż¤çv×óHI=˙ûlŬŭ=ġĞFDœ6ÙÉy†™qˆ!ˆ·-Ğ{† ™öeë 0EŽrò`Ħ’˙ħ­:P½°bRÏ˙~}ÖîoèÇ&Fö~C@òn~½êú Hñ÷W×óŠ#ÏŭĦ>úˆĤDèÇ&fĜWôƒ^ħûŠ?˙ ½ü÷û_ÑÏÚŭ ŭĝÀÄÈŜoˆÈ 9݊ˆwŭœuNcÔÛş}èÇ&Fvr…°rG=ċŽÊJ:HÏzN= Ÿù×ÏŭŝÂú‡a pÚT/W dΑ?÷wA²ëV²~.@ ë 0=|½aوc„uèö”Ú pÒĈì@ !ۇ~|`bĈì@ !ۇ~|`bĈì@ !ۇ~|`bî5ïŬ“˙Ŝ1_ĊżÇ÷ĠÓŸ9ġfĥ~/ğĴ$ŝ]Uß q{÷*o/_½½Ĉ½;˘+żsOŭ{çŽèĦïÜyü¸Ñoˆ˙?VËn]äfZo6u ¸íe*\59rġŜ€ÛËŭ>ßíċÖ½½F³ÈyĊ˙Žóc3žÈÔŻÊ‘†³,Z]U£”’ÛóŞĵ½üúĦ·ÀxìÓHw%?Ù`2¤|—“`’•ÖŭÊo/ż~èí0Júó†yĊÏùݞÉHvY7j¤˙¸:@úċ·—_?ôöb¸ñ8÷Ovçj":ôwҟĞE˙ÄÎQˆvÙü°·'ö żÇİ—ß^~ŭÛ `ô=dW­>‰á€ù‘ Ü$·šòhÚ!‚˘—ċfxŜÛ+iz{ 蘒aöİ9†ŜĊdwb]ÍfkD熀ôÓˆÎ÷öġÇù××?Ê&œmÓ7ËĦ·ÀïV²CŽĉ=ğÉ‚¸rĠL™÷“ħˍÇıÛËîĥ*üÌí™@qê6€Bo/€Q²§ÈNzÜ3ûŻtŜ|ç^~ŬseWLFÎ]Œ°+{{2PĜ…SÍ?1{Ĵšï4í$vߌH²#ĤO[“?@Šë‡Ŝ^cĜI3dp€”Ŭf•b„Ŝ^£ş[÷í r;xo€Œ̘Ê^= ßN$@Ü_H€Ą̀îÖKÄù@ò·W&ôöß>—d?ž~ͤŭù€Ñ7àFNñv}_Ÿ?/ğ=çfœöĦ·À¨|ı_èÎĞÄŝ¤òÈßŜóÂĴÛ ` êÏmOžëàŬó:rĞd×–wÄsĦ·ÀéİQdDL˘ÀŒİêԇ ÜN-·ŭÀŒCHöl Û `TĤǰâDÈàñ_Ó¤|’mz{Œ…òħ⋙bûcÌFĊígۇŜ^cR2|À 0“:9Íûf³ÓİĠkÎ ù]^ž]_hßhŜ·uyۅß×ıßl˜z§‘żŭû…zèí0÷e·~ży£ÑlÜż£Ħ–M‡Ŭ¸£“ŻwruïrÉí%Ëıúŭ´^¸½|=ôöÍfS Ä'ѧ7oÜè¨e;b°ËN½“Ğ疛oO~Û(ż½B=ôöb8 úr9 ¸Ĉ 1(Ëv’päê·.Ç ÙċF§úöîú}ùÛÏ×Co/€QœäPôœC~JC.ëŸé½ÓÉ,›IòÛ+—ŝÂíe×½½FU‡žŸDWËrZÂÎIȰhĤËÊŭÎ ÏÔûP’ż}ĤX­„žÄntҟèe9Ğmç$ä­tÙ´j6UoŻZ½pûŝġCo/€Q/£&­›ü²:6Ü°ËI³N†<–ŞôfŭäöKŜ\ĞjD ÏÈ/ëÔ°‡ÙŞ]VrU:NıošMñöÀTĞš˜Pğ”œ9µÜl4’ŭdWŻ—Ŭ‰™Mšç–ó·ÏL1I7Ŭt>ËoÒe}†ZŸ,ß×§Žgç̛é™ä™[ÍŜ~î½ŭ|€)Ò¸†ĵĜˆ<áğєg†Ğ³ïË]Sbı£—ÍĦ)Ï÷-'íùş˙ömŭ~cíçëĦ·Àĥ<%ܜ.‚àFG^f¤!ħÒşÜ+GĤžĈkëiûûžöĊÛ·u9é‘mßñŜS½½†<½[ž.OWW¨’ˍ²·ïÜoÜP§ßp;twÙÖÓöMo{çö+oŻìö“ú}ĤE³iΔéܐ3ĉP(•U·sĉ°Ŭtùùdۋµsíó·Ÿż½A·ŸŻ‡Ŝ^wˆT†Ĝ]JÍFS^ +9*Ş‘›?÷ĥTÏ.w ·ŸĞ‡Ŝ^cŜp?V,×÷~ô×ÎGşÒħ}ŝö3­eû{ıŸäëĠë˙ġ€ġ˙:ôö€™{Ŭ{ò酽Ëê#ÛCßk¤•{&/²ƒÚço˙Żsí ‰P~{vŭû·sĤ:?~zûÀÌjÔïŭġ=ӛŜS½yù²ç}Ĥ7xPhŸżŭÂcÀÄûS!%żżzûÀÌŞ72½}£rYġèîÒ½lµ‘[˘}ŝö³ƒë•éPĝŭĊÛf–8=z½zıdD‘ĵâ#?üáÛWÜ~Ħ˙gRŝûĠÇW_}•|zûÀÌÊÏQT/ç{ìd`ĉÔ²ˆíKo_}$·0xd@~¨ßïìÑ2"BÌwĦ·?ÌĴÂQRĠËFĊÁ ö%# ;Ž1ġ?ŝñeùñĝf^=ózûÀÌ:ĦHÉò(#_¤u!žŝż8âİŝŭĊÛf–oÄáĵŜ?Ġˆ' &2â~„Ŝŝ0³ü#ûzß!˜TñŒ(œ†d„‘dw’$Ôà9Ž“˜İú½ŭ`f5~”9 Ş8’ÖUŞäÛ˙(› …=R%#›PƒÏ4˙QġQZòÁŭŭf.=9K} ½ŭ`feΓ(œ 8à<{ıj~ıûç@Jç0ԙ†UùP11İVÏŝìßtr|•$Hèí3+sîŸïÚUUç ĉófÄ3ÑdG eGRİûS™ #S#ĉ@`Bœ3ùîĠ½#znWĥ½SË/{zĝ!ÏqïOċ™†îíùSˆ9˜ç ˆċWÏġ_1ħpĊܲn?êy ıÛ+\Ħħ"ÔÌ}ġï/|„Ŝŝ0³r×__ɏò×g/´Ż^.Œh@ò·—˙ŭċ#ïúŽâbcûz΅Ŝ0·îUúzÖëĦ·/Ì­|üvFħƒ>ĠzÇĠëŞ 01Ĥ^\\Ĵ× ŻßÓ>H=Ž77+ëoW×{LÎ×ĥ˙­Ġ‹=pÒÁçê5eÂġXĉÇfĊúħlQQŻ 0AŞ/ŞW…ħ|ZöìYĥƒ>V]äCi]Ĉ‡ ˆ’z\UŻġ˜¤¤–Żàó â€?{ĥ#zèšì¤E7}ÌúfĵYZÙP[_wÂWËë=5@‰ ˜Ù_H^ÁûÄİ?S/ñwzúßñꛛë›eu ëëï™ñÖx=.ŻË9<<Ü$@`R’¸b2^]tñ•ġM5À(İËüX_w"_eı´.Z2€ qÒëİI•ġ8>ŒĞê›ï­ż·Y^ß\—ġ͸ĵ.ÇuñëċA\Ħ·/Ì­GÏvÔ$ƒ_V×=#¤.F‡›ċu5Ùt"WċĜ'⭋_żÉ&gŒ9gzÑĦo’Ô?ùä0öŒ@l]Ž?âÍAu7 ġ¸²~(҇£°`‚ü#ó]é†ĝ.ŽĠAuÏ$S·P]âŝ…Ŝ0·l\ĞĠÒ¸^ Y­‡Ŝ0·Vŭ­ê}ċ§L˙k;èY‡ĜĤp&ÈXwżuÙgú_ÛAÏr=Ä6€3AuÀuŬ‹Oûş˙Ġjĉréêë'qû§ğ5à ÉuÀ˘˙½ {ß8Ž=ôéÖ׏û!ĥ)œ ²ŜïíŠêcßtÀqüí·I=Fŭ“ġġAġġoż]ŻŞï~ûíóġ&èkÙïöTïğ+ûß}óê]$„îàÇİòÉOD}ż´ŝӟ‹zo@ŭ°Ö[ŻŞ?ŻXż'êLÒתïŬ³ŻàeWœ ˆá뛛²ŝÉ'"@~'’ŻŻŻ‹~]^ ħçĞŻëş ˆġüïßM×ßM$_ï%u&ékÛó&û€zġxoWă3Â\ßTz²ŝIŭ]ß÷××럈|ĝĥçŒ@œş S?Ts ş?z*aD}W֟;ë§uyû=U'@`’6ɰg>ËĈŝŜî·ßfFƒêĤûÏÖ÷}ġuQ_—u ùġE@ĴËŒŜúaZ· ħ§FëğjŭçŝzÏÖ ˜¤Żu.ˆžwowݧG™€Hú÷Í]ıİĴŜÛTg^$ġuwR¨ŻË€è•Ġ×÷öU#ìïïÙßżĞëÏÔ ˜¤Żċŝİ=‘ :Dì™Ĝ•³Ĥ‹Ŝ*­÷Ô"S߯¨‹ïíÄ__·â˙ŭrŭçêLR2Ù³sôyf„!Şr†{ĞĵĈI}߁äë"Ü9|}ŭPX?Ìŭŝ´ŝ\rG ıúD€ÀD}9†iOˆW³ÌŜĤžT|Ìb=ôö€ıuSŠJÜ=Œ×Co_˜[OÊğ_ÛCÏt=ôö€ıûß#éy÷kµZ£Ñ¸ġdÖëĦ·/Ì­'7U˙ĞğŬ¤Ŝß6ÍY݇Ŝ0·ÜŝW~k:àçÉ+üÓŞ÷'sûĦ·/Ì­'iŻëôÀÎ+ü“İ÷‡Zż_]ïñûCo_˜[7ó°\ĜM:à'C×ûCĴß˙öûêeë‡Ŝ0·ždö™áÂn² èĉhġŝ1×?V½ïЇŜ0·nf_ÀÛĜ}…ïÔûêƒÖŸx½-ô3ġÛĉ֓êúĉÉĠûÇ_ż?`}O=ôö€ıċ}… xëŭ­ŻòĦŒßon%W½}`nŻà·ĊGd–ö÷Šû _ÔĠ+üŝ€ú ġ+êƒ~˙ġÛĉVò ~ğ³ptÀOĤĞŜ˘ŜÏÔCo_˜[É+ĝN§“và ÛßÌÖû%uñóN˙êeżP]ß?ŭ\=ôö€ıuÓ Ñ-ɌĠûùzèí sË?‰˘ŭĠߜġzèí s+}o&!ôR,;`ñġÉÉÖûÇĴŝûCo_˜[É+ĝÌ$vÏvÀ7‡Ş÷£Ü$wY}úżż™|İĵ}ğ +­‡Ŝ0·|çY8°÷<Œ²zż²Ŝ°ŝqëŝûzûÀÜò î}…?£ġÛĉÖI@úÇ\RġÛĉ–ïj·ùWĝ'Pï'!3^}ìßzûÀÜòŸFöŝġŝ1ןD=ôö€ıċGżÌ+üi¨÷³ïy;üúĦ·/Ì­ü{Šç:àÂ{ŽÏZ=ôö€ıġ$r{`ûµïlĤŻgızûÀÜşyS÷À†í€77U|óÉĴ×Co_˜[jPĦè€oÎz=ôö€ıuófyĴúç݇Ŝ0·dìí‚ċË÷›ş‡žċzèí sKôÀsŭzûÀÜZÁħ„~ü ˜ÊêĠġ³³k;>+ÔĞëĦ?FvƒKÂÎNMHğĈŭçϟ‹/+'Q×f·^ġ÷…~ü Ù?ŝQö;½N#é¤|³ôŸêÖ7fĥ^ù÷…~ü ˜û[vÉ+ì~p^·žv³YŻüûB?~Lşßy…ŭŝÑŝŝŝóìu_=ôÁì$/ħÓWĜ?ÈR½Àvç&WϏNğ~œûúñ€`vŠûĝE÷hûGï@ĦŝŸÇ[?íàԏġ÷‡~ü ˜Â>~çġµwàÄëiĤ~Ĵûúñ€` ûĝ××Ŝ9ê™zèÇ‚ÙÙÉíw__ûĉÔ3#ˆ1ê“ĵĦ?f'ż˙·ôÌŒQ˙Ï­ŸÄxġ‰ŝ}Ħ?f'żßí}s§_ObĵúDï_èÇ‚)ìߖl˙è™ žİ‡~ü ˜Â+ĝlé9Љş[ŭĝ@0Ş|çʕ+W\iĉ¨—ÖC?~ŒìŻsċê•+ïĵóNħ‡\Ħ^]ŭĝ@0²ĵ*_aËò·ßËûZò œzE=ôÁÈŝñ‰ÓAŠ—Öûo*ÏÌ+pêUġ³³ġÉĠ|) o>ÛVŻÀ§ sÌú$ïßé>Z0EvöŸ\ÍvÛIı-_O3¨sÌú$ï˙é>Z0EÄ+ìòr[½Pß9n½ĵƒ7ġҀ²~ĵûWŭ÷Ÿî£S¤şƒÜn耇ŞWtÛb¸úñî_ġßşLÙA>ñw;f`@}ç¸ġÀġcŭŭ§ûhÀI&‰ßv:H÷(¤ġ9ŻW˙ŭĦ?FMËŝQ0ä3ĵ§^Uŭĝ@0j˙ۆî Ó+=éWàÔ+êĦ?Fvo§ĥ³¤ž ^^ŭĝ@0˘ƒtûÇìµfġ+pêġ³ħïöúc'ùXĦ^]ŭĝ@0+8–C ‹'3^8Àϗî÷Ħï`JɘĝÉO^2’äĝӟŝÄ.,@ ûµó/]ştÖĥ#?ŭôOŒ@T€ì˙ÄHێ@~ÊPE@Òi‹Qǟ„ŸÊOŒ@eòÒh4ÄCû#@ ½4@†Ħ¤çŒ@˜ CíÀúI-3á(,À@2@j"?ò#ÎTRrŝüùÜ„3ÑĠе°CSèn€´W²Bß?À”rG —jP%³ +}ï½K—zZèû˜R™]XÎğ·^j·WzŒ@eÒH¨”È%1ıä @U’]X:@zö?PɎ@.1ŒÂ\ʤˆT‘˘vY]r÷_ġŞ‰ħáá @ˆŒhK½ĥK- €r+&AÀHVL‚ä¤×#@UìUw{ıĞŞ a €2ÂĠxUÀXÀXꁅŝûcŞ/WŞOşúïŒ)ßÁŻŻŻ €Ád˙Ŝ;痗Ÿˆ òÓ{š ·\U·?ÏÔß˙ŭ•÷µċb=ôßS&ÔDtîïĵsŝ|& ^Kó£´nžİĞüëŬ(ÖC˙ŭ€1•0 1LŬ rüĦŽèşA€Àü(Œ@ÊbùÉk•"ëŜQùħ|M @`Ž$“Üı97 Üş/@’zÉ.,1ıF€ÀœI’*ŸY^~-İûÄÔËç@˜70^\gΎĦÂށ$uĉ@àì(ž˘äĵ´\~–ż.rAŭt3‡ù žzèż0Ĥz1ü1Ħzèż0Ĥz`Ħ˙~À˜VÇp8ÎJ'zÚŜŜà6Ħ·/Ì­Ġğ—^zëêU÷ĞĊúáĦ]Ú+İĤ?×ĞëwM}o/.Ö“ġ÷JëÎŭ ½}`n­ş½ïK—_şúÖĠ·JDדúŜ€ú]9D¨Zżş.ò!öĠÓş÷÷ßuëĦ·/Ì­U§÷^½úÖ[N‚ĴVĠ÷ĠÔ÷ĠÊÛßXï2€É1_¨î×ôżN‚ĴVÔŬ|äúžÜWĴ/ê•żp½{—€ÉÑ_$[†™ Y-Ğïİ@Iŭ°ş~8 Öß?Ĉúúŝ 0IĞş˙5ċ—l~ˆoÓÉÖe}oo·ĴŝÖ úĦŞÇ•ġŭŭÒşÌĞq\]×ùA€ÀÄĴŞŝw?í€ġ‹ĝL€dë‡:@vÒúá1ëƒn˙­\€x×'@`²VĠë÷ôĵ< KîÀşúR² +[×ŭóÌÔCo_˜[²ŜO_ÁëYhÙ˙Fi=ËġÛĉVöĵÓ˙FWĝ³W½}`ne_Á'ŭï[‘÷ŝìĠCo_˜[ù9Ó˙ċ…?{ġÛĉVná%Ó˙–ĵŸ½zèí sĞp“îK_áÏZ=ôö€ı•oúßÒWĝ³V½}`nŽb2ç’Gş.ċäԏÔ{GÇĞ ¨ß=ê Ĵ‡Ŝ0·òG1Ùk‘¸âŻËŝ}@½wĵzŻşžLU=ôö€ı•}˙’íÍ. hµĵŜëÙŜ_?J˘lŭêş TŭŝğžJħzûÀÜ*ĊäHrrâî€zġú"Ş×ïU/G0ƒëĦ·/Ì­âyi€DQ~àÖ{I@ĝëGÇ­÷Ž"ßyN X_ÖCo_˜[Żàċ4Hù+|Ñ?UÖe^Q—{À*ëbüà;Ï#ŭŭGëğ°`bÊ_ÁĞiôÒWĝr˙Uu]íĞĴwŭaêĦ·/Ì­ì+ĝ7ßt¤xÖHuÏQ\§_½}`nıŻàß|ÓßAW/ž)˘zûÀÜÒŻà˙â/t÷›vÁÙ3½g·zûÀÜ2ŻàßĵìxëÍÂ+ü™­‡Ŝ0·t,_ıï9o™í g·zûÀÜR›QĤƒžázèí sKvÀ×ïn=ËġÛĉ–耽Żßu˙Ğ:虇Ŝ0·Vç\èí sĞ3ċ˘Bo?8³:oçğ췳߷~LLİ´£ÎôöQï?ú1$͑|)ôö€3KuöNżï|ċ8\½·;D½BĥžĤ†ŭĈİ Nug>†Ŝn÷$ëQ~èâÖ '홳{ Ô§Lß=\]÷ïùz:jçGy=?êÈÖ Fwòo'İPP¨/..šOún×SwR%í˙]QN*äëQTU'@ ˜ÌÈBtÖ-ġÍÛú‡o'ŸÒşNCĠŝ_Ö[­Bh¸£Š|]Hy€`:yo› )³¸Ĝê¸#Œœž§îîuêµz­|hTĠe€”× ĈŬqġĥz…ob^êçvlµZ2ÄżĊáëê{³ÇŞe†ğŬV+]§ĵEUu‚éxĵmğê’i‘ĊEĥžë­Vqòĵ•I[ïXşĉ@JëӉ<‘éÖĠbŝlò$4’ş d§Uïíwzµœ}eIĚݛ£xKê“vçĵlr虇ƒdىuĜUkħŞ[¨gívÍítµ]g¤ĵN€@0žÌ—!ñí½êíĤ‡Ŝ: ½Ëjq´zŽÚa%êÛÚnràVTU'@ ›ép#вé‘|ßŭw:“‘9ÑCOz [Ï´KÄ[·g˘ûëS6"Èöûù9ĊĊaëüè8ù”ݧ—2ñĠ F =Š;Ğ’sAÔċÚm½—ôۋ˘nóáídˆaë²oċ¤XÏ^5ħ´î\ ËS'@ ŭB>‰ ‘ žóU}QöÛ­–<×|ħ^ÏäƒSo¨ŻŞž?¸7SŻzċÖġ‰zšĦPŒAt€t9BJûx—:‡/=ÑÏÎrÈݎp=½–‰Í‡ñêQĉrĵf br"!”Î’GÉĴ–M‘–ˆ¨Ğ‰,š^~ި7 uI FİÛßĠ²÷Ê GäĦX^'M‚ñž0(şç·[&Hìiê‰}†ù(ġŽżŜòĠ;µšıcËÖÓÓ@’Ôi%F Ž~¨Ïı‰ §˘{pYÏ_Ñ*Wo”\ĉ}¨z­ĥĜÈĵ•9]#·zûÀ™•́ëÉ^Z×^ÒDí£ÒWEL÷@Zï˜ÑGÉû´Dz¨C­[î)"Qš ĉPĴŽS'@ ˜Žyïò·í‘T2@"çòŜĉşò²^Xßĉ›}›[·ÈüèvĊÌğM9'ŞĞH3Ñ 8·:ÙHŝ$ġÈHeŬż½žbvüá_3‡ê.fŜ;Ä9‘Ô;N€`änĤ\7Ÿ½{ĦŜP-ÜzäTŞß,Wj%F ‹êœb€¨ş$ÇdEÓqöD½û™’+ş^_ô×;™3?²%MZ•š(Š˘ÌDş9€Àt?ìL£/v óÙúâ úbi=íĝ;^-u-,§Ħ ô`^}–}ğ[‚1#;`pf0"÷ğ´ž™ Ïד·ŽÊ×mB8‹ŜPìQZıˆ §n~zûÀ™•ëÊ o\^¨{Zäç@JNK6@Š? ½ŭàÌ:‰ ŭĝÀĜżVé<ġĠC?01²|§a>LŻwKr:HUÛ>íú‹/Ş×öŝ WŭĝÀĈġwl‚˜ŝO½áÓ­¤ƒ”ġíÍÍTÖ_ĵĜ߯Ş÷^ô^LòŝP=ô #:Àw^żĉşUߓàŜ-ÛAŠzĵıùôé‰Ö^ĵ8¨Ş‹ü°#˙í‹üèMŝT=ô £^Agó£{Àwo%ݰU˙¸ŭôûêÏÔ_¤âĞ‹áNj•ż_•Çż§UŭĝÀÄäG ˘˙ЉŜŻÑ¨×lùÎ뛢w”şŝüyu]ÄÇAe]ȵêß_P?Öŭ?ħz ‡&/?ıUĞĠöD˙ׯ ›ööĉÓ§I9\ŭùóêú‹Ġu9ŝûĠu˙OĴúñ€‰)Œ@D¨_@×n5#ó {ûûïż—ğhDI}´zèÇ&F‚ÎMˆW˘ûëk;È×77íKlê£ÖOóħ€S•?䖚ÉvÔQô°ÀäÎıµ':?A€Ž’ó¨YŭĝÀÄxÎıġníŬşê˙ì>~ñӗ^˘>N=ô S8äšı‡ì˙ì+lÙ?äv‘Ô‡­‡~|`bŠ#İÙTŭŸ}…-:Çw_z÷òeê#×C?01ˆ¤ş?{žğ˘‡ĵ,­ú‹ĠġdRQŭĝÀÄĝG ‰ävƒ<ġÂħo?ô “?ÄÓA~ù²î==ä ×Ókm•Ô{½Ŝ‹ŞÛċÊßßë ĉÙyĠ×ÉWÛŭ}Óó5´žÏú‹ž½|iŬHÉí÷l€”ŭ~UŭĝÀĨè›}áĊuŻÛT“m:<ÖŬñÔ_ô^ĵH·~OfFE]í#@ÌħóêġóAż˙?ú/öĠëöĤùZ8?Ğġ££ġ^² Ë[ߏ{=Ŝş@ŜûW×WŭĝÀÄÈŭŜ7˘˙ûâ´è›êŬäċқ-ÓAÎ`ŭèè¨şŜĞïÇû/^TÔ_ĵĜŻ]Ğş½ž‡~|`bdĝ<}ŬŭŸşšlZSô°çg´~ttĵzW×_ĵòŝzX`òòŻ ›ĉrä/Ġ.Ë“á Ż°İVŭĝÀÄ^AËpï—v/ג’úĝġ/LLát]żŸĊċ]ñ şċy…M}¤úi>–pŞô+èŬ/^|£^A_kÖ÷êâ´Üc;Hê×C?01êôî~Ĵ>Ôùo͗^zİĥ[“ŭŸ}…M}ìzèÇ&Fv€ğûTÍĤ>‘Áj™}üÔÇŻ‡~|`bԙÔ͔\léo£(j§~ĵzèÇ&F_Ë)ÛFFĞe:Hêc×C?01ç1QĦ_˜˜8çnNèû˜R68~ @£ @cñÈ7 (ċŸùĉ›?ŝñĞWo €2?üCy€Ü&@%üS`˙Ô9ÀÈ79 ’ Ì"@ÀXÀX<ò7` ô¸Ğo’üĝ›?ŝ+¨V9ŝĝ0€ÈŽĥ™ù×%@˜iĞÑÉÁ$:`0 5 zߕٓE€*ˆİÉQ˘gÏM‚ € "?jròġ×ß$ €d€Ü]YYÉÈż €jwezˆO*@ŝĝ7’Èù…T¸+D|úú믝ŭWĈ @EĜ–µ°#pN$ü*‡”KO$|µ€”JN$,ĉ(gO$ĵ{ۇ”°'Ŝġ&(ĦN$ÔráħB€Êİà¸[.ôŭL);ô @#‰}˙S*Ž—òâZsYŝ'>5 €_1?–v–›ÍċŬŬŬx·ıL€ü◞ıv.í4›ÍŬċċċŬZ³F€üd€l;b 51Y-ˁóˆHŽf³Ĥ> ?_€ÈèhŞaP˘d–° PBÈċÄRÌ.,ÀT€ÈäĜSäi ì &D=ž("@b9ĝ¨-³ P!^ŠíŜĞ$AdvìJ씉E~üwùüúċËçm‚è kğì”’Òû½• w’ÑĜ…(ë=Xç×˙ŸġË×î˜1Hmıiŝ#@~"@êu w]Q–¸œ;`ĝ ^S"wa}Ğ,9—x'@~Ïju &?D€8—v}˙SêفÌuÖ·6@vvşÚċËÀOÈċËç/§•j„”y_^ú}o)Í0 ‘K½ß/]úÄùĦ÷` € 2%–D~lKf„ ’>‘Şsܕ\ĉ(,@% Ùüèît/_ĥKĦï`JÉ1ùħŻŜ D@._ŜÑ8‘à'ÄäGoɵǑĝ @~q|5ĉ4t1öˆÔGèû˜RqĵÇŒ@%â\‚ÜÒfüÁP"NàçäV&Aâ(ôŭLİĵ%ŝ}üqí8žèŻĦï`J‰üxK$ÈÇ5 Ÿ~ş báóç @ı:A>nÔ6@>”ùqP"@~T‚Ȉ R‡?>8G€ŞÈÄĝÛżŭ[ 59òšĝxĝñ5PFÈwß}÷qCÈkò?‘Ôĵúƒ @‰ûŭ~˙ĊwU€ĵ.‰ˆˆ4úŝĤԃ/ú/>ĝàáwi€ˆüĝGċ Äƒï>~,'Ñk‚wˆüĝ\úxeÔ Èwß=ĵ.G êۏu€üîw_üîw13'ž_żŝwr]'ˆ żû˜ „ żSbŭ£€|Ì.,@™‡Úkµ‡ı ‹K™Êé3/},Ï$Ĵ}lĠ|ŝ;.Ĥ¨PkÈähˆÏꛚŝú8îĊêgĦï`J™Èh46<ä—÷âŭŭËĊ÷0>´µòmĤÄÏ>ü0ôŭL)sĜ• .-ŭĝÇԙ…˙óŞ/„€)%Óûï<üĝCyŻÈ ŸŝùŸĞaPâÁÁÁ÷½‡?֗s˙ñÒÒ"@ĝâsÀoëà`§×{ĝşփß`óó‡ò˘ĵ˙H€üĥûîğïż˙Nż#áï˙ż?ĝàċ,‘ ?|`#ôŭL)}ù+ù†R~(ò<¨=”1y¸ħÁà§ÂRS ŝo™˙ŭuQù†ĥ˙ĝ€”ĝnggÇȇ2?Î} ġ˘o0‰(‘H;["AŝğX”¸ Âwß}gwaŬÌy…wPâJ½ Kžúñ˙=V?í €Jò]e€È£°|Áƒs&@v7w77w @ ÷(,ñÍǏÄżğ‚Ìà÷àÁŽĝ“è2JŝÏ|ŝÏɛۆ€)•Œ@ ŭžèú"ĵ Úĉ„…ŝûRÒïñĊ•ı0t=ôߘÍÍ~ĝĦ—½ŝââââŸ^8^=ôߘ_,šÄbI@ŒRŭ÷&¤$œŻÇЇŝû’ €E§˙7߯úïLH>ġÜĊgŸ}ĉˆQëĦ˙>À„ÀL‚ĉŸ$ıúïLH~ìƒR#ßǨġ`BJ t’|Ôzèż0!*ž&d§_œ$?F=ôߘŞëï÷uèı‹Ÿŭìgi@§úïLˆ§˙şi'Á–N’ĞúïLÈfŽ™P#ˆĊ|qŒzèż0!%Nq³úïLˆ'r“äÇЇŝû²ıëÚ´“ài@³úïLH> ŽYŭ÷&DÀ7Ôż²€8N=ôߘĉ£4 ŽQŭ÷&Č n¤#ˆĤkÓ_˙oÒPġ`B6e÷˙w-ñ!#À ş Ġġ`B6ċÎ'Ù˙·äN(o€xê™İĴ‡ŝû˘vAéDù.ĴB=· Ğ˘úïLˆ 3‚($?F=ôߘM;~Îaäâxġ`B6“ƒpíĈÂÏ$ùÍĤżž(ݧë‡ŝûR<# ş Ġë‡ŝûR<“Ü …z.@*Öŭ÷&¤x-Ğb€ëÙİZ?ôߘϴĝ‰ ŭ÷&„ŒeÒ2ë–#ñħ,˙™oÄéşĝŝşóqëĦ[èzÚéž?ŠjúC†Àuı¸ĵ,ŝK’aüzèÇĈĥıù?ôž.tŒúûÇ\Šn_tôv !ğ™âÛëËrQSpĵzèÇĈVÖÁ˙~Y›é½K:à÷Ğë3tûb´ "@|Ö_–Í~¨ċë׏şQU](İġğ‘Ş‡~ü`l%ûûÙ.ĜÛż_YŸĦۗ#ˆHïzÒs곊‘òÇışÙo%§8<î_˙Àf`vċ:Ċ˘*½Ż[ĵÍWŻìàgîö£hٙü~M~~MÂââ˘È€ÚrT¨-ĞúġëÏžëj} 5À +í€Ë;hĠ½&ŭï¸üŒÜÚġdŽœŠ^Ğ=’Ÿd>ĵ.Çê8Ş\ŭHXġÚÁó£çžş^˙è@ŝtùˆ9³Ğš×çUôµkN˙ëíÀKç(fîöÓÎ_ġ˙d˙/ Ĥö_Er’£P?::8¨ĠD|”Ô# 59Xıúñ€ħċçŜWž”uĉgĠuħŝûé‹ĝÙŭȌDż˙Hô˙Äòâ˙]“ùñFt=Ş]÷ÖĊ ä@äGi]­/ fWĦ½&^Ÿ?)}o^ Wûï÷“.xĥo_8–=:8RjŬ˙êvğr!WE‹5á { %ġîÉ=`œ`–İôiB½<ò$7‡ĞżŸï€Ŭúûï_{"_à_s&İgĝöċBNw?’–”nżŝëż.É98ÈÖE@È|htEŭúuyDVHżL€˜m²U]gżo:Ĝ'OÍĊ”Ż'ÓúµkrŭòúŒŬCĵĤRMĉŬîK‘si’\]DÌKGGËĊúÚqué’H½~èÇĈ&:P§˙|jú_ùú;é`óġ|œİ?y’ëßgüöċär˙“N—ÄĝB„:$w9ş^¨ËŬW*_Ôċ\]ŒYjK*@ôúĦÛfŽí?ŻċOĜvê×ùkîúƒê³rû‘™ż°‹K‹—ä 9+.O7Ï×ċ£vIĠğG˞ġ/İ1ë‡~ü`lŭ§ż“ĥ˙\Ÿ‘Û·ó‘ɇL~\×Ftëj÷•­w–‹ëKoˆˆ^?ôc;f˙:÷uy •?èùzn\ˆ[·ùQVݽĦò#:80ġ?Œ-p˙<ġu1„X\6 &8Ŝ İÒÇèfë2Şê5ù>ż*@b] ŭĝÀĜ÷ÏS_—çmD‘ €7L˙ŻŽÉµù­_P×ëĞ‘ġ?Œ-p˙<ġuÓ˙˸¤ú˙s⟈eyU’ÖC?ŝ06§ûĴî_Ïh}ı=²Q]’ŭ˙9Ó˙ËĞZɃtYŭĝÀĜŠŭgSĝo’üĈÓżÎB=qìz´œ@T{’ì˙ŻGĤ˙Ôûœ—Ġkêzŭ?ŒÍé?Ğ:èĞbìşıšÚ éi ġ>ƒ2’3Í}uñıĵ~ŭş]?ôc³ŬgÒú:è™ĞçâuĠ˙/FöH\™ò"W6@˘²şˆˆŞş va˜]ÉËïd ĜAÏ^=Çİ/GéqT"éP ™!†·.¤˘.‡ ×Â0ÓòŻż=Ît]Œ Ġ<¸Ì€Ú£×™—H”ײ*Ğ_×ġċAġ?ŒMu âġ÷·ßWt°g¸ĴN*×Ġ^{ôZ­Ĥ`ıV[ÖA’İ'# Y×ïR~ÄĊÌ0فŞŝó{ۃáڜLŭgÒLÔ#ûž´‹2ɈTĜ]Yċu“ċuù%ôc“]Ĥî?mZ€ Ô3ĝT×#µJÎc<Ò#ˆGµG*ÔÁV²X^—ï(•Ż'#³',ôcS}ĉ÷–?NžíÀ§ıߘÖÌcèÄ£GË53²ĵ\Y_VGôfê:@^KÖŭĝÀĜ6³]¨?NĵžëÀ§¸çÁÍ<†šPÓğĦôQşışĵf¤XŻ=ŞÉwIÖŭĝÀĜ<=¨×Y­›YŒeu. >Š*R׸’‹esœ[E™Ġuù3ŭžéĦ[ĝ.zşëĉP\=G‘F‰ĉŻëÙġòşü‘Ŝ½úñ€ħ½"tüôÊPhOû³Ú>ôó˜*úÙcŸ@ŽGêżĵWhOû³Ü>ôó˜*ê ôzÍOšGô³Ç÷ôħO8ÚÓŝŒĥŭ|ĤÊ+­V÷ġׯ+mġ,ù÷ê G{ڟáöĦŸŻÀTéĥZò™S3O ù úêĞ˙ƒŸxўögı}èç+0Uä^=Ž2O Ż<^ŭv÷ÚÓŝ,·ŭ|ĤJò’ĝF­ĴĴ|ݞ@˙ñUúï)÷„£=íÏ`ûÏW`ވ'öv2„útssóË/Ġ+°WÓßĴ­ĊŻ&O¸ ´ïŻ­Ô>îÖ~-îs˙ı˙'p˙C?_İ"' Ó'ööf·kž@Žoúçœ`ísñHí×έM´=÷Ÿûïoúù L•nżßïz_ež é+ĵ‰´_[ëÖÔs˙ı˙'q˙C?_İ˘Ž[L&“}ÀŻşúF}N^ħўögµ}èç+0U’'šD´GĦdĜ—cÙ'íiۇ~SE= ÇÁo8żŸp´§ŭYmúù L•nrcúú*Ÿp´§ŭ™múù L•Wԙ¸öZ@ÛúZ½í„>Ğê?ìˆö´?ËíC?_İâ{ġş…'<ô G{ڟ•öĦŸŻÀTcĝ×ğ5÷ ôH<…6ş‰ôşú G{ڟáöĦŸŻÀTÑgRmoGOŸ>ĥ“!ĵyö<ò=áhOû3Û>ôó˜*ú8ĈìH áğ·˘{Ò'íiFۇ~Sċù:â”yÖŬ¸Ġét˘(}ŭ‡ó„£=íÏlûÏW`Şĵ"ž$âiÒ]ÙìnÈÁğÖıuÏĵËO:Ҟög¸}èç+0UÔŝ‘}‰Á{Ż[ï]ëŜğĠ‰:]ç ”òӞög´}èç+0Uô>`ùڔŻÀmtğµözÖ½N¤ Ŝ}Ĉ´§ŭÙlúù L•ÜHríï˙ÑhÜşĠ-Ÿt¤=íÏfûÏW`Şĵ"ç%Cxù ìÚ5ñüQÏŞGÉ+0gґö´?ğíC?_İ"'Ó'#ùŞż~­qíŸ˙ŝš:<Ċ7éH{ڟĠöĦŸŻÀTŻ'œ_ IDATQO nf_ğöú?_ûûk×t0ä§=íÏnûÏW`Şè}ÀÌHžBĠ­_“×j]5ĥ÷î3Ĥ=íÏfûÏW`ŞÈ'£GìqŬGúYrN•ç GûQÚNÙŭáŝçöC?_İbÎĵû€ĊŜ}mûžpsÖ^w0C·?<ġöGmÈŭŸŜûúù L•ìaŒê(”>üD_ÍZ=‘|‡=ÎA{Ġ_ŒÒ~Ô۟t{î˙iĥŭ|ĤJú2Cĝċ>ÖÖâWóO8ÚOoûŝÚÚHíŝhí×âŝ½˙ĦŸŻÀTO 1:˙wû’GĦ|ġïYò }ÎyÙö‡£µ?ùŝžÔŭÏĊ#Ŭ˙µsk#Ŭoû3q˙C?_İòŠ|‰ġ‡wvŭûòÄÚyE8?í'{û‡£Ŝŝɵu­?Òŭ_ëÇ#Ŭ˙~<Ùûż6µ÷?ôó˜*Ż|ž@ĉµ–§“†İo^Ìn~ÚŽÚŝp¤ö‡#ĥġöı˙!îèç+0UÔè+óRK>ÔHÏĉ¤O¸ıh/ú‹QÚŽĜŝ‡8œäŭáŝı˙ĦŸŻÀTÑO ÙÍĴĦşŝ”{ÂÍA{Ñ!ÖŝĞÛŽzÎòŭW³à£Ü9 >ÁûŻfñ}íC?_İbž@ò—CÏŞ+éË)ÎnöÛËc„ö™ĉS~ÎĠáöGm?êŭW³ĝöĦŸŻÀTħO ŭ\IŸ@ê˜ġŞ~eĥí<áf}ĥĜ>ßÁ„n?g÷_͂pûj|‚÷_Íâûڇ~SĊ>^}5y˘ĵjg Оp´§ŭYlúù L•d°z˘loo‹çÒWybnNĞz…ö´?ËíC?_İâ{U?áhOû³Ò>ôó˜*ž'ŠĥОp´§ŭ™iúù LġJ^iÉ'çù£ž@êAŻžögı}èç+0UÔ(óD)<áhOû3Ú>ôó˜*Ż|ġĠpϟô G{ڟÙöĦŸŻÀTyĝüévÍûD›·fr½B{ڟċöĦŸŻÀTyÀB?_İÒ*µÛ‘ğĵ° ż6'luʄ~|`jµÚ 텅vA¤ŝӒúBğĠŒ˘ĥ͔h!“9މùn!íÚ2oFlżşR.Z)TW'Ŭ>ôSĞċ¤Ċŝŝŝv;ŠtVÈàˆdǙₐĥl’š˜v&ämµYÚU…öĞNw"n0ÛżŻşKN ĚżŭŞúİñ)Î>ôSKŒ@"“!íŭ8Ŝ–ßF2?"“"Ĉŝ¨EzÒVû³TÈÑC+›™ÑFÓ×^—êµÚ“†]uÁ”e€ˆxüĜ ùUvî’/@˘Hĉ€üŻĴ½Ĵ;í RÑ>ôSĞ•îİÚ·bÇm$ *[d€´£VSŽ5ÚiˆîĜFˆħˆHĞÙ)´_Ôò“Z£Ú‹_eÊzòĜdğöĠ•l´¨Ÿ'Y{ÛğLûXE}f`B€@™–Í ™ÛÛÛfܵ3äĝCĠT€Èiv6C~‰HTh´m€dÛ/´T`ÈÄË :x"SÖǢG½ĝލ¨Ŭ Iô$…XP‹Ĥ(û{Ŭ>öµ?Ö ĞĊöñÀöĦ˜Z-ğŸj_ö§ÛĊÙt;65™M™j ĦÀNˆ·ĵšžö*AD€4„dZD—šĞj”ʉûş£żŻğö+‚îá£ì.ĴAíc•W._}œmúñ€İĠÒsĉ&?äž*ßG’-:@b:äB0äP&™IoÇQ,'ßM€äÛ+i{ñ}ݲ 9›ħòSĠ}GħíŜû²żÒ^I“Jç4ÒöânÚë½Qŭ+Ż_nÓ>ôSĞe*#ârfïVĞÙևUÙóBÌW³¤fÂE$˜ˆ _{; bÚۚlżŞĉüTuß+ħ͋Ŭ+?Úí•ĠÈD‡Ù͔kڋĊêJż/Frİ>εsíC?>0µZr|A@v nÈĜ–gkȉ"9˘XçŞ9sµ“Ş•Y% ĉĞVÓß^ĉÇBÒ~Áiż*}ÙÁĞÎ<£="¸,{t fôñĝq¤G™öq½¸‰Ġ•]5˘h{ÛŻfÚÇıöĦ˜Z-sš ìK7³>ùÄYĜïn·ÔQXzÑΞh§@ÔL¸ sŒnÓ´_H† ş½{$V´à´_•góíš^OxĞŝàà ­aĊÈ@Ô^-›EÛ×^M˘'í\ûL­–9^w?Ŝ"#£-ŝkošhb>uU€´#ħ>ôĥ˜éDı=äJˆNŒLû…tĉĵÄ´7#µiċŝJržŸÙÓfäq ıövŸTÒ^ŭÀŒ(ÚŜö*Alû8×>ôS˞ĞÑıñ‰}´ġä“ĥ 1‰Zĉ(,Ù/´³gêy“#Ğl’ĜieG I€¨ö N{ŬÁĞáÀÊŭğ÷t°aCŝ@ĉGôx%Ŭ…ċ´wÏ-_Q“âĞĞî$×^ï²JĊıöĦ˜Zö<5‘I!òBñħıßK÷eue€È99˜ˆbyè•;mΉ҃ym’ˆ1Ó&@’örVÄ\ÇÄ9ĤWˆĴ¨3 3ùħşşúĜ&Êt’iï&ˆœ4käG ıöé îêä“ÇŒ@`-sÎıÈÔh·íĴÇŝ~OϋÈÉ9HO˘/¨‰p3 ˘§ÁÛê´ÁvÛ9DDOoĜl{u$oÛHÒ~uEŸŝĞ_ŭJ}͞F.Ï·‰%“è•íĠ\ÙHĦŭŞ{‚zĥ}èÇĤ–şi‹!È'òŸŠXˆZ—s ‘Ú…ewEÙ@“éċLÔWħi¤ĜžkŻŜ\ñÎ ™bX°’\nd5ŝˆì$ß^ÏkĜö9éĜKÚ'W7aCP{¤Ä€@@ì ˆÉ qrV2b†é4¸}DÑBF 5 Ùö ö6²Ó{ÙŞhEρÛçOaY]YuF fŭmŻş}èÇĤ–”É‚9 kÓ~Î?˘ÎAßÚÚÒ#$@b}ŝ¸;yÑÎΓëqEԖ˘Z Û^í£Ò}ĵ>[|e%;/nçĵÓɷϤÁŠÚ'ċŒ@t€öwâXäÎ^áœÉUF 0 ÉQXfúCt£ûjd߈´“H;ZȽATşÜVÓj–ĵéĥ_ȵ_´—³ä:"ìÙâÎùè™Ñğ·<íc§½ wDç‡ žĝPRÑ>ôSË^LQ@ö5“òú3YGaİ9tµÇʉ{j Üf˘­¤­lâ^Τ޽žċ–óĜúd?ŬĞ;ï:ĝÈ×ÔŞ§}\lżëî’ùq$DĉGO@˘\€ì 0HkÁ^ KHĵßíĈñî=‰Ÿ´“aƒÎpÂ’DÉ$Ÿ Éĝ#×^‚\ì:—Qğ°Ìġqċx$şŸ^ kP{µ”9 KŽ?²#§}œkúñ€İ%ÏLŽÂ’ !q7N'Ñ÷9µ Ë}—s"ÎîĞv”\ĜJüTˆ]vÛ'ù‘k/!½:UÛîZIŻ+DˆeŻĈ[lŻÁĥċİ$ŭŬƒƒ] rüq”IÛÇıöĦ˜ZòDÂä< ñnÜŬ-L˘‹ÈBö(ĴĥsÔUd¤Òç£Û7Ğ]—s×ËíÜQZŝöÉaRĉlqé˜ IF …öîÂ,í&—ĈZĠ91Gaé½Vĥ}œkúñ€İ•9=ŜÑ!â£köa9“è] Q:‰`Ä2WÚĠ“ΛĠ*&@̛×f"Äß^ï’RħO˙äŒ@’˘V̉ɤĜ>vۛ9r{iĴĠ5ŝ8êíĉ mû8×>ôSK‰ŜvF ñšEs ½d]ρè‰ġŸĞƒ§"ua^Q;½&Ż}ŻÂd"¤í&HYûôL?щ˙Ó?%’ÌJè1sè&@rí3³&ä ‡ eŻ·­>ÌĴÇjYûL-yÖB:˘Òc·Ğç@D?›L˘w³'ވÚûµİñ‡ûžĥÉ%ÛfbÎħíĠULJÚÛ@ĝée³{Êĵ”3‰“·µu¤´½9.WÍp¤#=#=û–TĞeíC?>0µZz’…eNĤëêüPœˆHżmr<Ġ‚=E0+O§ID€$oO8\{ubı{ˆrdF b9}WôU_ûâ$™1#;ŝHĉLVËڇ~|`jÙIŽÂÚßßWom+òcßÚ΍@rM”燸sáŽĉ¨íġiÎI ù9ìy…ĞÛĞ@pŻ…ċŒ?ÌíG œ‰µôİèvDžE(DĈ‡ÊùiÛ=$Nğ{5Ñ# ñĠ̅ëšË#6 íô‘ĵeíġİ]7gÎ ONEOF ĠíŬ…™IĈmğOlĠ?!@ œ<%#ı–šùP²Żócżo¤ÛUC5]ÜŭTWŠôŠ$é\xnRhżPŜ^T•9 DBĉ(ĴĠl€Tĥ/Ž@œñ‡yÂĠĠÒöĦ˜Z™kaİôÄÄÈüĜìêhħ“èÎİúŠ$ñB”Ì…ĞKóêi’Ĥݽ|CL{=„YpĞÔa/‰˜9 Ëy ÁĠí g˘gĈíöNœsp&: §eúQ5‘y!ÒcSçGCÑù!Ki€,$ğŸ’áDöB‰m{ĥzÓÛŜĥ´ìdz۝IŜ2 )ĵç$#\{ÏQXîĠxUÓäŬ@t„0€‘ÉkaÉw˜µm&?j ñŸ’˜ëóÊħI j÷“>‡0’‡èşÇċ q>@2íí›:£“4@ôIœ)œEö} W=íˏÂÒ²"óž‡.d'7a†Ž@L~ÄeùĞin j÷S$wDİÓ@ÒüXHdÁ Bûd²`OD7íWíÉé‰Ğıó@VV£Çö W=í@ôğìĊñ^,duUä#Y:ÇîñWi~lğùaĉ@’+°ĞÓ£ô´@{…DûƒfY{=s’y“Â$@ì;Dİ@0o'•™î;RÙ>?²jß D&ˆÈü`FĤF êZX2?Ì;:ó™üˆt€Ĝ|ȽCT"½Bğ~C)o{3™îĵIĦjo°ZMĴè·#ÜuD ?œ]XùöqĤ}v<’ˆ€Ä:@ä&(kúñ€İ%G ‘ıˆ`ĵŸ|¤ì’E˜Qğ›âôí=Úú*Wı·˜J¤¤ŭÂBv2Ŭ t§” Ì$™ħ’i_Ĵşï‰nß ÄîÂ2RÖ>ôS+}GÂjŞW˘ѵq  Rï‘Ŝ–—şJ§ĈìˆnżmoòÂI…t$ÒÓâêMÎWWM€ĜwèˆÍ•Lœ]XÚë9ôDBón fÖŞ ’öĦ˜Z6@2GQ™ĵHĤs­fvààğ‰> J7h6³#¤}ú&R™7QGa™ó<ôġ­L $ïĞwAw$ß>Îĥ/ž‰îˆ€´Ëڇ~|`jİ#jµdĉÂ8âl€,ĜQ£êüû^… i–´w“'‰ĥĴ˜·ԗ'‰ÍÎ){ŜĝŞ}CİäbŠıöqĥ½\Á}GÂÌğÈ)ô}‰ż}èÇĤÖB[ż!T ˘Ż…\~¤£ä=Ñ[ĉÜâċHZúbíêTfYûäM¤ÔP$mżjó ıUríDŬÁ;‡ìÚɵsíW³ïH˜}7ĥ •$@xGB‚~G…t ˘G#Î>-ûuÙÄfĉÒşÉTz˘£ÍŬ>ır{rĕ“$ö"'޽:10ó&çI è³ÍWK+ĉDU_û8Ó^ïòj'ñ^WvôÄĥ—{°ÜöĦ˜Z**Ô(Äĵ·mÛ^e°×KfˆbF ö2%éÉj=vr£eçOô$znŞdAŝ$M=1íÓ9äúVĞI‚¤³ĉé;ÛÇÙöĞıñKĉjĵ²°‹YħÇÇĉjżTSg‘·utèQÈöĥñĠ$B[`Ä#aԎܓ:˘…ä]Ĥä÷vʞHèĵëy&eÒĦˆm/ÑµğİÌ'Ví[Ĥ“è…öħż} ™ĞñÚ1ˆsÀ™µÇTj™ŭSr˘ò£oÇr–[|ĠċF-û>´mù–2;DZę·ù7!ßĉ<3‰žĈÛÎM•dÚ'C‘ô0Ŝä]Îm€ÄÉh"ZÉZġ·+ÚçĈkĉw’…€22@Ôû›ëqH´ÛÖS½m;íĦ†ú:şms"a&>ôÛDéOm}+ŭóv;8WnÏĥwo§ŬΈíĊcs’ıwĴÜϜRlW´oç¨öħY>ôSĞ•ö¤ê"UíííXuërOւ™,èIv IŸofÏÛêtöÈpÇ!ÍQÛg£À&Bò]´bc’½”IN:îk_LŠöĦ˜Z­Rı£²ô¨B$Âd­N™L­ŜˆBß_À”èġ•ŜÈ"@ší˘Ÿ'olo›ìXlü_7ĥCß_À”"g7ĥċ´ı|ÏÚVĞħŭóŸ˙ĵ%>n‹2@ԔÈGo|òÉO€ĦF ­ğ*Cä‡ £Ÿ·n?2Séoĵè½hŬŝċ/ùÑGç~Â`éÈŬÖm91²NˆùòËÛ‰9×ĝ„&@îŜ•ğ°ìd[4e€ôĥĊDÈ/[‹ÀPğ°D|ÜŭHïR#ÖÏUŽĜˆÜġˏD†° `é9„ÖG2@ä~Ğ£Ÿßŝùmı'K@^´d|Èù%0T€üâĥ|¤&AÔĞìä ‘/ûH˜ˆÈuŻz#soKĈÛ{£Ŝĝċ–@€*@z}ô‘>ƒPÈÛo¨‘r[ž"ò—zB€  =ıĞ×Ğ]ĵX“×+ùùöC,ôŜxC΀È!ÈGÀ0"Ġj2@zz™˙z½C]Ŝ“oċG€´$@j5 žé9 úŝĤ„Ŭ…ĠJÄ&È/Ô½_šïd~ì텿€)!"BH£Öh4T„Èϵíí_l7!˙5ħ-˙ *ABß_À”0³òüA:@ĥŬù… 5 }SBĉ‡ ŽL€lÔjĊHíâEF C]½DH †w4~ħĜ\l6ĊçE9Lı($ôŭL uġ+ j¤ĦD¤FCD‡ĝ§-êƒ|/^ }SB @.^LG :@jrn]M|¨Ï:\@˘'Âábïb:â {–0D6\ìġ #^öƒd‰HMäGnÄ£­ŭvƒdɽS{µì.,‘âżsö£qîÈêmĞüÈíÂñ!27äÏ‰˙@Ĉĥıoş K†‡üŻĥ(?Ô§ȑs  “è ‘çTxè!@9Û½†= Ğ&>ÎÙ]X5 Œ@ä¤vÑL˘‹ċd",&@Žĵ”ğ9 Kĉ‡^ŻÖXTùQ#@eÔD6.:˙İȐGd €„È]X睰X\<—ĉ‡ĵ@oCĉp¨£°d~œ;§Î÷Hó£—DˆĝHF'Ħï/`J¨ˆÌ~ܟäg}üUM‰‡ÈI’‹Î,Ι9‘ú“üŻ˙§†œI.µ¨ÈşxñaC}v+s£Ĵoβ~èí3Ğ :AŝÁé€ġ+ĝçûûëÏöU\¸”ˆä¸'q£ĴżħpŭÛfV1@ôë÷â+ĝŭnu€ˆŝ;œúġÉŻzûÀÌòˆH;˘ŜÏż‚ï>ëêxmMöżî[ÊêĞQ™wp:Áġë_?ôö€™ċ ¸ó—˘~ŸA<ÛßO;à7ߔ=šˆŜ;íÀOn}y,Ġd×½ŭ`fċcMϟ߉˘èù~fĦéĝM-éÀġÉàê’TÇ^żqŞë‡Ŝŝ0³ 5}“ü§{`ó ŜR°hĤé9ŬĞÏÇ]żqÊë‡Ŝŝ0³Š;°ÖŝÁôż_~İzàôLn£fz:p{áBŭeÌġĊÏôúS]?ôö€™ċ‰ì!T²NÏäv:`Ó˙6ì:[_Ú ˆ1×_3ï*Ĝ8ċġCo˜YQŭŻŜ=$zà µĵÜàKû>€Ç]_ŭĵqŞë‡Ŝŝ0³ĵ"Ĝ †çûCwàÇ]_v˙fŭĈ)­zûÀÌòÈZÂîZ+úR÷ÀÉJÉû7c}óÓ5ùqZë‡Ŝŝ0³<âf@YĴ›5ükş<0˙…X?ôö€™5 ìkĝ/ópYtŒħ<‘d€ùIǧµ~èí3k@|éôÀ#~ŭ[úšş˙ÓY?ôö€™5dĜ`u­k|úiyÏ<ìúbä°ħÀ\ Q÷˙ÂiĴzûÀÌŞJûéËEÓ›¸›¨a×}ŭÖ֖ì7ô›z¨ŝ_FB|ë‡Ŝŝ0³* şéĠE@ìÖŻÊA2äúúRş;öšì:Ԉbë4Ö½ŭ`f •uÙ_½*;àz½îĵ€ ׏M˙ŻßUp̅'~èí3k¨XĴׯŠĜ‚ïÊ×ïòßù1pŭxkCCeŜÊ vÄOuLxŭÛfÖP °¸ètÀî+ĝadújÛ ÖT˙ż%û˙­­µµÉŻzûÀÌ*Ż^µğ€ÔKxġ~ȰêŝíğšŻÙ„ı´Ġڤ׽ŭ`f •Îulċb·žw}Óûë_ô˙òc €IzûÀÌ#d÷Ğf†šD¸~+A=~P`:Ö&ĵ~èí3kô¨™œI1d~ \?í˙×ôAUÉr1NvŭÛfÖPà\ŭËú2h}ĠŬë=Nħ΂ä*&¸~èí3k¨p.BX·?“ù1pŭµµ¤³íŝ'7&¸~èí3kÔ63F[_t]Ï`l¤ŭ˙Úd×½ŭ`f'ÎéŬĊx"éŭ‡ŽĴq×½ŭ`fßċŸ07\­í\zw´ġCo˜Ycwĝ“4F~HĠëïxÖ#@`lÇéç'g¤ĝĜq}İr¤°~.aRĦ·?ÌĴ“éOŜóġixlìlíĜ¨Pë'‘áLNèí3ëäşüPÒpĜÚÚÚÉsZ¨SÖók‡Ŝŝ0³Nż?a™üÈ&ˆLŒ/Ӆ-ŭŽ…YĦ·?ÌĴ}ŝ‰JbËADpĜǖ3ĝ @à$…èóOV2˙aG ò½¤ĥlbì¨s “Ë-nä×½ŭ`fsè– IDAT…èòO–³˙JH2ĜH$Y @àä„èòO”<îjC Ħ™ÙŞPÌĈ Ë?Y2=vJ’c#;!@àèòOT6ĥĥtĉËċĞùA€À¸NżË?Y[zŠ\͔ïè9ŽÄ—ÎûÊñĴzûÀÌ:ċŝ~2’°H’-Ĥ’zûÀ̚xç~ gw /ôö€™iµz-Êş!?Ŭş ‡ġYŸġÇX?ôó8–¨ˆ'€ü²ĵÜ˙S‹on­Ö­[·–uŭ/›Ù²–—o,/ĞŻËËë³>돿~èç?p,QĞ-‰'Àò²~F4£ö Mŝ˙ż,ĞÙĵÙlĥ5ñsù hÛĉĴÏúĴ?öúĦŸ˙Àħ¤O€›ê˙èĤxĜ˙˙ĠÚmùœÏ ûż˙ ùjùfá ÄúĴÏú£úùKò¸qSiŝ˙ì½MoGšïK”³äµ!êÌbPÙıœstÑíÖ-“jÉ*¸€ä"?‚[íğñ÷8 ~¤îŒiöÙ\̂†G˘$´¨2İšĞëÏKĵeF†¤­çÏĊ$ëW‘™‘OÈ_ż•óçŻGN˙–ò› ĠÀ›Íí<˙~ìò/E‰ ĝÚ0î0YÂPġC€¸\?‚güÑZ=˙k.Kì„ż<„ñ$Ĥµò×l@òsh^/݇ñ×ט>Z°AéżĤë=üúŻ£Ò×÷˙u$?ĝü#ye€ßlñ`?Ĝ€ L˙ê .˙ßÒŭ;Ĵòc—‘(JP0<ğV>7i“Gà•$p´Ö –,Ô˘:€âA¨ ïWàz}=‡ôİèÏ_cò`G†˙ú5]˙ëĦ×½áËÈÓ ĵ~ŭzèŭÊż ÖàŞ"zŭô K2Ò?ĜĤ„×ġ_ÎC÷3üáúùŝߔùħËżH×t;ÂE|WK.kó À#(K]€ò|(*@]ĝëĴ˙Żĥĝk´Ëċġ°ô7Ì_˙ H_^UÜŻÑ~ĵ–ŝġġ£ƒƒ¨ûÇé/ò›G›˜ô7›ÈóçúSŜéŻÎ˙êżŝë í×÷üo67|ŝ7e~ìò/E)áç˙h™`lrŞ´èTùÙ@1€&ìrùcÀ]ĝë2#`›ù£k<ÀäûóŞg?fŸĵ~ÍĠx\útúîßëGŻ1ŭĵŞ˙p%ÍÀû·yD0ĝü7ŝaϏIàùƒÁü˙Ż×żQ.HDúëÍÍÍ ]˙Ĥ̏]ŝE˘(Q 8„Œ=„ĝwN×ܒâĜzMúíƒñÇuFañê.ü›^'ż†˙#ĝëñxĝˆW׃ݟÎ@żx˙có>aàġ[>îú‡çżŝëXŝz`ŝßÔĤ?vù‰˘ë+À˙Ÿ^Bĝ€;ş¨˙Tó‹*0¨A*8- Àûáİż^â×Ä__o£xUoÎ3,ŭ·Àškĉ×ùk“˙q|lúï„ğü‹DQ:àÇ_}İÇ™żÑ€ƒıêısMÏ˙khA%T  iµPŜ+żîÍ˙ŞÈô×é{üĞqĝñóïġÈüú­oŜEúc—‘(JêùG—c²‹ô1€Ä<˙ż§ûßoı Ĵi™ġW(@ï”żĥüvŸl6ŬŸLß;˙WÎ?’;˙Ŝ6ż‰à_GĤ˙NĝħËżHŸŬİ·Hé8ż˙ŭ›ß˙˙ú˘†¸/€üOÄ˙4€żŜ8üïû§ïòïÏ__;çż½}ü[Éżŝú-§żyżçŭÎïßĜċ_$ŠRòġêÖ{¸ö[Pĥû=üÚOŞ@à— P#żŽĉŻŻcx4@Q|Üùǧ?êù_Ç_żÏCwtÌġ÷äŻ#ï_…ßĵġû?vù‰˘Ħ *ûàA*[ĴÀİ%EÏ˙šWe8ñä‚ß1`ûĈŒĦ5ÂI´Ô€˘ôaóeĵwúċOxÏéGŸż%7ħü&2˙¸ÈĞŸŜ˙ġğ·~ÈùğÉîßĜċ_$Š´ ’DwĜB êtŞ?׉züá µÀùJĝù7óĵ'˙2öŝ™3Ĝ|Š>6ŭH>êùy üóoIìò/E‰ƒÓ% %ġüß Ô€¸öġbr._Ċ?.Ŝİum6œM~=rúmüĜċ_$ŠRò5­Gm[PżùƒÑ?œVëŻGpuQ]€„żükžM1Ż#ñ›×$?vù‰˘¤÷38‰MŞÀĊdE¨ċš[` /ü@~ìò/E Gғ½<­6awµĝˆ; ¨‡\J>ƒ.>˙ş /ĵCùħËżH%a\ŭĝ=€çiJïĝ|D`IĜħĵè$ĵÂäÇ.˙"Q”” Äö^îèÁƒ€c“ê(ÁàÁC|ü“Ġòhi¤]xá…~ ?vù‰˘u@“›Ô ŭo*IċájH%Ĝ¤R€Ktê$ĵÂÇ.˙"Q”`"ÔúÑ#ĜŞç6ÁÂ>ËùĜX`ٞÏ>[/ݝµ¤¸.6Ÿt^xáòc—‘(JT”ƒMĜa;?âĝü'+X}Axĝm Ç_•žDxá…Ώ]ŝE˘(%fGNxüaˆşn#áóŸóO­ĴWe÷4^xá‡óc—‘(J\Ö4ı‰‡’Ô£ŸÚÓĝüóâí×ĠÑ2Yš$ĵÂàÇ.˙"Q”¨èçżTV8t}Ċm,œ-uHÛŻÁÓo Â ?„ğü‹DQÂ3<À1" =[– şàè'Ğ„ğ`'!4¤„^ĝÁüĜċ_$ŠRâî\Ôż#·0à¸Dġ: p ‹Ç-…^ĝáüĜċ_$ŠRòà!.ŝ†³ÌcŻuxHmİġ’f@­i°;Ž4ÁQ‹ká…~8?vù‰˘¤ µpôàˆóIÜÇ_5‘@| Q\|ìĦ><¤$ĵÂäÇ.˙"Q”’ù'­Ž £Šmğɏ?ĴÑà€ƒ#\µ Â ?”ğü‹DQJb=Ô~úlEà‹—f°í'hAéÍÔAğëàáá×ká…~8?vù‰˘”|˙!=ŝŸ}ĥJœm Ž`ÛMġòÀ“ƒGê÷ pŬU^xáóc—‘(JÉ×븆(‘H$$k=>ışôĊ6â°É‚Œ}ŝ"‘H$IրlKÈ%ۏ$ñ-Èßŝ&ˆH$‰<¤$m?À‚¸VosŽĈ>‘H$¤bìYßóD$‰>rı!Ĵ€r˜‘H$y2HĠ‚&Gւ†í‡x "‘HôħÊz  r˜$O.Ÿüüóċ“K…%‰D˘’¤,e@.ïŜ½ûóÏw·Ÿ+‰"‰D"GWµö=˙İôó ˆx "‘H$rò@ž[ä(m.{ ²ˆH$‰|MÇóçόòÏ˙üÏwÜŝ|­tĉYY K$‰>ry™ǀ\>ı|²Ŭ^_˙ìÛé‰D"‘çT ÌC߂ûq-£°D"‘HäİÙÁ@”ùà•L*óĊ‰D˘V!äÒ3 h?hˆ]ÉDŻĉ.ˆH$}Ĵò=4úWd@È~$Ġ™èħXcŸżH$‰F’灐é˜Ïçր,•’Df˘‹D"‘¨$ÏaÓ1· /éËz ċġxÇ>‘H$$ÈÜ=àL”Ü™èû›gCĈ>‘H$$ÏùÍoë\Êäne-,‘H$•ċz żùM–éŸĥÚŝ(ka‰D"‘¨,×qíǕğ” N%”=ÑE"‘HäÈġ@ĉNëg_l?Şdìó‰D"ÑHò<rA´ñ–298 [ħÏ_$‰D#Éë!ûĦ#YŜR&˙h-Èßŝf×sûüE"‘H4’\„BXĤ'Ä_ÊÖÂÚ5ˆħ cŸżH$‰FRuÖÜ a™Lp-ĴŬJ kìó‰D"ÑHގÂòCXK^ˤş–x "‘HôQĞ: Ë a9K™`˙ÇVFa‰D"‘ˆT…ċ†°x)“'Kò@ŞöC<‘H$úXĠ< ‹–2ùġċrİ<ív+3ÑE"‘HÄòFaábĵnëò(M~ŭdı<0ŝ‡żïĜç/‰D˘‘ä­Ĉ‹Do˘—2ùż&à(ûqfv’ú›x "‘HôħË[×uDÈyrùWRüüó­ŒÂ‰D"‘£ĞŠŭ0:¤Y `@ĥêûġVV‰D"‘QÀİ˜Ž È?ž][ËÁqĴħÏ_$‰D#İف°À€(ûûl]ïWÄûüE"‘H4’Z<˙T_ÔòùFéZV‰D"İ„<Ï?˙÷˙TÖì‡Ĵ…%‰D"Täúúúß˙ŭŻŬl”½D$‰D¤väú?Ñ~^ ⁈D"‘Ġꁰ˙qP^ហcŸżH$‰FR›ÂŝÇòÀìgk÷#„‘ĵcŸżH$‰FRû<´KÏqÖ2ûüE"‘H4’š=ċrIöñ@¤D$‰D;mˆ² d?–>ñ@D"‘ècV“b÷´]ˆ"‰D"O È?&“äáċò!D°ÎĉD"‘Uƒòà‚<|ä#XĈ‚˜qX⁈D"ÑGĞ&„-ˆµqXcŸżH$‰FR“ä0Y‚ŭ8;ÛŬ ô‚Œ}ŝ"‘H$IÊİŭ‚•K” 9dïCY]Y K$‰D¤ĞËZĦ…8Ğ|‰"‰D˘êİùú§.dìó‰D"ÑH::nŝÊZ„^ĝ—ğŝĴџ@á…ŝÖòc×_˘‘utĵeÙ™‘ù1=ÊjEĜq-˙f{sÓÌß4ò‘é#óħç›y£”ûŝżO~ìúK4²Ž ŭÀ˜gßz~`9“ ^ú =>êM‹´`jĝe@Ï&Ŝi’m·7.Ż*ì‚ŝ/ˆ/tú5<žD_ ‹á|H oÊMn~mJÒ{âñİÎrz¸é (şó„5üĜġ—hd݈~<~J“diúDž}šIp Ĥ†ża~1İ|ÁïŜÜÜ4…Mˆbâ}Ïĝg—/ù½=÷{Ĉ?k(Àn$–2ġżÏÏf3ġîêw'ŭ…QÎ˙g^úëŸĵ ò‹*_ SŭŜ™˙™Ê÷îü .Ĝû^âġOóġwĉŭk^˙{;ß˙…-?ù>~\žç‰z%9üˆ†İ_ _ÌĞš\ŭ h'pĝ"Q/Íyġĉ}(†/<~ìúK4²T ënmàğzĈáżÔ”­Üiö+’ëL E-ÏĠ÷Üá|²ĜŜÜpù˘Ä—Œ‡û½ïû]óŞ@ _ßA|áòabӟ¨ ²Êá(Ûx×O×íÜ0 “òËğuUXGŝ[ĴĞß^]Ž˙rĝÙ·h6Jß]>X˙¸×_óĠ•oğŝf^U™@à÷‰ûsw²żçúg˙ŝdxġ0ċàĊgûşċôÛĈüsžżÂòÔòEċUá Í!~ĉżBUK +Ô¨ä,_X(ñu&$ÌUĈ„^• ÀO?Mó5ŝÇlfx¨p”‰4Ŝ‡Ò›7ïúñŠsdN6J–4]>X…Úô÷öÊ/Ÿ™ŸŸ•^_5ĝŬıáúÓğŝ—ċC°ûġ+ŝÛòË]â|wù™˙šx×š3)?ûş\ì“÷AEd _P ñùĵüÊK<=Ӗ/<~–Ïü—ċĦ4ìç…Ë'ÔÌB~ìúK4²Ž½8Ğ ´ĉ98° ğ †°t vï_äê;´`Úx2 àƒäĤò\°A|QˇMˆÏ._”ĝ  qyŒb_PĞËò³Úóoĵš“}‘ÍĈğ~ûeĵ0 t˙íO¨À4_BÑ÷żŻñ?,_ñ?Š™Ç‡Lˆ×D@Â×ïN|ëġ+ŝÛòĞÄLˆËÏÔy/ŻĝîADó; Şy’ï; ĴÄċÔçÁKžÏ*_qA,_„ĝŜbĝYĠÑ<…w-= F²2…%::ŝ‚½ ~•e ‡6],ôŻÈj 1~8ŭḝ÷ĞÍj ´ŻauäkCX–Ç"Aċ*Äׄ°ˆ³Ù@‹2]ŭċ e@ôġçÚá;a=NżĈħ÷ŻĤ Ġç_ġ?öö\.„eù²˙áñµ!,s˙ˆ›˙ ÈÁ ´Ïġ_vAĈ˙pùYĊñù qĝ°á—h‰Ù‚˙şñìûà‚¸|}‹ĝŞ˙1óùÚç_ ċÈ W }?Ğv”ùš–á+.ˆËׇ°˜f )?şÙ•çÎħS‚Ú[o‰Żt(7şÌƒé[€Ï:ödĜòpA4_ _šÉÑ'ÊÑeD„-3Ìj_ 4<‹ÚLŞbĊ|Ñ!Q5=´`À€4ñ\qr÷qîV¤ş"ËÉŭò £°|QċëGaiž†%Ä7vĝşQXijóaĵüɽŝ|âC3FÄĦNdçŝĠUĦùÚQXÌş@f_? Ğуó?ĝĠ•o~ġ–JˆË׆°삔ĝpkÑ聘ò£Ú>2² aóQX.σ·Š>ä‚ĜçŸú; áîûùb!ˆˆ=|jsx GĦ'&ôÊC:r°’` ĉġëĞFžÚßN€İ@ë4òu&Äá‹2_¸| a^ĵJ°¤Uĝú–N_ûÎ çüóÜŻ6óòġ‡=ïŝĞPËGa9|8„ùYĠqùÚ–ı˙á>÷üƒ_–ŽÂê|ŭ5£°,_cB\>0 Ë^M+iô 4­"Uj8v•ìc“^=áŬùÂħ|aùJˆá jċ:ö…|áóŽçħà—ċ ˆ/ò„bhc×_˘‘u|ôwAso_Ž<ĞijGèĉÉ"Û×-!üm‚Óħóş™÷+M×!žÓ'B9!i–£s­ĝ˘Â7ŒÂ òê'Í·Âú"İċ Ô½ŝŞ Éíù׌˘Ò|Ë(¤vyÖĦQX>ß8 +Ü Üxŭ˙ü[ĝÖ믅ċò £°¨…eĝĉQX<ˆ bEmù1Ż<·cP°Ŭꆗ²òE _¸|QîÑ|áñ…e> ŒÂrĝ‚y˜KXèq\̏]‰F·àa°nnú9ĝ)Kùo4_P:. ~Ŝ×} ÙU3ßT°à ·ÂŞá ·ŒÂbHœI$…Ï7ŽÂ˘´ï÷ï^žW'>X:|(¤Ì…â›GaeŜ(Ĵß2 +Ğñ@:çÍ(Ĵî×…ċò-£°²(Ĵß4 +Ğ›ˆ¨ËOĈӛ]‹ÓCš÷â‹ÂT‰'ıíuX<¨Jó.[ŝ x<"Šg)w=DÄ} z`ˆÒŞfɏíTty#úĦΨsĠÂğUFîŭoF‘´m£°xê4Ëb9|Ë(,½Î|–΢ĝ˘(4ß6 +ŸݟŒˆ1!†÷ZžAiRqÖĝˆàŽÂÊùò@:ñŬGa…ĝ£°|żQXáò³ï”]–,_>P¸<5ù÷ı*g™~ş(,xŸ.žCA>EpOJşl _h~ìúK4²pxâ9d²£lqLO}^yúMÏŜq-żŬn‰÷+ܙ‹í…x”ÒŻó?jĝ‚}ëÂFa}Án>Ï@Żò-£°à™èıi9’Üô}óé·Àŭy eÒî(Ĵ ß< y킄ùĈQXfHVV%˙kż…o½ŝ|(Ĵvy–‚Ó¨[~öхßϜ2^†£:óñ<§b´ÚéÀC͏|A•?ލÒH?vŭ%Yċé‹#ġXQ‚ĝ ôy`ôj}ÈRĠe–˜j€Wöšxk>ÊU¨‰ÁkßÂÒ|CCh°ˆĉ Í7„°:òµ!,Ŭbg€TϘF™{} óäkC8Ŭĝú–áóQׄ°Ü>ŒJŭ›•òżĈéÀ·\ ßÂêÊׅ°t‚ĞJù!qù Ċ­ħbîÁèĊÓj=À†/:ñf Ĵ ?vŭ%YGÇéè>`Ĉ3è<áôAhˆ`äş@Àf r]*rlÁÔñ××ěJÓé>§Ÿ›y~}Ëá‹FŜżë}/óE= a^W@y˜úù˘Êפ_W…vç!Ĵ^| „ex­úó~ġà›Żż•›>|(„ĠçżÑâµm! IDATžvÂmžtäİ?Ž&<Ú°è͸ZhĦyF5ˆ/°¨X~ìúK4²ŽÌ6QÏ>íĝS/œž‘„3üàÛBŻ~‹1ÔNĵ[qòWo< ¤7_ZÔŬTFšùŞ éÓAĵ~|`D>4 ¤'_a Ë˙ÉÀüĵŝj Ğ/_ auĉAıŽñÂx\èTÏğ—âÙ|ôç ²7%ûĊğò`/ İc×_˘‘uDÉÙżĝ£zxRz~‚(…_,(ÄÄc;H<&ë¸3?ÉH_Ŝ3!CxׄôĉK&¤żÉ6›‰îBχ]ı ­‹0_1!ŭy?„ġóżëġ7ñ é͗BXy/ċehŸG4öàİw°0<÷Ġġàu÷·z ‹?vŭ%YÇGGü⋣£ šôĝPÁĝ'<\äÒòŻZ> š/Ž^´`:òh…ê0µÀûóž òEoMÈP^›~çżÙlÊhïë÷Ğ0_ÔóÖŜ a Êżw~ŭmĵ5!x/„Ġg‹ħŝ|fHñĊ ` ~ìúK4²Ž°‘M ~|áJĜ{V˙cKÄìm‹óSsnT÷âm_@NÈŜ†°jĝ˘…7!Ĵ!ĵÂêyŝ›Ä„ñpG”!×ï…pŞ|Q4ŸżÂÄ;!Ĵaù琷}ŭxÂÂğ!Ĵü~nßÀ³AzóĵšH1Œ/\Ê0,\à]<^0Ü<;(\§íĝi‘ŭˆ:ÖïŜ8­lBÈğó77 ğĦéž< òE#ž‡a âVÏóßl²-çN~Xĥé}ŭTñéN(ŭ˘…W•żžZ8”7!ĴŝùG×=<˙ÛŻżÏA‡°†ñ6„Ġ“×Ë5$ĵ-Û0|1ŒÇĊñ…§›â~ìúK4²ŽŽ3Í82…–áĠcÔċ,Ġá÷-í†P Ĥ< ĴżA˘½ŝ|Vaù˘‘÷BXƒx'„•ıkyef×ÒŜDÀûô低Ëcpl@#*<ÏRçŭV˙üĞz ½ùòġ÷½VŜaġċħïpB!û#ñĊDO(éË£jyñ@Dz5^c?tÚñĞ˙e lä°+wÛ è­µÑoìË'“À(Ĵrhğ/Â*‡ĥùÀ(Ĵ7¸Ó§úEšÇ4¤ŻżìŽ„½y²)şóQXÜ=Ú‘ŻŽÂê™Ġü÷f6óĦQX}ùò(Ĵ^|`VŸë§½ÏöyáÏŝé‡yÌNžډ/Ê<\Ímı~|Z˜—QX˘·—‹@²ßù;нx _Ys1T§àĠ&ŝĈ0†÷ûFy €p ËòŜèÌĵ܂òÈry§^hámKóo6öîñV |nŸ=}W;òĤŭmîñEY%ž£ÛûÜnàgdBœüó+öü+çżßµÑûú{{Kú>ŸÁŠÄŬx\Ƚ˜ ğ~NyO’dÈġ#Ož€{][ŭyŝf(ñc×_˘‘u|D„,ŭéĞ;(ġŭô)?@5a´íÀ·İ'0eÓħËÁŭFŝ&Ìû Ëŝé{&¤7ïÎìÍo6 ­7‘s ‘Ï+<íÎ|5}à‹ŭ¤ÀµèóĴ÷ù‘|>„wGçöç]ҟGaLȰóo×o–ûôx;;tïÍmä ^g´0ñ@>v‘âöƒ¨£ô8ğTšĞ?ŝôÓß?ŭt6û;8ħ™'ĝ‡-Ÿ¤ŝ|İġĉ+£3ûòċљŭxe@2³mJŜ˙ŝaħŽä#Ó/4O€üs*Aùç„pñڄ âgք }~G½~w³Aĵ1!­|QâÇżD# cÔ "§”g¸âó3×û[ı1à]ġEFZħŭx?„Ġ?}?„5ˆwBX½ùlƒ7OŬı}½ÙV?ˆiyФx<5,äżŭÂğO@Ŝa ⍠vŝ^żÂêÏû!Ĵ~üĜġ—hdá(\Ħ„Ë^ÁTÓy†5>@J)Î/b Ċ1ñÖi_äŭy· Iß5!ŭy?„Ġ›Ï69$Ÿ'ÜCԗ‡ĦQ|žÓjšèÍÓ2öYÁñbHŝ;_ƒžç Âğ&dHŝ[2ôüǽ~7„5äúŬV?~ìúK4²´’8½0}hħ€§G}˙é™i¸cŭRüN-˜=\£—xêǗcÀ}ùÊ(Ĵ|yV?öj471é˙˘yZ¤h0_Ĝ킊!|9„3(˙œŜíAĵ5!òßö‚Œ{ŭƒx?„5€wÖèïɏ]‰F–?óRÔʏ?>³.,˜ĠìXdÔ9ĤjyǤŝĵ_ à½Ö Ŝ aġĉ݉ú‘ò÷gn†ìĝB§_ âÁ€XˆÉĝÂğOÀP^‡°37„u Żß aġçŭ52ûñc×_˘‘Z ŞîĜÇyIԓ Ġô]Ĝ;څ5ÑOvUÊ} ô÷ĉK¨?ŝĵÂêÍCĞ]/í˘nbžÂOĊ`>Áíê>€‡Ħ59M +†Ġ toŸ€!ĵÂÀ{!Ĵ|ñ]żkB†<˙n/H?~ìúK4²ÌžèyN,ƒñ#,` ê²“Ì{€²Ò8ŽĴ⁀ <ˆwBX½ùRĞ?úòzÏkŭ_OpĝbO{^Ó"$ñ|џ/‡pċŸÂÄ;!ĴN×Èż^×äŭm^Zĝ½=~9ĵ·ÍK+?£×BV‘B;Ô&z&B–Rƒ g‡/[u+ĦÌÍÄġ?p ˙µŬ„ùIžSÜ´À*8ÓŻĥà*;•6ñßZÄáŭ5òxë|c=ğ”ŭßċü¤_8MÈL÷a$ԇA|ÑÌÖ1|a÷ËĈöu#?3ݰÒŝü$-Ë]Ä_ÊĤ‘/4o=RĞkú…ğ!Ĵ–ëŻòŭżÍï˙ĠŠ{ò•Š›xÌ&⁈ô<Üİż’ŒĈèŭŭf?ŝ4ŸÏŸİôÖòy3) ÍoĵnżÉ$nJßñ? —ww*mâ˙C·IhV#ïĝĊ7ÌgzüZĤ—²j:îqŸù"½ÙÛxƒžLò„+ VĞÍ|n_ŻW8ÂÑXMĵġ?ò™½˙Áüñ™~ÒàéqùÒR6µ|Ħ×ҀS6ĵ·V3}ÙüwCXM<›Y½=l˙ëċ_ŸëŻŬŠy¨—½~o§â~Ĥ_ȏ]‰F´€ġú~˙‚bX ~ˆŒx[ĥ…™oH-˜77NüwK!Ôóşñ^È$nç&\`V#ïĝè‚Fa5òŽ˙1ûfbGañ4ŭ,k|ùŜù._´ñĊÄmBRFwŜñ?Ñ|A<ĠŒMüÌqA&ÁxcúT÷çîóXÊĤ™7ë†oMH3îVŜ4 Љ§û|2ìùíxŭĦü÷CXßá]ÒÌÏĴ ‚üĜġ—hdéŭ@=!:×}"ivì=Bêùá=m)EkĉŬÜĝ¨‘çHı7 ¤ÂjàŬ.şQXü·í£°ùoŞ£°àFì;mëĈë×Êíġ'…yçŝqúE—ôsי走`3ħ‚làgŽ R3 Ğ)}wÄFÍ(Ĵ˘ _¸ĵÂjäġ2²xĞŜ˜Úi²Ç˙Š×Êż>×ĉŭÍî›yÇ ÂšµóĈ‘QX"=dĦSIγâ ;%ótÌċßĵŸq':´`6›rjâmó;w<?ܘ~ W a5ò ˘ùRЉwğ@fÄży£˘ä­âğœ?Ŝ†ÍF˘²<ˆBW Žwšf—ëE­Âéğŝ‡´Û\сw\°Ò|ŭş‘ƒ–Có€šĝ‚'Ĵ”x9÷Ĥô‹@ún TÏS‹6äóÏżëġ‡Ÿßî×È˙rĞ7ïú-ÏżÓBù?vŭ%Yĵ#^‚s 33—ƒúé1 ×xèħXa •‹qíĵeŭżĉùí|ŭ“`ŝ—CXßöċK!ĴŜġ?d–hGÂÊıÊKpU‹|ŸìCÊkŜ"Ż;zĦ#˘[`ù_Ĉß*@E•/—LH•˙ĥô21àYȄTyoŒÂB~³ÉžÈ ½ĜıîâMȀ€}áë7Ŝ˙0ÙèĠtžĴ‰ĉË÷/Ô5|ĦÓ/hŞ]•ÏŭQX–§™Ġ‰ž Rù™çäµH8˙ùĤ8Şó@÷Ÿúż|Ġ„ĝŒ ĴÈeóżjB OFÂN‹Ç×y σ]O>`Bĵ; FQÖÂr÷ 3o–x "ž‰îˆĤ„à`žcc/ìĦE_iÔ)E²¨ḋkH²Ä<€ÄOôà+뀄bÀv8o•/7àB£°ìpŜ2ïû“o ? ™2?+ù³oˆ‡í¤öıĈäHżÉ6›ÒùÓ-€µÇ6fH…Ç.‰êġ{.ˆ~ô^p)_âiXn•/ù…n._äÜ%Rĝ™˙Ê<Àŭ77Ĉ™KXë6EˆŻšÀù<\şÌÏ&Dó4ï#!ż,I¨$Ǩ_Ïëo|~;\Q“˙•–Î۝™*ïù3âÇżD#‹f˘s'l˘$~€tß§ħ3‰y‡^ ˆì˙Ä{M&‚[âYM ĜÌH?ögž—_†Żú4£üĜŸy^~9ĵŬŬ‘~ìÏî´rÓ/*é>/½4ĈBóÄÂŞ|ÉÉ[àĉù1 …Js'dÚäVùÂċ ËWÏ(G@CÁĞŸ`ĊżÏ³n£°ĵéš/|(ñM×ß!˙Żż_ġ?µĵës,ĵC͗‡™‘^ĉgŝ+DtäRßĦĵïŭtnċĥ9-<Ż6ÁjcÀE•ŻÈá!,ĉËnGÛZXÎp^à+nG`-,=/ßż{œéñİ=˙"Ès'vıÙXjBrJáò&‚|Ùí­…•èIŒ/2KÓċˆŸĠjóß5 ´½4 ï٘R“jĝ˘†·kQ…zAJé³!ž–·ùêqĝ‚ù‚ïO‰oşŝnÏoŭġwÈ˙E8„Ġ‡°˜/ı%D<]ԂuŞ.vEçYƒ ĊĥX 5Ê-ö<òÜùÉĥÀœ&wİ9œ5Ĉ€™opA\&ÂbŜ1|5„…yр4¸ Ö Ÿ Â,ŞŸçÜÖöZıíž҅Żo|Ùíp^ĵö@Ên‡óêîìëgˆ-€ŜîR­żŻçǸ|áò–“~aPŜ˘ÄBXÏsé˙œ&ìgM£°úz M×߉‡°/u{x/ËCXÌÏj_⁈vl :Á½µîéÀ È4÷èxaë:]'p (÷ z Êe7Û ŭĈ ™¸?i>\€’Ĵ´tPm .ÂÒ|½ â^âëŭg-,ĵûû%Nöów=Üŝ_ċ‹*߄Ô<†v Ís#{ż‹—׺ –/,ÏTÖÉ[à|ŝşĈ§‡ñ üy5ƒ(˜/ˆ/˜/Ê|8„ċ¤_x<ßf„° _Xžzˆè6á –í×ß̓żŝöüŻ auç!,Í׺ 2 KD;rÈç‚ıK•p':î/¨€‘BôÉi8}°–ÛĜ›­ßöνoÛN1àzĉ!׆°ş@51à†VCÈ7ڃ0 ¸‚ÊsúÁ÷@r§„ßôA _ĝ|ѽĤO+Ċœ~a<ÀšW•/‡jÒák]nHNġv˘'ÛÛY|]< 'G:<µŝİ˘a–¸UVÂ'°ÜW)ŭĈ–Ëa>ÖiôÀğñµ!Ĵz˙coaŻżjBÎYˆ"„† ċìaPU…°dWös60ĝ–7”m1à›­ioûÎè͍× Ĉò˘qú.o ßÂjèù†ù̙^gıuDĝüs{Ñyèüħ ĵžŻoBş|QÏ׺ ÌÜqc^hžCX“ú.˘=˙ı%bÎ-7‡‰óü´„° ‡/êĝú^}Hž›™è Mĥİ…exêöpx„EsB:\×ç·îú;äcĞ_ÂjèA~ìúK4²x-N’(ğħ݃ l@Úï_èĝƒF›>]„ü@77ĠàżùĊöĤ1œDŽÂJ†ŒÂòCX]Ga%zĴ3ŬŸ—Kܤž˙’ó^(ıӂ,¨á›Z 8†ŞšEU낔ĝ‚Ó§i!šŻïÉËù_ á°Ù×,ŭüi&„hÛĝÚ–“Ŝ‚Ê„ŜDÓ(Ĵ_8<ŝ·¨ŭúğxM×ß‰Ż aUFaùŻúQX_ß"} "…eĈċĉĤ„Bc‘CX4ŒwÁoöƒşÔy5Z \9$çÌM á[ä77š…•…ç˘w…=ċQ£°2ìuĉÙèĤŞÛïzŝ…Ç>ßaËċô;ŒÂÂĊ·öu­˜poqĦùÖQXY¸ĠÏO’kĉ + ÷‚hu– P ĝ†.wFĤWÙ`‹K~şŝÊ´R RóEÎĉ#瘉á›[ ċô î!}–IŸŞĉ„×zÒ|­ âŬ˙PşïMä IlKrúû€‚¨Çs·­öâC!Ĵ}íÂPú™Z“ñ ëBX†§M+|Ñáúğä_ÓġwâkBXÀÓ²ğ£°²şñµ] ⁈ÀÁœlDÎŬċ\ĤP‚’…îTç鄋$7fċù€Iñí-0͗ü^|(„ùĥQXÈBXÄ7tX~Ÿğ‡]?.óÎ?׳`Ì÷Ü9˙Âç —oEé†/ŠRú­£°Xb÷4 ÀÂ˙i-äë\I—ü7ĉ‰žŜü×Î$´ùWy KPižDtùš‰„ċô Jż¨¤ï-¤h'ÚôC|Q8çûü×_§üO$ìÌ×L$dĥ DFa‰ÀY˜™^‹<Ù·c-Ah@rm@tëK—ÉĊZ0d€&^!ÊduÒc·ùí-„…2<2NëËá\'}09Žñ0|CˆÏ—Lˆĉş@\žûò\2Zdúükˏ­ŬÂáëE<ú ÔŻÓÇĊÍŭŻ{žéÓ7| RÉżPŝÓ/mÒL‹²|á5"‚|áñ…Ëc…ïOÁ'šħYèE[|ä…X W(ÚŻżKŝ5]G^Uûn Ëákğ@âxĵïv˜Ÿ‰ğŝ,ĠÑĥ—‚Ÿà¤çı‰!€áy„ <°4 u£8çD˙ñsxŻÙ'…ÀF†o F­êyGï"·ü·ġħÊĵcBf†oèqyרÍGëùo<^ϧis‹ÂòŝîËáyŸŠPúµ.H‰‡ŠÒá Ë׸ “ŽùoǨe܉Ĉ•ÏëĵŻċ ³‡äòñĜóyâx&yosVá­ Áu#‰/ wŽċ‹Êùw|ŝkžßúëŻĉżŝÏ)섕ϸÏñhâí,âÇżD#Kµ@ܰsš‰<5„BXŝBf5E˜‚-àËM#è(AĥñôĤ_ïĵ'ĥÑyçĞùúßl6u|х_,U€úGġQ0_ż~|íŭÓ­ûŸħy^[E/Gҗ׳3‹!é™^Ĵ˜ĤfúçĜçżŭûùħë/ÑÈ:‚G„'›çv.´Da;²Ü-sı^Íż/¸3ŒßFòħéżU>sùÍÜcމWï¨çÒ/ò¸a’éÉÖoùŝq„Žù$‚/ELú´‹-.–ïSw½­ĝpžżñĝħë/ÑȂ69ÊÂÇǟ ĉ )jÁïó°H3żÉ6ùS÷Çí½˙ĝ˘7_p|q(˙vÏ˙ƒáÇżD#ëèĜ˙Êz~ /ĵ/?vŭ%Y£?Â /ü­ċÇżD#kNÊó( /ĵ ˙‘ñl@–‹l˙/–ĝĊ˙5}ÍO”ÌÇ/ĵ ˙ħñl@6ÙŬ%|NĞĴ^êŬ''Ëı ûù‹[~ŝ“˙ž²È”'³X~İ^U“ó˘l‚ĉËı1a /ümĉ/nùù ?NŝdħD¤ı˜->˙òÓ/á÷żĊżĝ5Ïtzóû÷ïßğ§ŝ×g ĵ /üÇĈï([²Ynw•C¤ìl2ùüóO?ÏàóĠ Xü€ù‰úˆ|)ŝ*ĵ /üÇÉïl²ğÙ"›?°?óٗ³/?E#4aôƒ–úxǽûú>ÇèÛíà7·üü…—üGüĊ-?É˙ñòGqsġsèY Sòċdòċ|6Y¨ï'ĝ‹~Ĝj4ÏNĉ„Αßü°Ùlâĝ˘ĝÍ&êü›˙!–ËżXŝƒË˙{ï9˙>èüżx_ùż‰ÊXáAò˙Ê˙ċż,7ĝ9SNÍ|ñċìÓ/Ġ7a~ëX à}Èŝıú€ûê–ĝ +Ž˙!–=uq×ÉÇĤ?öù{ù§ç˙&:˙ñ1÷o³ùĵ7ïßż˜ô7|Üùàó§ùże~8˙A½ó3ßĵÍüßôĵêŒ9˙£î߇’˙›>׏çÙîĉ˙ŽŜš/ïŜ],NNÍĉ³ÙäSċÀ|ùéüùs×~`?Ê=mîĞ\|ŝĵ•çĵâcӝ§×û§ïáàûÇ˙Éûùżáò;ŝ+4ŠçêkĦAü†*Á¸üïuŝ~ŝoàçżş{\ Ï˙|8˙Ġ·ˆüW™•˙X ?ßôá•ùÈtêĝŭóÍü' Î2"›nçÌ˙>çÏü†}ÎÈ?…µ¸‹ˆÙòdŝ闳ĊB}ûrñéD}Ào]òœoÀ=]€¸qqäÙr ?"˙¤ _“˙oùüıÔÜۘ pÀġĞ ‚B0Œ×gÖcŻŞĵ£›¸ü³pÈġs)’˙›Íċ1éÇç?ê2"˙7h€†ĉ?˜¨?ŸÍüCTŝ£š˙tŭùŻ´@ƒóŸóq‡Â\` ƒ=ËNž?W|1ƒp=ĝ ŝóçĤ @3ŻÎ^Ÿ3QÇ_vä/jĝ'#ó]Ż˙ñ›N|]ŝm"y˙üÁeĉê§+ïç?•ŜMŝI™ŽEèóχòˆ~ŝZ~ĵwŝĞ“wo˙ ü‡;çŝ7ä˙F[€Ħù-àùżù+¨ü‡ 8*˙ëŻ­˙jóC.ÈüçFÔ&&˙á;8Pë„[ ËE6W5ÄóO?],ʅ™<˙­şÂç<Œ >à$ƒż?ŝ9·àž7› qÉĞ ŽL?öúĝˑÓ÷yÎÎáùŻŞ'ôCòj¨à†ċżŝĊàû‡-ĜùS °Ç_\Óó—Ġû“˙&GŜFŝ_£ò>;*˙7ž˙pz:˙†ċżIPŝC™oÉ˙×ߔ˙`Ávp\ï‰ĥ@'0E}>6ĴœM İùoĠ·t‚¸0l¨?×óœZÁ?ıŒáô#ùĜô#ù͸ĵŸ˙tŻÉ IDAT‘˙Tlĉ˙ĉ¨Nà†ĉ?Oç`KŝéˆA ŭŽü%}İüë}˙üċeûט˙x1QùŻŽò_ÎżùOı“˙6ŭAùġyTŝƒž˙ŠĵÜA†,â—¸›*Ú¨çh>~‹QÂçF'ìsé_Ôóœ˙›ŝI˙äIdú£ó›qÓżŒÍ?Ÿ§áùżÁĝĊàü‡Ö#˙-¸ÖûgêŻ@úxbkĝNùÇóŸ˘7ù0VAo%˙Ħŭ•˙plòo@ŝc{xŝoln Ìχçż:…˜üwHŝŭNt²@b ›“Á¤DĝU—E/|zžëN¨żyġ2l8˙$’§ööòOâùÍûâ/ÚóŸ#°Ŭù'eêşô/Zï?Ö\;żÄ ˆÈ˙ÍüBƒókĴˆüó‰áıîz˙›óŻĤ‘oËxCLŝFä?ŝ9&˙9„74˙ħ"&˙­C2,˙7'*ŭ°&Ϟ-î.žÍ–`5ZcÄwÎëy°€°·k'ŝ"À?‰ċ/ğóĦóĉ7QüeŸë|ôŭ/ċ˙Ĉğ½óĜŭx?˙( ÜçúKùżqûçżÂĠÍçUHŬÓŻä?ô:˙Pú›0ß?˙Uu:ßDċ?…£†ç?axŝo(68˙ñvFä_œ˙ä`tŻKùO‡ó““gŠ_Ŝ]>£îû1˙Ïù9Úm€Ôħ1F°ô–:žCÜ ù‹*7ĝ}ñóżġüeÉ÷JżCŝÁqŻϗ›>ç_N_=ï1ùG-è[Ôïż×€˙Tö¸˙ħ|sŝožP4hxŝ?Ħ.€Ħù˙oàüß Ï¸ż1ùOxŭŭkÍŠ(ÍşXW™Ż%Z°üšżÍççĝ€”çĠcä/Ş< ğòôGç7ħéĞ&H ù$.ŭËé‡òŻOúòŸlóïɓü€áü“~éoÊüeÏó÷ï˙ŽÀÍÀï“—]ï‡ürٓoÉeF͝ŸCóŸ?npŝëóés˙7óÒġEäżî`š˙tŝ`@žŬU ݝŸĞ˘ =.ŭşëĝ'O^ ˙ĝ‹‘ùçÏ[~§ÂoâÒò~ÏżßáŝÇòçï2ŭ[˜˙ʀmbÎ `Ìŭƒ(~ӏ/ç?€ÈóW…Nvmqœ“ÒñòÂ_ŒÌ}ŭ·;˙$˙o÷ŭ›ûŝĉy"á§²ŸœPLŭŜÁ@Óñɋ„ż™ûúo;?vŝIŝßîû?6?öŭßA-š xüÉĠĠĠx ú|>ž£ARż0?yqäó›ßôä/<ŝ_ŝċ_Ŝ3÷ƒâcï˙ûç/󟎇çżK9˙Ŝ7˙KÏŭ÷Ħù§˙ŝöĝ~ù÷ùħóŻof˘;Ëi=™Ğ7\½À¨?ž'Ιżxġ€Dñê÷äïŝ˘ĝŝ÷l9˙CÏCŸüŬÏ>÷˙ĥñcçßğÎ8ŽÉ8Žı˙:?vŝġàÍZXwïÒ0`4Aĝ†dqĵısŒï=aŝÂñéĊûé ŝˆùŝ÷˙íĉßÛÎs<ŝ™„;˙Ŝuŝ³|˙¸ŝñVŝġàwx+Ħ` µË2G‡ĊÏÎ1~À;áÙċ̳Ëĝñ‘÷?–·ùOÇïÈüĊ[ċéùÏ|˙ùïo‘ï—ùOK™p/O.ïpž\ĈÛÄ_ĵU~ìü{Ûùïş˙Îñ;â›óï}ócçßğΚ:„4ôŝèü{Ì?ZLÇ›Oè-ĝ†s#{|b˙n|û<ğĵƒyvß#12˙aċßÛÎ{<,˙ìñ°û˙áóVŝ½ëü·dĜŭ³/…-˙À€`Žž‰op\”9>9q]šù YÏo#ùĦé[¸+áñօ|_üŬŠ˙PóÛñŝ—ó_o·òOŸœlßߜ––˙}ù÷”˙˜Ħû×9˙·ò߄Àjĝĥü3!¤X~`ŝ½kGŝ£. …3Š+è²ĵ Ĝ‰ÂœRÏoßáñÚċÊk—qèù‡Bcïïŝwâ·ÛŽ÷?–/ç?+”*ŝùÇ|sŝi~Íoċ_>ĥüuÌ?8ŽÊ˙ívXŝ›Nü-˙ÙĜÚôûċ?ó'ŭùm/.˙5?Żá{ä?ÍD_,y&"~@Ëòâ„/Èë…oàU~wĉ/Béó֟g—·ïŸ?ğŒñüvÔôçïċ_%˙·‘ùߙ/ç?Ÿpè˙éĝ„Ê߀ü×üĵ/—ŝĵÊo‡óóy?$˙ñï1ùeHŝk²x˙µš˙ĈÄßĈ×ĉżc€‚÷Ż-˙éx ׇè¸"#â‚÷{.̉ë²P e†ĝm,żíÎûçO.êpž\ĵx~;júó÷ÈwÉ˙í62˙ĝĉü×Çہ÷_ߏüÖħÀĊ¤?8˙ìq·ûĉĠùԞ˙€üßĥòÍùŻk³Àġ·ċż=îu˙ Ïœ˙öó†ċ?Ï-ß%˙ìŭ­{ŭŭòß9?˜HˆQ°^\Ğ“Ò1üĈ?&ŝ˘Â›Û׉ŻĤ?6onßh|ìùë;,˙bùêŭß6]òO¨Á|ŻôĞùËÏ{%˙·úІĉ_Óŭ{û|ÛŭÇ?o믿5˙uí70˙·-|{ŝo{òü×ġwŭŭŸ7ĉż6óϘżĦùO‡;ĝĞgĵ">¨˙şú‰o׉w<÷).äéùˆcÓ•ßOŝbd=˙Myx˙ù¸üïŝĥÂocîsúcóŭóĥï˙ĥCúMùߟ/żí}˙ĥ‘|lú ×?8}^ ք†…7üÛżŭÛO܋ŸXL½òġü6ŽßŽÍżżëżˆĵ˙ħüǑ˙BˆÈ,5Ŭï˙[Ï˙žéèùOÒƒó˙ĝ‹Úûך˙öü‡ċ òß.Ĥ¸`?য়~úŽJ9™Ûz‡=>™Ÿ4ñ8˙[ŝ•òk*aùߖ~kŝ÷ċ+ùżË˙m_š˙8 Ğ´œ/áß3+Ħ˜´9•:~ËoßàçÑü6òüxĤ‹Żä˙62˙ĥ4j¤ëŭ/óۆôğä?v"Ĉä˙–jĴáùżÊżmÏô+ùß÷ü[ò_çG×ü+ç_’˙üyCóż-ŭÖüßn#óߞ˙üßĥ¤ßš˙4 (šÊÎŜ Dä¤ġ¸–ßnß#12?öġùíÈ|éŭáÏë~˙ġ(š|Íŭì‘~lŝ5\7ŝúğä_ïó/Ÿotŝ…Î'"˙·QùÏ×78˙·Ûĥûל˙^úƒò‡çëù7ç?ŭ‡ñÒTvú;½áê'×i<~üĊÈüĜ×ÛùöûżŬnGĉż9ŭNüv\>2˙ÓïŸö|†òÛy?|=qùżíÏ{÷o™˙ö|†ċżÏw¨?+éß„ĈŸ “ÄmqšÊߍ•=á%˙?f~ìü“üż÷ß,ç'’̝NûöĝÄ9>ĦäM 0‚M_ĝqóOò˙Î?É˙Û}˙ófˆ²@`‚Nĉn'óŭÎEW›€ó#óc_˙mçÇÎ?É˙Û}˙Gq9wׂ‚…ù+ˆŜ€€sŒ ñ‰>>žż™ûúo;?vŝIŝßîû?6?ĝŝ9™ïŝí/ùËwöûĞ=†pŽÑž7t‘ûúo;?vŝIŝßîû?6?Úŭ7kaA/<ĊÄNû èğ'ĝ>~Q=Ĉô üĊÈüĜ×ÛùħóOò˙vß˙ħùħï˙`ž'ò†"'lƒîŜ½‹[Şë°—:žCŸ Ÿ1ŝ‘ É÷N˙bdŝ-ßżÛΗó˙âCÏ?É˙·z˙Úò˙âCË?É˙<ŽÂ:yĥ„µ´^à›é ‹`€NĜ‹QÇĝŝó úúĵ*ћżxĞ|ìù ˙vóïâ=ó·ïŝŬv_ŝ]ĵcŝöŬżħùĦ÷o <X–ôŭ—_ß ÄÒÇóò1üBÙ$_ĵMŝ˘?÷mòÎ˙cçßiŝ_Dĉ_ŝŜ˙*˙Ŝuŝ_Dĉ/ùו§ĊOžĦ [â×]Ԃ–˙RwLċ/"ùĜô]ŝbd~ìë#˙>äüċçğä?ĈüğMùñŽùÛx˙‡ñ;àÄÀ°-b?ÍÙ)ñQ|g<ÌwǃĵĈğ|J€7ĝ0^ċûá^›ŝ§Ô~\Mŝ]t£ëòÏO½éZ‚ùçá–}L(˙4×ċòϝԃWQ—˙ñşüïŠ×ĉ߅{ >&˙|ĵ’öƒÂùçáÌ?/_ƒû9Áûgı0ïŸF]ŝ3îŜ‚àUÔäWĵ&˙;Ìcëm³ċ˘ñké͵„^xá…˙ù6@ Œ½˜nêêüp‚?۔Ê:Ñé /ĵ ˙ħñ4‘èïώŻàO¸Ûŭ„ߎA3ŝ7·˙ /ĵ ˙ññ;üGówŭ3˙ŭÄ9ž;ï5? /ĵ ˙qò;ÓéÔżO§Ó—=_Âßj~G$‰†ÊV@‹'éâ‰S·еŝŝVóc?"‘è‹ŞŸ´` hÂOËZŻ+ż²jâžĈĉŸÒ—/È Ŝù ħùħŸ?‘Ht‹ġĈZ° ރ²Œ+ʊYô/ùÌ*–˙]$ïÖŭCxOħĵ9§&ŝ8’ï–ŝĜϟH$şĊ2µÏ"…6,׋Ĥ‚A2ġ,ˆŞà'UU*÷A[ġzµd…vÔÌSMÁ§Ĵ=Toŝŝ}ĉ˙›ú˘‚şżçù—í|ŝ3LvfiÍÒŻLŞÊOJׯŜ?c~2XŭÜÄg%8Juĉ§í¤?öó'‰nħlĞĦ”j Şöö~…ÎUŭäˆĴIş~YÇ;mġ½)·ĜûóžÁzğ3ŻZèİ2“”kŬ Ġà)Ó/Wş“ Ÿ ^Pçó'LW˙x*36uüÄç'ö2&Ĉ„4ñpŭ“ûĈ~Z>€L ?öó'‰nħ¸úI\M]roïWĤŞ\ŸNıĉĉş× áTy|C}ğžr›½oêÌt÷L}ğ§*~0BŬÓçÚs’žíĤ˙Í|x }Î_ŠŸQġu/ĥċ÷(ĈÖÊ£ÍĜŬĠ57m‡²!¨àġÓğî)ŜÔŭm†Zùßћf˜~ê&kN+ a‰D˘(m6ŬˆĊ*hŠƒw€(ûq\A–§ËċRG˘lFï´ŜĦêWµöé´Ż*ıÇ`€vÏı&ϲ>ü}5ÏÏÎÎMê~uA]φġïù9UÛìH€ !¤§–ŝîÙıŝ,mĠ‰¨:CH×Oöçü<ġƒPğփèÀŸ6cĤ?,ŠĉÇ~ŝD"Ñ-–İ}ŝè?Á HU²Şûñ+]QŞúż¤•ÂñyĠ‚N?Ĥ:w/U‡Óì´ü ÍüïLôIĠżĝ1{|"yŒ[ŬSġç·ĵÑy0ÔÊÏ8y2ĥŝíqh݁×ŝ3íMížİEÔĵT…ׁ]H_–âá#èóšyíiœĦdc° Ç a‰D˘XÙ èż+ŭ 6 {’qĴ†*\ġRNÀr ‘¤ġÊ •yÁè6û^†ußôô´˙;r9ç9Ͳ^ü=:@ ÂÔŭSìé’>×Ù炿§[ŝì MÉ 5óTm£ ³34Hh̜T€×^ә+ësĤ bŻ¤‰˙#Ż.†>o2“–H$ŠĠ>GĤ"D}˙•Ò45ĉtµ„. =bÍ-ĝi˜‡ ĜlĴŸRJw*ı]v@t½Ŭ“Wĥ'…ú+LÎ÷¨ĉoċ'l1vħÂÇv?ĊÒ°YŬ:ÍéÏL<èœŞĵ˘™; +x˙&”>œ€ĉÏ­HÓŽ{;OÏÈó8kr~îx b@D"ÑpQŭ³>21z ÇÓi _îÀµ üÀO§Î(¤  vb`oÁ45@g^‡ĜA¤?Açü jMt@Ĝu0#pÛxLĴ êŬsA5™ì k8˙`5˜ÇŞû/‰ú#l*ÈCĝ } œéSħ¤ž‡—BœôÏÏĝÛùÌòc?"‘è+Ԃéhi_Çi'ÜçĴëìsìÉ`+CËêĝéħJΟÂG†?Xd€LN_ŭU괓P¸'…ìÇ$ġB`•óÇôħÓEw‘˙qĈ#şŒ’–H$İ/X‡oħĜŠj È)† `e˙rài*Ş´ҋż÷ğ{6nĊö)ôZ÷H)tf4{›ŝ{S3* íü1†Eíu˜ËĦ#IXïíԕĉ͔A‚ËcqÙ €CX5éÓ;vµÛe˙áÌĜÔY OççK~șŽdqú3 a‰D˘XÙzÇĴĜğÇĠ,ÎŬ8…j{ ­\Œdµ²+[yġ–á3=<Ġó%Nûñzícżš VŬÓwmžŠucÒ^çŸRó_OfL?9Nj*{2>˙ ':Ó³FR]wÏRfĉq„Ó76†"fhÀ8†vOlÖÈ;˜ĊÏô_$„%‰âğM§żú•ŬGfĤĵÚ,ôàüżĠÔĴµš.WĤŝ}àİĤá0+=íÉß³„§í­ì†Òw—î0ˆiQ•ülĉ€0ë,u&ƒïٓ òŸé0+`ag]Ż`Vêċ4ÀƒyœbĜh/[˙ѓ§P AHçôħÒOqĴĴc?(žÖOM êœFPħ=ÙÛÉ$uü'8çÛtßPW†™‘ÎÎW°\L]ú3g- Dq˙…ġ‰Ra5lAìè_ĥ`d]%„%‰bZX˙Á Xè€ĴVş³a î)ù#0—‚@\Ħ[ŜlT4ıŻ'ĤÙ4E°Wà8#/bò>§_úizĤÌôú%\—Ó,ôv^ŝ=î-ç œ{.p>ÉÍ%İòwŽ‚WĊ=4™;D‰@˙CŭCPNú›^ïŠyž ržÎĴÄ!Ĵ>eó‡ÖçÌôèk“*!,‘H'Ġ„ċ (ûĠŻĤ`=ö¨:µ£]—{mê\]›&¸ĉÍŝMXó§UM €Oğó¸‚ù½ßѤôħ‰!íñ–$müD§+(òÊUfBöÚÏ˙>  :·ä½Ôxédo•ĤvURú“O@´š û?0h„(eù‰I_ŻàˆÖÂÎ@7Cşì(.Ÿž×+™pï Yĵ&ğ&£„°D"Qœ^B„°żÚËîAx6Ŭ˜žB‹µĤĥ?Ž€ÒŬkÂÑ<Ċ~8È>!˙£o š¤“3ó#ö¤tKŸĞç{4ŬV–hI Òn;½€Mû›™È•ÙĊ‰ŞŝÚôïÏpµŜ]ÏY€³Ùċ™€ì’rÊi£Q[tÖ<„‹Ğ½—3ŠËçï;)’Qg²{ĉ À˘ğ13üĜϟH$şĊÂpö2ž<ƒŝÌÈf/aÀİ3cċ`ÒüVM|Lu>„zè³NOğóvèÛ ”:R@]ĝû̟ó‚ŭ€ŸZx]ŬĈiSĠ̒ëĝ‰˙|q6O%ŸñU}…{–/ÊןjûĊK¸ƒ1ԋİàEïÚİ1_•y0 4hË^?†˘§ž§çz‰ìH(‰˘…!^rĞü),_2]}öë)ĝ §:ú¤œüzÔM œC(Ä£Ħê `e Ï%éÌs§ġ3ö†ruáİï…çk(¤”fìT3ĉ+\ž´·K³÷xX—şĴ%Y³Ï›ügš§Ñ³èÒÌôĴ”=ö@Êü„×\?ÜòÚ˙87KKš ] M 4ü™Ž~á\DžGbĥĕ–H$.w*iĠà~ ™šî ìĈsgşĵ£]…ÄbB÷~<­B•Üc=˜jÇN<…ôĴ9<€ú÷>!P=?Ñ<­]‚UîúÖ;Éâ‡ĝüdâĤ?ѓ>à3˜W•÷ı;‚joOï\>ž>HK'ÂÀv]ÙùùñlÌ(Ĵ2ĈĞŻùó F ĴqhËNDûù‰D·XŽŭ˜žž“Ġz½î:ġW£ò–)Wàq¤ĞŞ#ípÙ&^}Z°ÙŬ=·vaĵ÷FlùûĤŝWV[ퟜñ2ˆ4vމŸ²·Ë çBż/g¨£XPġgŜ,ä'Núrx­] 9ᴙöİ,ŻÇn?ôwíò‡ğäÀhóĈ$ċ yGC˙ú'éì­`“?ôzŽ˜2ö/ E"ÑېnÂ&IòÙ*YM“µž·2£°ĝ!QlgƒżtxĊ´—’ùHġXV>Óˆ÷;0 ĵܔk@ZĝɄx\Àä>ÔÛĥú„Ş~ ˙k˙£1ŭ -€²‹Kp}‚)<šùá´ oӟ™˜Ó™Yĵä;ôyötħï)žÍP™Ÿ"vùv½*˙bW;.iIf]aò?27ŭ™60!7áŭüBǁWQtï“YKKß?Zĉ—::¸Ó#ĠcÂx*#ïI…Ò%„%‰b.´îן­×v˘Ŝô³Ï°ĥ]Mġœ œ‚ħ¤ŸaÏ3|éòl:TĤ—‚ïÂcĝĝħlwL³~^;ï­Üû Uµ­ŝ½½)nkUËÏÜ*ŝ zŬí„oü0ô@öx4q(}wġBgšMĵó˘SâuK×?nz\zËï6!Ÿ~5q”Ĥ6„ußÎt|˜T·âqÀgÚ·ÑSÜ%„%‰âôŭ„Óġô³µ܊NĊŠ×2Y­Üs˘1µÂÒ|š­Ñp¤¸HĈÁĞ6ä ˘,G†û"vὊZ7ĉé§{´vUÚ%ŭÉÌĝ z Ç2ìñZžf‹ìê)Ö&éÊ˘`óxŭV=ŒÙîĈŸ¸ëĴ̇Μ'Á}5gzċFZ¸‘-Š€cÒf²œğH$Š—İU1Ŝ´žòhÙSĜBpş\ruÉ~Är‰›.(žç p yl ôžgĜ[‰?ÛĠ•°6BìÌÜa4’ĞŽŸ÷vwuifĤêZœY耄ùYzĈü,Ġ눸Ÿà!ĥeŜùóĴZ<ĞžïG€Ĥ˘³[„'4sCX3³ĝ¤6 f#-cÒôÀ0ë‚HK$Ċ‰\×@Ûxµœ.ÍŻ¸bŞĊ ë⷗ñĴÈ H'~o×ĥhu{Ü IDATÙÍ vħĠ'ĦC”靤Âé[‚ ÀÌ9ŸÔìcÛÀ›Üwġşğ!MÍĴzŸ×>ËdB azê;žÑq@Ĵ)úêĞ…Ë›ċ‹Ïv½ p'ü+Z E÷Çk"!,‘H4\8Šj­G· ĞaµZšéz úû t3l+ŽWàcèw€ŞqÏHUùd@şéŜ™Ùş6ġ (˙#mâħŸÍĴ Ŝç]\Ô]ƒ=§ëÛçgİ•wwÍF¸0kġÙLwÇïħûHŸvžâÀwL@=·wİÒğ„|ġUĉĤżË3ça0Íŭ@ğCü,ĠƒŻ¨‡^oH"!,‘H%ŞTaÂßjeGîr]ğĈÁO+Ûĝ_RÇ:Î0\:oŒám Ÿ}˜­GÎÇ:íÈı#€Íw\2e˙#Ğċ­ÀêöWçĵ£Ĵ|JkÎyZwJO]LyŭĞ™ë‹@àjúàÍô´Á3Ÿèŭ‰ë}¤fr% ˜ġ¸{fNTàhĥ†'݈2‘P$½q/ĝT‡Ÿè`ͧpŬÁ5÷†S§ĵ‹;ĥNÏg‹=m?Ĥf ”:?ÒNü}ğëŽċċod>Rü°4mäÏL'JÊĉ ċÁP33‡PS³›òäAœï:K*:ö#%_(̟Ûı‹Ú]°ö‹ÄŠ÷h‚›I‡ĵŭÇ9öċœicŝCë6ħËÁŭü‰D˘[Ĵ—Ö[€L°Z‘Fĝ˙wpÒKéZœŝĥ4ö#Ž·$;u'’tçĦM½ŽkÑà'­²6ŜĴ6•îÒ8¨s×Àx½tš6¤}Üvö79$ĥ'‚=1ÀŸ›sÍÚ%ğfú şCĥ[ċ+2ˆŜġ—„„'ƒŬĜMÍB]lŠ$„%‰â¤ĞUOCĉ*èQœžSÀUç ‡1­W~¤*šçnµġ>0€Ġ‘G`ĵnjG£ğÎyĉD W‘ïÀ„šüPûxâŝ\|ñl×í"Zz !şUAҕ?ıš§îšY‚Ŭn9œY~²›jçG/br^ċɖàp3;ŠkìçO$Ŭb‘ ħœbC˙tÊ;—Ż µ:Ġ3 á땳‘ß ˆéÔ¸ q<ö|ĴaÖ ñÊg€ö~G^ĉ]/°vÄsƒż™§4œ•Ĥ°îµcİöĤé2Í҆ôwġò‡ż‹ûĥ„g3Ö¤ÏÛΚ0 £aĵ´@Ï˙ˆœÇOô Xf.sŝ< Xñ4Jl633Ô%„%‰âD!¨µ[´Z­NıƒÚÉÜíL+’èq´ĤġĴCXqsoÊŝ‡ÇSúì9ƒżˆßĠÓĜgÚ%˘ıˆÂ‰DQÒ5ö)u1ŸšÏÔì(µ²á)l>Żġ6éSĞyÚCû+hpڙŸı³ŭfNŬO;caè݉çŞ^wBŽ"ŜÒıÎzò!žtRŬavÄ£~³2ÏĦ.‡§Ë˜ÙĊMћ[IK$Ċ‰];}ô´Ü½Û_ĴhâÎöàZġr|>[LïOïCW…úž˘ÇÀóHşò÷SŜÄ.KŜġ~dëĴÇ­Ĵ´İN \Ñ ~Âë•Ĝnpk?0‚ev(1†¨”^Ċ×3@<Në“]’;ŞXBX"‘(N/uZW·¸ñŸ[ŽğƒĴhFübÍ]Ü+w-Ĵ‘ùìŞäħ§GKMaêù:íÊÛŭ@ĵ>ĉ šfíüŒ‚Cz&1²€SœRëuÜÏŬŬ¨ìî"gv}ĝ=í~”ÏBÌ.d˘‡\éĈhŬví9IK$ĊÊ´Ò§KŞ$ĵ-mWÔħ‚Í”èŻĞÓÓSûĉQy êĜžĝUڝ׈îv`?„–a҉OyÍÛ3Ӈ1KíÇNWÔ˙QÇóżRkb–×:Ó³ÇÍjôÙémĜuKoÑ~N=,çğĈÁJ%„%‰bĊ.ïqħšêîÙµ9ž:?-×ÎŻ óòCཝt§YOžvLSğ­_ŠÎÏŝèÂÓäĵŬ]ǰÖŬÏŞ!};”×é27›{èèÚš˘ĴÌÏhşĦ™b /ĤÏ;?§0––H$Š×ßĤ÷Ô]ÑìmĜLğ)–öô>S˙Ê;ĈcŻ=Wú3œKÂŝĈ‹:3Ó‘ş›q€²4ĊJż‰·ö‡·Ž2d× ê"żÈx ~ú=ÒMÂ[Ĵëĝ×ٙ×Á.!,‘H'Î`³>ĴÀ§¸£uè%uIK÷皟:Gcòڀ฽yĊeFaáÄs\HE‡şX9s+Ġ]àĜÌßĊä[ù]Ŭü'gğ¸:°ö;(…˳yġ>šŝÎ<ĴëKĞ'šHôúôçĈVJK$ĊÉôbsDœSEwgµĵsĉġİïSÛ?ÎO÷{ùAÚûÄg‹éž\AÀiÍéÎ*ëÄó<½¤ïù=gÂ^–ŜĈóbXŠW¤^‰d7ĠSéûŜ”ĉê‡Ó版İ |vĞgÂǑ3 —çHK$Eè%WŬŞ‚­OyS·:uĉâŬp°uÔ=UN$•§™uyċìܳq޽Ĵ#ŻCÄCìTo4…~ѝ6–^çĦV´[ O<ÛĠĵ†½;08ı†7c·x(4fğ¸8=ÛĊ uK{ ‰Dšr~ŠM[iÄżƒµËWşÑĵ¤¨ğŜŽœAT·œß3  8Zey^ …ÖĞ⠟"bĝİê w–í<ğ/³ŒŠÎeĤÙcŻL=OëeħJ! ĥKŭòüŜîÜó@ˆD˘áÒ!$Ĵ–zCĴ1Ħ5ż‚–ĵŞŠĦż„Ftì„1/|ê óħT_yŜJ/~Ğ}ùYşFÒʳba“4É6rġüù™563k’ô|³Ŭ3m“¸DBX"‘(Nş ‚"ëÔğНVëİiŻ(̤ŞA^ÊEuËùÔó<ÒĴŻw4Ô#gM˙ÌcWŸ ¤ßĠžÁÄ,4ÂcrÍÊU{kXe¸‘'烝=(‹ğàwiÇ]3I^v$‰Dħš–‘šĦfâ7Sî£XŻġ< SUu+y6E ñŭxêçŞflFhÖ¸1 -ĵ™sț—“3µ1J³†ôSëûyèQĊzKîqbX‰DqÒ½Ĝċ \R´ŝÜIù‹à!G8"ëÉÛĊÍ"Şòa‡“Ó7úmágĈ~ÀzÀhAìŒÀ™Y¤!}ÓĠĦO ´¤ /鋰fĤ]BX"‘(BĤŝ5uÓŞÍ•?×ôĝ•7‰şR´< vİôvxOÁ|@Wʲ·ŽƒuD¸ŻB/*ïmiUágžìAŭ×ğRÑĤñ¸.L–s‰Dñâê“ëN\êïtíŒo2]MıBUƒĞV}”ĵ6Ŝvħ¸/I >M֕w?À]÷2dóÑț΍À!IK$ĊɝÈ×KT½f²$’=šK²Ç3Ĉ³4íÉ×j:u—§ïχôĠW_-2 a‰D˘ ­?§şŝúèùlQӏċ;|TW>Ĵ,“–H$ŠÖB_Sá³:ĊòŽbùÚÏ"‰†ëe\ŭùRĝÛ͏ŭü‰D˘_˜n”ŝüç?´ĵH$‰:hĝR•/VÀßuĝêÎ_šŻË—;Ï/ŸïĈ óÊéĝËÎÎ_¸/äۓ:Ŝtš_QüJ{ċ˙k=p?”y ĉûïñ›rB´Ż÷v“E"‘è'jÁݐĵrCŝò—ĝÚyA¤‡Žr a9=èWhOv°äiù˙™CXÏÀ yöTwy˜!XúŝO‰D˘XÙ 8]¸p¤;˙Ò΋——/ŒäĦëLĈ•?Ĝ–ĦĠÄc'ú÷Ϟ>Žgß_QÏô(ò' a‰D"Q„T Ŝ4ŜÓtħèg@h>Àx`‡z†ò5< ‚Öİv@šxìız 1,ˆWİ˙•Ċ¸‚×ÓĞïıä}ßn‘H$úEIWÀéBUÀ‹ŝH_‚X—/.ġ ĴZŜ ·şrÏíǎ3(Ğ–Ç^sì>ÇŝŽgßë8ö˙T&ŠD"QŒ°˙܀ïm@ñ;;/v^˜1ĵġÀ€\é^§’Nt‘H$Š”;ĜéÇC˙ùŽî˙hâMç‡ç'ĵÂ.çOó@·âYèz.ȟˆD"Q„ŜżrùâĊ‹NéWìòÎCçĝS£òŒşËaB:Z’+퍘‰ ï‹D"Ñ/VkS˙ú×C<žü ċ}ĵè’7‹œÈ?5ò8qF_=i„Öı˘ĦX²”‰H$Ċhm×"TġŻŞû{ ½ĝËï.ğĤ_>Uë‡Ĝġy›xž2HóÑóquEn‰‘H$Š”ûkÔ¤˙W.oäöàRĵOġ÷R8Ğñü!~Ĉâêê{Ç~€k*^ĜŜ÷z£E"‘èµ­żŬ ¸÷Lôĵg?ÖUûaCÜĦ°À~ĵòOûİ3¤.}t5ôÀ]ğ„ ö~`Kì‡H$EİïëôáÛ<^Êä =ġc?Ĝ q§pÔ ŠVĦħ0.ُëkr@ÈD"Ñ`ĠyJ}=^|›˘„ç‹™|çÎąLà7W-çO]ĵŭÇ÷×ր\?{ş–Qĵ"‘HĦ?×Ğ“ƒià˙ügrÈÑÑ} `>`u“+´ ôĠĠġ­àކÊXk²à…ŒzïE"‘èVĞħïàDñi៖gŒ6eXW-üĠö¤“²3 ·l?Ċ~ˆD"ÑpĊF¤•oġ@{úŬÓ+ġ½§´/Ê˘¨V3ġòAq+[½žûġÓí–í‡Ò¸7_$‰n³nnn°Ç`˜éżşŝîúş'ώóOU…Ï£²^½âQX<ıl<^]­^ŻÀ~\_o·b@D"‘(JᚷĞù3ŻÛü?ġâMìÊèhBŭĜÈ_™­kż7>ÇÖH ˆH$Ċ(΀tĉ_}uwĊ€´óÊv ŭ¸fĤ„¸¨Fŝ)ÍD÷ƒy4 ×ڀŒ}÷E"‘èë=y TuƒyÇCôJ›WŻÚ X}u}}s³ŬŜÜ yŭħ "‘H4\ßí„ì ġ*t@şñŻĜĵzċ:…>üS4ĥŝoL˙ ·3d ö~ĵş"‰DoE ĝÏ]ç˘wäİÒŻïj @=Ïö À+êSoHÌN'|…öx[8†%D$‰bÔ­Ż· ÀаĦSèk,Uŭ?mL˙êéSšI¨(πˆŭ‰D˘·ĦpÜħ¤˙ê~êîÔŻô\ŒKCyëù§d@p óz…°d&ĦH$ V· ĵŜ~tÍÙîH Ĥ;D~A´ğ¤‡½ÊOÄÛ ŝ†=ˆĉ˙ŝ÷ üġƒüŭA.r=„ïğ|ĝ; ˙ÚkïCAğ뵋ż6ìrĤĵQümFQ}Uï}|‚ hÉĵ‹żmŜ8ŝNÀż´÷ñ!‚ Ŭġ:ˆżGöÎ/żü²aüuÄWċğĝŜLJ ‚v]Áïż:˙ş½Aí.ŽÀ6ìŝr´müu{’?˙Ëöŝħ5?ô ‚ Ä{Š[íż2˙ş£˙ ü‚ èĞ*ˆÀżl]ñĠĝ!|ïCAğÈ]ÁûĵeüŭŞ|2]AíVŜ*ŝ†D‡oî>?Œ{ŝġŽÇ‡ ‚vÑëàûñƒŭĝŜ~ĵĵ·î£á‡Ó:z?~—CAAô5Ġż‚ß=˙xÍÏŜ=hŽż+żŭñ!‚ ‚ úšê^‘·ŻÚżßòú˙uçú_ŝO_üĝAŽÊâ,‹c{Ŝo?7ß*gS˙ŭADŠÉ 2ù$_h,"kгàĈ?/&Mŭ÷CAI­b4ëÈÔ1z?9 @Ş$çĝŝ˜%Ŝö‡À&†ŬE† ‚ è`ĊıĊ÷Ħĵµbä•kvŒġE¤È5ġßAM$ñÀ@Ŝy4Ì yċíƒK[h˘CŞÄ?T|xäyġŞñ–İ˙~‚ h"Ċl Ïf?½ĵ ¤el Ż^Oŭ÷CA‰3ë­ „ äCß>ZĤ"{§ŝû!‚ ‰d=€üµz ä Ż>|h9EĤµĞWŝ†GĝNŭ÷CAÉZċòê÷ߛ†ıOA^Ŭßß7t4Ñ!‚Vd ßòğÈÛWĦ„=@2AÁ*“QX˙Aʲ÷ïWû Ÿxġ—6ˆ†…AÁÊş€úÇ˙hŭŭ+Ğq‘WAAtà˘&şĝÇ˙·ġ÷''ÙÛ·ż˙ċ/ÖAëèÍEċ#S˙ŭAD"ù˙xb ä½úG–ŭnġ—–}ÎñŞ5At¨˘ÔâÇ'OžüHî!ŝÁ2b \ğzä$S˙ŭADb°˘ŝqİîùsÀE‚şÖÔ?A4‘Ô@´~ċŭ;ëĵ+×™úï‡ ‚&³“À!œ ĉ nn:z AĞxÄ?Ĝ@†Í§ 12‚ •& 'ıÏŝÜĞ`aAáJ ¤ëV£x{šúï‡ ‚&RĤbġ?víá~,A‚ è%F ŝÑ8ÈŞî2‚ H3ĞU#>1ÒÁ–ĥA+żĠǰƒĴÎDD‡ :\ĊħRġch!}´AÁ*´ƒ5eĴ V†AĦŞm }ıĵë AĦ*noôᒌ‚ ‚V+ql¨’5`+S˙ŭADÊşÒ4Ó3 /”° ‚WC@%Ĵ‘fzÏNĤŝû!‚ ‰w0 Ï=Ŝ…@ĥVùÇ` ëžÜ­JXA‡Ğ¸™IÈX ‹’ûûû·È@ ‚]%Ĵlĵ~ĠöAĦjÄ&:EĞÀ?|ŭ*ZXA‡Ĵl8ĵKŜñŝŭ{g È@ ‚V½ŝÇ:ñŝé>@ކ[ éHèX‚ 耧 c%,ö&@Ĵ6Ğ[…âü#C‚ è5ÒDÏGhótŸÀ@ ‚V[–°H­9"S˙ŭADêOC'û¸÷Ó=Ŝ½§İƒ­ÙƒÎAb́ :\ùf†—xÇ%İùŝ>œ?Ĝ(Ĉ–ĥA‡ŞĦÖe ³D‡ :\ ,(|ÛL=ïkêż‚ šHÎġÈZS{,”° ‚V}[ĜĜ?°” A!+vM84ŒĈ@:vÒ6ÌD‡ :\9ëhêX-˙èL=ïÚJXAĞĦŭON~ûS‚@Ĵ††ñvĥ³ŬŬK™@°bÙ½#=釔°` A+Y1βU’Éwínğ,Â8ġßAM$i…÷ ÄyĈ°ôéh˘C°¸z{G² ŸqÄn蕔Żb́ :`µ $t ×éäqĴ„ŝúï‡ ‚&’:‚$Î9žş$&ħ¨ùİ{ÊÔ?A4‘ĵ7ÒıĥGâÌ;‡3IXbĴĈ AtÀR#ˆŭ¸*mu ŒşÊÂñîÑİ˙~‚ h"Ġ²pzzêÓğ§öħì”~’ñF4Ä·~×)3§üExûEıŬxûÏdf÷·ĝ,Ğé“>Hîż üı‚ϲéùá“vwNמ˙Ôï?‚ħûâHĉ ÄŜáĝbR*9à×Èŝj÷vâ­ۗ˙ӟ7?ÓLż×á#CüÔï?‚ħĈb”·Ó4 Äk'ħÀûíoyŝO;EpÏgSóŬĜ^ĵpĈñ‚ÒSêĉ§â&ŝü§~˙Aôˆ5£2µ ë ’„„bs޳lÀ3Î@v7LżR%ĉ!ĝmx‡ßÚš_ŭ삳²LyÎê÷AXe²SşlÍ^ĜHó"UM‹[ Mb|÷‚ĝŻħKj慄–à³úÇ<=™ôûiöĵßûÙÔ|˙ü­?p ’mtŝSż˙ zÄza#„—SŠAöŸ^Ü{ċ>Ĵ7MDĜA¨WkÌ8/ż˘>ċŽÉiKÄoĜ‰×gP!r>ûvyk$œ˙Ôï?‚ħ¤A~ꕽp—¨Ú1F“÷C鈍üF2ˆSúá8˙–ĴÇÒAS§.÷ڞ?=ŭŬ]Bïtü6˙â‘ó#çoèo”§şòSż˙ zÄ:=ŭUĊŞš/d];ċ>Èi­9Cm2Wĵ2j ġöɆK[´x%îÂÛ )”àŜü‹GΞżŽÎçí™Sż˙ zÄráÇ]§ÚóÂ_ŸşF:!šu`œu¸ [³9ïĤm˜=ùÚa¨ ĵ7˙â‘óƒço˙ĞÖY– ?ġû‚ G,½z5Ĉ×:N_ĝFëu3ŭƒÈW*n²5_‡´ošJŬ”}ùœ>2³’'!~ê÷AXrùڊíTIÏ\óáGLƒġÑkÀĥàŭŻÑ˜ĥÓñ%‚žf;żËżxäüÈù›Mùİß=bQíÜ]ğèÔ]ğ@φQgZÉêTĞ·Ċ7\¸“ d;žß  ûñ/9żêü³•|  h?ŭZC IDAT‡HËԉ=m˙ 3î™t“ĤĈd4 jcŜ£. Ñ dkĤKèkş?˙â‘ó+Î?[ÉÓìAò%t†8ù–ıèc4sÄˆÙš×'—Ä;| Íħq·3~ üéoS~ê÷AX:4”\žJ'·żö.ßZ‘‰„ğFŸFìt|6ìt×י–€ìŭœßġüé&B´—´Û?†Ża³ µĠÌO3;ñÁ³w;ĦF4ÄhG^~Dü‹GÎï{ŝSż˙ zÄŞë9İ •:Żı'U'Z—·%Ž\›ó]Ƀ{;ŸĞC|/{äüŽç_;|ê÷AX4ı*"m`2-ž×²}Qf¸~ejTüi‡w%”V°Û‹§GvâƒnÙŬùlj><˙Ҕ#|É|éù0‚ö—„Ÿı‹ÉGшVA2ħ‘ÔŠC]ÖĝÇ ß0ñ›0HWĊtgg^ïîĈ7²'Ÿ=NŝĊuÍż` í!€ĉĤ 2۝ÈÎîQ{˕,£K›ĴàOï˜1ÁmŬ1€-ùz/^0ñ_˙ïğ’‰NÍïvŝ/Ŭë7ġû‚ G,Ž>¤ı+”¸H#ŝqÍyF/8їT3^ h7ŝiğñÍÍnĵ3}xY—ŝĞ'sü²yŭíߛúŭA#]ûT7ħÖ(Ë%Ĵyˆ8ˆċŬr\BéòĈĊ ù“e]ŸĵJ³ĠñC^K@–?Ŝ‰·W÷§ĵÔŭWáoOĈùöù—ŝä òúOŭŝƒ èKŻ_ƒfjiz\{İ[á'£š/ LĵlF5ÌKò ² ˙7ñÛeÀ×zݽùñ[ĵˆ}~ĥ–żëó²ġĈ†üɞ|}r²‚_uŝ²Ĥâàë/R£„Aš˙ ıv­˙¸–ċŻL‚Ä@NSëi]ñ˘1 ˙t³˙·“ċ҆áċrİ!0ü%›żÍğ ĞÍŝ.ğëó§§ÏOŸ?çĝżŽżÍêŬù÷××'kĝUçÏÒ{ŭùŝ +>˙İß=bı XêÂú(sH· Ä·İŭ L—ovÔĉ}/×ÔÂ˙\×Ğxs²4Kşŝ^zžžùןYëy>~›ŝ”ĠüċïúüsֆüÉ>üÍ-ïáU[˙ċğŻ˙%‘——ײ˙ıŭËöëŻw§~˙Aôˆ50V–Ñş.àHüÉ\‰jYHvœ÷aŒùú‡ûŸÇyë=éÜ÷׿ÚOk~GG?Żç³ ŝúŸœpaHŽ˙û‡Ï#üÍŬ]ŸÜŜ S| ˙Çí>üû››ÚœĴI-ŝòš<ä2;½´62üúûóŸúŭA#VÛLÏ?ƒş è1<#ŬhÑ;ñ;äibóġ‡ÏŸïÇùk'Ëëzy½ÔöÉёˆ=(ÈžŽŻ×˙Íñç6S4ĉ˙>ÎßYQĥĽò6z_ŜŜnÀ˙qs{ğss]ŻûŻ–QrÉ˙Â׿,ƒó7֙a í£v Ä÷o}Öès[óh,zŽˆ@ÏÚñÛój Ĥv-£ĵM |ÑçOê›ċI}m]D ÄÔ˙Ġ2u<ßġšÏOîĠ@2áçƒüÍ͝ç)~ß*o·l ˙ǞüÚ·2á³SrËËŜë_6çOm•ċAšˆÚW-k׋Ŝı^ʆ£€”— h{ċŬQŬMS„ĝúóŭŭçŸÛ|íĝëċíÉòÖĉ·Ö@n—Äŭ-àe Dz kx:0ç­×ó[5:~>ÌßŬÜŜYŝc­ñÛó——÷·_…·îħ’Ÿw D͒›úRËËß>54Ñ!Ú]ŭ°e_€8óà€ĠċOÇ $à]!EK06€>ûıÍğz}D"NM̔oÔŭĴ5<ûġ:Ç÷Bü‡Qŝî–âżċ?jüöĵ ÷TÊ4²žoġ@xğÚ˲[ûÏúÇċċÑÍÍíÀù‹,‘@´ğÂyCâÊWRâz Š:ĵL_süɈç]=ËôÑñŭ3  üġġíòö†ê77·”0˙_?ŭ\Ó Ż%ĵŠ·öħT˙hßÈ­ğ‚?:ŝĵž§ĝò\B²ñ7›ž?îœ?çäôŻĥr9tŝ†ù%2‚v×HÒӕ·Óz|8ñBOi ÄóFíƒçq|úôìÙ }Dµ+k ·Ö@¤~Ċ<×°ìÈ8/ùÇñÏoíü‰üŭ?˙öÛZ^âwÛmy€³/ÊۄoŸ?7?jvŝ&ŝĉèfÙ=s h?‰ü6˙Íù‡ávue?݆ Ä& |ËOOÙ@>ŭ֝ ¤ŝ?Ŝµ ÄûQúô)䵸Èírymçµ5‡ŭÚÒJŝV2İŝñ„E?ËVò76Ŝ,ísï}Ĥ?˙óE§àŻşüĜùSBıÇòòrIuĴÎùÓ´AûIÇQŭö[ğ„ĊĝˆiD{ ´3şġO6~9>3}ùC{ >‚IDŬ§Ż;9b¸^Ŝ\6<Ç5•|ÍĵïÁ4´k #üċï?qü]6>˙óRJHËì ówwmŝŞË˙›7on~żĵı|óĉ¨˙¸ĵéž?Ŭƒ@´—Ô@ĉ€L˜HĵjˆáŸJ„3cówLüj^Ž ¤ĊËS˜˙›5kŽ˙×·—!˙ĉÍĊE]_8oÉ>jġöñéŝŭ ˙Ñò77÷Ÿnm§ ÚÒ\]™+ĉ˙óÏ< ê‹óŸûüU—8ûâXá˙Ŝ7ġÒŜÒ Ĵ ~ÍüùÛ;4Aî҉zK­ g äWŜC–R·2â ĵ)!ß·hsLK-öšè„ċyıĉßċċ–ù7·××Zxıìµż˜^ÁÓA}Òĉ dŒ˙ĝù³ċ?-o9~[ñhfâŸSż½× b˙î]Ĝ˙|÷éNùċ-WŻ:|÷ü/.Ĝ)n~˙ŭò͑µ‘ÉÑ%˙àŸżTЁ@´‡Ünż­+ÂáJ+Ypúat;3?ŝMjÊwFŬÚ ¤Àñ…š–Ż–ż~C³@X—}^ӗzœWıéŭ¸e #ĵ àŸ?ZŝŝžÒëÁé ϟÏ/uZĥ˙aŝŽyĥ/ŝéòŬó·Á"b-äè×_ı£TÑówìĤ~˙Aôˆċĉ’k =4+5+o ô„´v3ÑSšm×à;H Ç-ÒÔ. ió’$è(,~usŝÑᛠd/m蛁·JX#üÇ·?½½ıżYrüżıırĵ àË˓“ŻÇ‡˙U‡ożu#ÈíÍ ùŭ˙Jzo—’š¸óg)a í!o żZ£°Ñ ÄŠ6Dçë#”ˆ˜Osw˘YƒiH‡çı&:;{@›÷.²’¤Ċ· d”˙ĝùí[û”ûO?~ĵu ˙|ézÙjŝnOŝíÛğ%ùÇÇĉïżêíóżà*e 7—ìżrä’ $<d í-·˜Ġ|@ꎁPôĦöGʃyıD^Û:~e"D&éN‡—Ël?]àĤIÈJ>pß3ßúüçÏb Ÿ(ŝ¤ĤçŸûÄjŝîîn/ž ä{‰üŭWĵœ˙…=ş¤NúŻ<‹,DËW6]0‚v—›8÷—öÎ@]#]‘úTÁò bÑ<Š_žÏV—°ê:È ŒÌiñ>€ŝ„—$ióŜCĈùŽƒ´ĝö0Ŝ1ŝ³ĠÍċ͍ ˙·lŽĝJŝŬŬğ½ĝ Žß>Q‰ñ’îœ~Ĝ›ëÛËÚ tŝKG hwy™ËĠiͰÈ@–2Ž74Zc?'"lğàĉĝUâxŸ>°´y@ßHôw9H—ç§š|ÇAZ|c Ğxjc_^~¤EAì7Í8àç6€Ÿhb˙ÎÈ>< ä½ĵ½Ŭ†ż¨µBşá –·"%,÷ú݁  huJXê ġĠġÒĠŻÜjĵ·KwÌYˆä!ÔBy6ĈñKx1 ħ ÄtS/Ïş‘òUà !ï3U|ÇAZ|XÂ:–Üç) MKK}Ô ÀpŠŜÚçï>żÛ‡W­ċƒó·Ŝ!C­nèœßÜprCl ´ž{`à0‚öÒ\Äh ^ŻRŬŒF´•ÔPÒZĈbñ·s‰`Ï<ϰ ÄñüÌZÖċĝaC`éï dĝ=^$8Ĵ…u/`9‚ó/uqÂĝ^ž¸•HĤĉğçÏÂüÍRR/j€,-A öRϟĥw@´ŸLSÁ Ĝ€HzÁ*5zż™o2ûA3A¤„ÒRÀK” ê>/´‡/ë?~` [ÍßO"³ —ĵ#ÓĊ*^Bĝ,&'ßß=m˘“cÈy³÷,í?n˘—ÊûÖ§~˙Aôˆ5Ÿ7%, ^ôuٗğĝ'M(à³l ŻÒôe›ûċœÜ/²Ï܍ „yĊµš_ÖuŸÏĤĉÛçádżΟ˙7ʲ„@´ğZMôV}|(~ıËs)díÄğ0ı/9HË@êz;Ŝ˙ŭ˙ç“èħ-ĝZ.îI§ŽÏ)ŝ‚RzÌAôüKŝġî8Sż˙ zÄòÈW–jiR,ğUĴ^UĞÀğ|WAí*H$ÌFĵĴÛ´ ŝ~ĥÙĉĝrBú ŝÏI3Šiôü‡"¸ò§'§VßÁĞ%ʊWb$n^Hpŝ%;?}úŭA#–ÌDŸÏğA× Gá qßnʛàĥùE›ñ.‚EĴ­_üżßj ¨Î6äċĝ5Oµ`èrìóçzG“µèïmż 0‚v×|(€Ċ1ǚ˜öâpìjġuœÊ(Ş~4›ÛÚċĈ×úċñ yŸƒ˜NdŬüĝ!˙ï.1^#¸ ÎòÈJúz|ûü9ı ç°‹]>щrîë7ġû‚ G,½‚uÁÊÈżšDl„˘YtLL?Žé+­h2Â7a0àö=L` ›òƒ´˘·9~Ŭߟ8Ŝmx­"q£Ħîfß_2ï=ƒ;ê—òóş÷úMŭŝƒ è+ìàúÈbS#ÁĴvq­‰Ĝħú‹ƒ|ç:·ıo‚&żcŜoÉêyŬîĝŽżµx&vĥ9Ϝ·ü„żÍĤĉÎ˙Bĝ é‡Ôâ+,o ĵ!!f˘C´ŸĉÁĴ°”`ȕkp­òüiŸ!eAŜùàÑ/aè(Ĵ]xŭëvÉ@nٌ—"’ü ™…á `:>8ŭ% ÑâËàüɎa í'šG0Ÿ›Ú&g ôĠ•°âŜÏc~²ŭAŸR‡7Î@dÈ.ĵü3;߈Dàù%…ċ/]|b~ċù_tĝĉüÉ;ĝü§~˙AôˆE Ĥb´4%ÍskaD³ÚîT#H›"ĜŬŬżŝġŻŜ͵{Šğà? £-ŜĠx†Žż[ŸÜJÍv;>oµŝ-áùëk2Â×áù@ Ú_>óMìc;5AÛ Š5FèÛT „ƒcW2#ˆŜ]‹ŝu½´ìúšn–Àœxğéò.èı!5À×>êîÈ×'$´ŻÀ·Ċs³£Ï_\=zĥçeRJXí#Š­c¸Fì.g]MĞĉĥşÚIjx/JL4EÑúˆĞ­ĵc];Yú¸t°m5ŝ]A_\„Ô_ğĜŽ<Í£sS+vâiV‰M )ŜŒd ׍Ó–b 0‚v—â”cÊ1âXc™D¤Xœ…ŬĊ°µWĜRPĥlëîšÂ˜żıs 3AWj€Żġ/ܕwß˙Ŝ`Ŭüry½ ^?ŭ Sż˙ zÄòWñÒ°Ċ,ġ +†ÁV"ôĜĊ¸faöLÎëġ{ÁË&rŭÛġoÁgídü—_hż­äM½Żò¨ywŝê+y_*Ŭë&:A{ˆCO-½IAÄ@b›c™^ë…rì*WMèrġ$ ƒË+İ™°\ŸüŜôĝş\ĴáûÇż‚_ĥx^Ŝdê÷AXuíjS1…$Y+ĉÎıĝ‰“iZkWu1ŝ[‰K.¤-GÔâëa~Œíóġ7Àg—/ùü§~˙Aôˆ!Ešä1/’È·4HWsíäóŽO#ĴÂwW›DÀUڎÏêŒdïdüùüùÒ²žÓŝĈŜĞŸküç?ġû‚ GĴĊĵ"]í*›D;óSż!šP l Z\Eò]m÷ŝÛĉ“$ıŠèßĜ‡s>³˙ŝ˜úŭ A„Z,tğˆv’½~L|UEĠ_öĝŜ'àÙ”Ïó|”Oĝ&‘‡­›$>ĝĈŝšĉ^ße|“ÉYšvùİßżM¨Ċ‚‹ óĊn!üêñUTD…•½ióe—/I‘ü3‘ÙŽ/€§y‘éóİU‡·žùREß[™22Ii-ƒx‰ú ĞmŜ@~Š~bċĴ‘wdêY*jñSż!šPs+ Àóù.üêêÛçéjĵâ]Ñè£Ş @Éü_–aşg£ıي/÷á ŽĉÉMžÛ'wùԘTx‰WWùÜFz:Z`!sşIû;<Ÿ¨}°ƒ8^˙èŸĵr2‘Ÿ|Bé‡ÈZ‡³o"È@ è U‰lüÚ)¸úöùŠ/ûéÊß° Ç o/ßíżçÜÁ>Ly@ÉɀaŜlĈ—ûÌÎç6°ŸÄçl$ ŸJâ˘ĝ•M?(ç°|ı ÷ÉĊ@ìCIn-Äñ }ˆ¤T‡"šyŭ; 3ĥµÀ> @!ĞòxCéêê1=nMe\oĝ’?^  |I‘_ Àòf_ÎËE´R>iĝ4­lÔž‚ŻM#†yÙ?ŒáŸ³ĜòL*Ż <™ˆ5ıf gd"ٛDyJ<ï IëK$ .˙eyô´¨íu¤Ğo›—öAQ6SıŽ·_M‹§èÛD9U˘ÄAVóôuA|Ù¨1ñ­Ż&0Èğ:çê¤ÔßˋN·,1Ö3ΘgóÈıb?k$CwrùĈóògüôSËAš„şÙ°…?ġû‚  UQ—ë‚·‹ßWß2?ׁLŝ+ŠßÎLȗ]^âeBYɓې,\û\y-;™*­Ží—‚ ¤àGúÏĜ†nş‰‚u•ÛcΝgäz'œS{“0o­C Dx9ĵR?…Â]?ËU°@ÔĠB4×BPµepġ óâŭİuMh{Ïڀ€ä_†ĵ èçdz ĝ’.Ä„§g1ž*Ÿ2Ï2Èûԅ|Ğ:Ï-LU,ásĉ%ĝۛXdħÈy>?ĥŜQ݃PŬ~wž” ó6!>ݸŒ§‰M$oġóĤÑǰ}¤ħĵŝSż!šPAüE<m"¸LeŝfùyTFÜ· ú“5€‚“Sĝ>FÈSö<ıI%U¨c3ۀg‘DÇaqÂIÈ,­èƒÚ(9•ŻŠ”<ĦϗçÒÉŝERQ2KsúŜç̗ÖCdĝîy钐’{ë&Żë³ÄÒ*†%|äĝ(˙ݝ£xs14í´íŻ‘×ê÷/AJ"XÄ!Ôġĥàß(?—ü£ˆLdƒoAŸ¤ ċ‹Pc<·<šD’U<§ ²Ċ‚Û'Rżbŝ²l’y*m!^fpXȏĞRšàüñRċV _ĉ~HÎ÷sċ‘žkû\żqâpċ[ƒx) !ˆt/H’uŭ#AA×0r ñLÛĈïo–—9}4 „Ò‡'4Şâ,˘ż,•/K_Qû˜™5ü‚ii”³4ĵÍ9rk•H‡—N¸f<·4j TĈšY˙ș ĥ!)O­—\[ÀÔÉ£ĉ‘Ë648~;ùI†H§ˆĊ­á§~˙B4Ħ‚¨×àĠ69ÀĠ7Ík$˘Œ‚Ri”Ċñ Ìç~DoÄEĴr^‰ èü?ë;UÁÄ È@LUô~e VE +˧}^şˆċÍË*—)…:$Kĝ8>Nıċx>Ĵĵċ†pÙgO`bü,7”7v£¨ˆo—°~’äŻk"ħòAAA-†£Ü…›SħiÂ-çúòbE“ñŞ3ê]WĊ?} ŞÏKÂÓ9¨`sÌkzüĴ— ꀔ‘N‹0.Ó Mj­àŒš•áomƒÇp-¸5§HYŠ{”œ„8^úèÜĈÖ Vı8ž{>WŜĥ_"J>,Żö'i+ÉÛ ˆĞ_ċQ <˜HȓJ@ä€]'ZGÄnÀ›+èo’'ˆ˘cPK­M ´ >Ès˙ZxŠ[½ĴĜ,_üıµ§$ ’‘X’ŠDOFzÊĵİlÁVÉé„ÒħıHìxJwg„u.Îcù$b>*¤‘³ï?ĦwDòÙJ>œ¨—nŬ#KŸ‚  ƒ–_ÌbáúóĊÓ1&ϋT2“osŝŒÈùYaZ<˙ 3À“0Ż“+™OhyžÖZĵ4@¨ŒFwyIŬRó4=KSò“œxYŠÄÌìWÇë䜛ïıT£˜Ïƒ’Ÿ1B<5Ñ9ƒx6Í@¤‘àò—ŒĊŠ˘$? WäġHÚ…ċğ Ê"k™Ïb„Ÿúŭ A„şjĊ7˜iÓÁ´Müü <ĊòÒXZž…g6ċ × iñ’‚ ò\˘/ĵ’UɈÎFù™ŭĝRxJAÈ@˜—!XU)†AÉÈ?eŻS˙‘[‘>Îy|îx^1ċ.ĵ6)l§İçàyÀËĵ}Ò"[ŝä„pŸI Ò²şòÖ?zMyáĦ·<0‰%‰\ÂîÁĴhĜ~Hdİëx~ê÷/D‚ÒCIDATAŞϳ!*šMħ˜/V˙áĝ=̏üŽmx{ŭ´|JWÑÊ d'Ôùì.ž·ĵ<.ŭŠŠò/Wg4”JÇäêŞê<ài=]^—§‚7ĵ£XéK#)HN|’s R&´ mù4}šÇıÂjó‰ß‡z/fĠyQ¸{ž4÷ӛQXıVħĈŝ§eE^×@oĝİßżM¨Ħ̓!*C%o1ŠjŒ-cmSĉiY~" }àxI-J×µ–É s?›ġ²İ.Ug+x)b-ĉ†ú ´à)ë Ùᖧ-ĜCÊ&ƒ   J^âĔébž ŸKŭ*ÑşŭHd)ÄĜ~ ù„yÚŝ–½£ŭ?&S#Y˙P €4q£°d ÖOĵH>ĥŽIùzÀOŭŝ… hB _ÁËHĤŠk@óhĜ˘‚5Âo— óóèì)·´#ÍʇâĊ%ÎJ]x×ñ³!6PRíÊĉg&š òOÜäġòe9Ż´ïnÜWë ³œù4â"–M)q|”F= Id*:÷ËĈ|Ŝ •‘ĵYçÍ<ÏOŭŝ… hB ^ÁÓ\Ŭ)⠁bM5‰ÚÄÏhÏSpgİt.Ħë}ĝ)$Î@¨UèBĵÏu+k Ŭ%0ċ­¤„&à瓁H1‹;!~& ò<=!‰41‘.:Éín{7?ċ˘ĵë ÜŝÈd1w_ÄrüÔï_‚&ÔXüċ…e)ôV:&v0‡ß_ˆ?Žd&E4¸’ÉŽĵ}èLö",eïžu.CëŠì\šϟEÍ~Pe^/]“E`;6P>M™ç$äİ|Ey /ıE†Ô³m2W¤mzŽçş‘‹ËËaqĈá^ş“ş $àóĤ„ ˆXˆîkkƒ $Íâf)ÇOŭŝ… hB­ŒÀşÉx5jk"ĝOßDĤäçkĝ"’ :xUā dGžëTşj;%6½ 9 ÷Ѥ³Ù0Ÿ·yû1+ÙrĜ‹|öòiÚĉİ NCwİ }tǓqpê‘Ĥb%iœÄ†zĜ=žš ş˙‡V­Ê¨ħ7Š7♠–OßN@¤ÂwlÖ!Âò釴`„Ÿúŭ A„˙Q¸Ëx5^Öd…Œĵ -Ú5ĵâç4KÜŻU>Ïr\¤ĊC¤ö¤Ŭ³RĞPsŸôĝ”x›X4ĵĴGâ'Ô'ž‡î*O%İŸ[žzè:\W‡oQŬCòRŭİ’µL’´ËÓbXĵÂa*ƒ ÏŒ"7+҉聁4HĞ‚;˘‹qĝ)èŜ?tĉ@Ħk…Dá%üÈ@ĴU2Ä˖ĵSìfŸTŽóÒóœ Âځ—ŝ‡ŝ+X@ä÷$lFRü,äÓ< x)aE‘i) ù´ËÛ ‚ĉ‚TÔ@OÙ?”9ïOh³|’‡‹ċ²€of˘75,Í^4ù &H"ÓP…A‡„,bRihĞ dq.kP9žşüj1M Òċm(§ĝo6áé2żÉ@ÄAväKË͚%³Ş<ݤßŝ’Vċ•¸ĝ€gžçnsŠ´ÍœÇtù´JĞYÚÖ<*ëĵÔ˘Ñ?ŞTÚ)d•Ö=JMREċĝˆ÷“˘ü#OeÇs–ä‰Û͖šèm~ iì#q,]Ğc È@ è µ*á$déeüb¨ 2–D²iiuŞésskŞaċĉ|8 K dG|iŭ£**ÚJ:Żb%ŻJ:ádVÒ^ïòiZYWhóÂTĈU°hñ]ž/’ÒÎR->OÙ@ ‰ŜԐ—uŻÚ|âx^Š=Nƒ‰'Èe6zžDDÖ{´£û|Ï<ìcÚAO¸{ž…S½DÈ@ è°µ*áPĵXÌÙ?,FëI•Áı”´üĊĈVâmĴĤİÜÑ@B툧›òÍLô‚Ö&a ٙ—­£h„TYδÏQÉÄ˒œÍ¸:5ÀÓڈ9e !/AËëĤO¸ĥu6éb!->g>/ó*7U.ħ\/âħOżgi˘<~APíÊÛGŠêÌŻšXQñÔȤӞhà)ĈžÑÀ6ošĊxu.m6HġOqûL:éŽO=OU)NÒĜòqĊí IÀÓ:ƒ2úġĵܘ§ûŜBvç‹OŞ„ç}Òı7Q³A^§TRĦê´ċSċÓJ6 yŠÛ̓Tì8ħs^g——àSêPï£â•L’¸Í'’)äIR xFÊ ˜°¸ˆçÛîŒáuë_5‹`ÉVVÚa~ê÷/Ajƒ ä) ĠÑç=YET–ÇÌSàĥI€ĦB‘½/×Bän„ ϖ`džr 2€jgäK'ݍq}l˜§q´6öñıçyVE Ž´Ï[ooÊÔ ù-KÊ<Œmâ¤H%·xÂkŬ£h§Ü£ÄĉwYŽ1Ê@d!M?tÂ+`5YHŒ ‚ Fd ,WĊêìN¸ÚAhVíX–OâöY‚ ÀžîFp¸ŬŒ/x_I-–/ËÂèÌĉÍ0/ğ=ċÖxG—ÏC>ċuLÈCL9-f•ÓRX†ŠY9ġÜ 2SĈ9íÑVSħ,ƒ(‹Ĉn5]ċ­{dVJ×ßm P‰Ĵ‚Ġâ£Ĉ>òÖôDvIR?7ĞñBÁkC˙ĊuYA²Ò?¸İ]È’â­½ÂR ıoñ4ƒü ‡gù,Š yşäçATEġàüĴ(çe a>.÷0¨€Ġċów.cŭc€ÏĜ’6İhjIEË·—s ׌ċT|¤Ëkŭ*÷“>Ä5ZM‘€÷˙ŬY„ĵŽğä: ¤½’;2‚X›f 2³{Ħâ=d•ƒÈ•¸u†ılAN³ĊiĴÔ?]=§ÇÇe0/ˆ,°Ğ+cuyJȠѸl”‰Xà=žĉ€ü“ƒr‘vĝĵ ĵqAk*/ŭŞ_•qIùC•¸RAŸ×ĵĉ+#­ô÷˙íö‡/_ñĵÚEoM èh‹ $XĦ°)c­Ì@ ÓÊc^yîD$Ó5(>w3’\¸ÛöB˙¸Ĝ—ÒS!5¨â_|ù²ÔnF%𲈟ù ÀFo›ÈtŽÊ~Ż|ışÚ.ĝíòÜIÏi.şċm’wÛĜô­ô@„×ŝ†+]YŬħW-ù˙k†F~üU0+ig m~ê÷/Ajó $\v³ ÄĈÈ9µĉĵ`İŭ+1”PâXc8·Ğ7áyXT!ŭaùÙlfù—lö–6qŝòġiöœĉvä”9PŠçÒŜç§§êU²u­d!–ûHe]Q—Ϗsš%È3B„ORĉiáÍ?R‰ŭ“$à›îFҙ Ÿ$!Ÿ¸şÏ@üŝ…yä—o× VÚöd yméÎB"Ù_jµĝHMËàğ›%€µ ^VWşĜ3ÂS°ç+x^ɊݐŸ†×˘ée‹Ÿı<$à~Ċ<°L‘ Ż;œ—eZ^ˋ{¤ĵ2V‹ÏiDoU<ġ\c5-½›–i|ˆŬh,Í@¨òGĞñĤşYyĠjy04/d0n+ñ;Hї°ñ¤AŬ5҅Ÿúŭ A„ÚŜ@tm“( "Ñ5Ŭ•n/÷‡2ê›HÓğmƒ<=ÜĴ†(ċ£ê!ĝñt#ö1딀0?kx7 ’^2ħàÛ)ƒ0³”;…$Çş/H‘†\#„—u÷żGùİßżM¨m{ ­[ˤàœ"2OüĈFÍÎ@8šG²·Għš3;‰œŸġy]Ù=È@ŒNA·ñŒŞJmX¨%BÀ·ĥŭ}‘ĤƒĦmôŝ˙_N|gŻs ? ‹˙ ßAAA‡­/ê,ZOVËIUäwz-VónfĈ8OñżŜÍí Ĵújü,àsîœFWò)ßá!X=žj\G2 $MÛĵğ²'Û¨ŞXZqÂëñ&Ĥ“‚pXŻÜë§|2.ÓĴaóé½×ŸÚ÷ ½ ·"Lñ QÜSż!šP_6Qa¨Œx]*šÉ½ _ñGT ñ&*|twŬO”o4̋z°5ßû 0:d]E~Tö£˙èĠĈüÇĉüê›İù4”ßġco~ê÷/Aê ‚öÔï_‚ĤÓ˙Ż!ĉçpŻÌIENDB`‚lincity-1.13.1/opening/iso8859-1-8x8.fnt0000644000175000017500000000724207340322063014260 00000000000000˘ Public domain font(?)<˙”””œ¤Ĵ´ĵÄÌÔÜäìôü $,4<DLT\dlt|„Œ”œ¤Ĵ´ĵÄÌÔÜäìôü $,4<DLT\dlt|„Œ”œ¤Ĵ´ĵÄÌÔÜäìôü    $ , 4 < D L T \ d l t | „ Œ ” œ ¤ Ĵ ´ ĵ Ä Ì Ô Ü ä ì ô ü     $ , 4 < D L T \ d l t | „ Œ ” œ ¤ Ĵ ´ ĵ Ä Ì Ô Ü ä ì ô ü     $ , 4 < D L T \ d l t | „ Œ ” œ ¤ Ĵ ´ ĵ Ä Ì Ô Ü ä ì ô ü     $ , 4 < D L T \ d l t | „ Œ ” œ ¤ Ĵ ´ ĵ Ä Ì Ô Ü ä ì ô ü     $ , 4 < D L T \ d l t | „ Œ ” œ ¤ Ĵ ´ ĵ Ä Ì Ô Ü ä ì ô ü  $,4<DLT\dlt|„Œ~½™~~˙Û˙ç˙~lŝŝŝ|88|ŝ|88|8ŝŝ|8|8|ŝ|8|<<˙˙çç˙˙ŝ><~~<ffffffÛÛ{>c8ll8Ìx~~~<~~<˙<~~< ŝ 0`ŝ`0ÀÀÀŝ$f˙f$<~˙˙˙˙~<0xx000lllllŝlŝll0|Àx ĝ0ĈÌ0fĈ8l8vÜÌv``À0```0`00`f<˙ÌÌÌüÌÌÌx00000x ÌÌxĉflxlfĉ```bfŝĈîŝŝÖĈĈĈĉöŜÎĈĈ8lĈĈĈl8üff|``xÌÌÌÜxüff|lfĉxÌàpÌxü´0000xÌÌÌÌÌÌüÌÌÌÌÌx0ĈĈĈÖŝîĈĈĈl88lĈÌÌÌx00xŝĈŒ2fŝx`````xÀ`0 xx8lĈ˙00x |Ìvà``|ffÜxÌÀÌx |ÌÌvxÌüÀx8l```vÌÌ| ĝà`lvffĉ0p000x ÌÌxà`flxlĉp00000xÌŝŝÖĈĝÌÌÌÌxÌÌÌxÜff|`vÌÌ| Üvf`|Àx ĝ0|004ÌÌÌÌvÌÌÌx0ĈÖŝŝlĈl8lĈÌÌÌ| ĝü˜0dü00à00à0000àvÜ8lĈĈŝ<~˙~ŞUUŞŞUUŞDDDD|@@@8DD8@@@|8l8~DdLDDD(ĝĝ˙˙˙ĝ˙˙ 0` ~0 0~>66l~~@0000~000xx0|ÀÀ|8```ü0ÌÌÌÌvÀ~ÊÊ~ 0Ìf3fÌ`àfl3g`àfl6j –l3g00`ÀÌx 0xÌüÌ`À0xÌüÌx„0xÌüÌf˜0xÌüÌÌ0xÌüÌ0H0xÌüÌ>x˜œĝ˜žŝ><~~<ffffffÛÛ{>c8ll8Ìx~~~<~~<˙<~~< ŝ 0`ŝ`0ÀÀÀŝ$f˙f$<~˙˙˙˙~<0xx000lllllŝlŝll0|Àx ĝ0ĈÌ0fĈ8l8vÜÌv``À0```0`00`f<˙ÌÌÌüÌÌÌx00000x ÌÌxĉflxlfĉ```bfŝĈîŝŝÖĈĈĈĉöŜÎĈĈ8lĈĈĈl8üff|``xÌÌÌÜxüff|lfĉxÌàpÌxü´0000xÌÌÌÌÌÌüÌÌÌÌÌx0ĈĈĈÖŝîĈĈĈl88lĈÌÌÌx00xŝĈŒ2fŝx`````xÀ`0 xx8lĈ˙00x |Ìvà``|ffÜxÌÀÌx |ÌÌvxÌüÀx8l```vÌÌ| ĝà`lvffĉ0p000x ÌÌxà`flxlĉp00000xÌŝŝÖĈĝÌÌÌÌxÌÌÌxÜff|`vÌÌ| Üvf`|Àx ĝ0|004ÌÌÌÌvÌÌÌx0ĈÖŝŝlĈl8lĈÌÌÌ| ĝü˜0dü00à00à0000àvÜ8lĈĈŝ<~˙~ŞUUŞŞUUŞDDDD|@@@8DD8@@@|8l8~DdLDDD(ĝĝ˙˙˙ĝ˙˙ 0` ~0 0~>66l~~@0000~000xx0|ÀÀ|8```ü0ÌÌÌÌvÀ~ÊÊ~ 0Ìf3fÌ`àfl3g`àfl6j –l3g00`ÀÌx 0xÌüÌ`À0xÌüÌx„0xÌüÌf˜0xÌüÌÌ0xÌüÌ0H0xÌüÌ>x˜œĝ˜ž€À€< 0 `€€Œj €€€î DDDDUŞUŞUŞUŞŬwŬwŬwŬw˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙°ˆP 0~~p ~~ ŝ0ŝ`~~ÀüüÀ<~~< ˙ 0pŝp0<~~<$f˙f$6fŝ`0À|nlll<66lŝlŝl0|Àx ĝ0ĈÌ0fĈ8l:~Ìv  000 0 0l8ŝ8l~ ŝ 0`À|ĈĈÖĈĈ|x~|ĈŒ8`Âŝ|Ĉ<Ĉ|€À€< 0 `€€Œj €€€î DDDDUŞUŞUŞUŞŬwŬwŬwŬw˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙°ˆP 0~~p ~~ ŝ0ŝ`~~ÀüüÀ<~~< ˙ 0pŝp0<~~<$f˙f$6fŝ`0À|nlll<66lŝlŝl0|Àx ĝ0ĈÌ0fĈ8l:~Ìv  000 0 0l8ŝ8l~ ŝ 0`À|ĈĈÖĈĈ|x~|ĈŒ8`Âŝ|Ĉ<Ĉ| /// location <-2, 4, -15> // direction <0, 0, 1.35> look_at <9,5,0> } #declare myJade = pigment {marble turbulence 1.8 color_map {[0.0, 0.8 color red 0.4 green 0.9 blue 0.4 color red 0.2 green 0.5 blue 0.2] [0.8, 1.001 color red 0.15 green 0.75 blue 0.15 color red 0.25 green 0.35 blue 0.15] } } light_source {<-100, 300, -200> color Gray80} light_source {<150, 50, -200> color LightGray} light_source {<2,1,25> color Gray60 } // light_source {<2,100,0> color Gray30 } // back board box { <0,0,0> <46,14,10> texture {Stone18} rotate <0,38.5,0> translate <7.5,14,35> } // this is the first sticking out bit, where the red writing goes box { <3,11.58,-0.2> <43,12.85,0> texture {Stone21} rotate <0,38.5,0> translate <7.5,14,35> } // the second one box { <3,8.3,-0.2> <43,10.3,0> texture {Stone21} rotate <0,38.5,0> translate <7.5,14,35> } // the bottom one box { <3,5.11,-0.2> <43,7.11,0> texture {Stone21} rotate <0,38.5,0> translate <7.5,14,35> } // plane { z, 1.1 texture {White} } plane { <0,1,0>, 0 texture {myJade ambient 0.3} scale 4 } //plane { <0,1,0>, 0.0 texture {Jade} } //plane { <0,1,0>, -0.05 texture {White} } plane { < 0, 1, 0 > 350 texture {Bright_Blue_Sky ambient 0.8 scale 350 } } //frame1 // L //bottom layer box { <0,0,0> <0.9,0.9,0.9> texture {LT} } //frame2 box { <0,0,1> <0.9,0.9,1.9> texture {LT} } //frame3 box { <1,0,0> <1.9,0.9,0.9> texture {LT} } //frame4 box { <1,0,1> <1.9,0.9,1.9> texture {LT} } //frame5 box { <2,0,0> <2.9,0.9,0.9> texture {LT} } //frame6 box { <2,0,1> <2.9,0.9,1.9> texture {LT} } //frame7 box { <3,0,0> <3.9,0.9,0.9> texture {LT} } //frame8 box { <3,0,1> <3.9,0.9,1.9> texture {LT} } //frame9 box { <4,0,0> <4.9,0.9,0.9> texture {LT} } //frame10 box { <4,0,1> <4.9,0.9,1.9> texture {LT} } //box { <5,0,0> <5.9,0.9,0.9> texture {LT} } //box { <5,0,1> <5.9,0.9,1.9> texture {LT} } // last 4 of next layer //frame11 box { <2,1,0> <2.9,1.9,0.9> texture {LT} } //frame12 box { <2,1,1> <2.9,1.9,1.9> texture {LT} } //frame13 box { <3,1,0> <3.9,1.9,0.9> texture {LT} } //frame14 box { <3,1,1> <3.9,1.9,1.9> texture {LT} } //frame15 box { <4,1,0> <4.9,1.9,0.9> texture {LT} } //frame16 box { <4,1,1> <4.9,1.9,1.9> texture {LT} } //box { <5,1,0> <5.9,1.9,0.9> texture {LT} } //box { <5,1,1> <5.9,1.9,1.9> texture {LT} } // upright //frame17 box { <0,1,0> <0.9,1.9,0.9> texture {LT} } //frame18 box { <0,1,1> <0.9,1.9,1.9> texture {LT} } //frame19 box { <0,2,0> <0.9,2.9,0.9> texture {LT} } //frame20 box { <0,2,1> <0.9,2.9,1.9> texture {LT} } //frame21 box { <0,3,0> <0.9,3.9,0.9> texture {LT} } //frame22 box { <0,3,1> <0.9,3.9,1.9> texture {LT} } //frame23 box { <0,4,0> <0.9,4.9,0.9> texture {LT} } //frame24 box { <0,4,1> <0.9,4.9,1.9> texture {LT} } //frame25 box { <0,5,0> <0.9,5.9,0.9> texture {LT} } //frame26 box { <0,5,1> <0.9,5.9,1.9> texture {LT} } //frame27 box { <0,6,0> <0.9,6.9,0.9> texture {LT} } //frame28 box { <0,6,1> <0.9,6.9,1.9> texture {LT} } //frame29 box { <1,1,0> <1.9,1.9,0.9> texture {LT} } //frame30 box { <1,1,1> <1.9,1.9,1.9> texture {LT} } //frame31 box { <1,2,0> <1.9,2.9,0.9> texture {LT} } //frame32 box { <1,2,1> <1.9,2.9,1.9> texture {LT} } //frame33 box { <1,3,0> <1.9,3.9,0.9> texture {LT} } //frame34 box { <1,3,1> <1.9,3.9,1.9> texture {LT} } //frame35 box { <1,4,0> <1.9,4.9,0.9> texture {LT} } //frame36 box { <1,4,1> <1.9,4.9,1.9> texture {LT} } //frame37 box { <1,5,0> <1.9,5.9,0.9> texture {LT} } //frame38 box { <1,5,1> <1.9,5.9,1.9> texture {LT} } //frame39 box { <1,6,0> <1.9,6.9,0.9> texture {LT} } //frame40 box { <1,6,1> <1.9,6.9,1.9> texture {LT} } // i //frame41 box { <6,0,0> <6.9,0.9,0.9> texture {LT} } //frame42 box { <6,0,1> <6.9,0.9,1.9> texture {LT} } //frame43 box { <7,0,0> <7.9,0.9,0.9> texture {LT} } //frame44 box { <7,0,1> <7.9,0.9,1.9> texture {LT} } //frame45 box { <6,1,0> <6.9,1.9,0.9> texture {LT} } //frame46 box { <6,1,1> <6.9,1.9,1.9> texture {LT} } //frame47 box { <7,1,0> <7.9,1.9,0.9> texture {LT} } //frame48 box { <7,1,1> <7.9,1.9,1.9> texture {LT} } //frame49 box { <6,2,0> <6.9,2.9,0.9> texture {LT} } //frame50 box { <6,2,1> <6.9,2.9,1.9> texture {LT} } //frame51 box { <7,2,0> <7.9,2.9,0.9> texture {LT} } //frame52 box { <7,2,1> <7.9,2.9,1.9> texture {LT} } //frame53 sphere { <7,4,1>, 0.9 texture {LT} } // n //frame54 box { <9,0,0> <9.9,0.9,0.9> texture {LT} } //frame55 box { <9,0,1> <9.9,0.9,1.9> texture {LT} } //frame56 box { <9,1,0> <9.9,1.9,0.9> texture {LT} } //frame57 box { <9,1,1> <9.9,1.9,1.9> texture {LT} } //frame58 box { <9.8,2,0> <10.7,2.9,0.9> texture {LT} } //frame59 box { <9.8,2,1> <10.7,2.9,1.9> texture {LT} } //frame60 box { <10.8,2,0> <11.7,2.9,0.9> texture {LT} } //frame61 box { <10.8,2,1> <11.7,2.9,1.9> texture {LT} } //frame62 box { <11.5,0,0> <12.4,0.9,0.9> texture {LT} } //frame63 box { <11.5,0,1> <12.4,0.9,1.9> texture {LT} } //frame64 box { <11.5,1,0> <12.4,1.9,0.9> texture {LT} } //frame65 box { <11.5,1,1> <12.4,1.9,1.9> texture {LT} } // C //bottom layer //frame66 box { <14,0,0> <14.9,0.9,0.9> texture {LT} } //frame67 box { <14,0,1> <14.9,0.9,1.9> texture {LT} } //frame68 box { <15,0,0> <15.9,0.9,0.9> texture {LT} } //frame69 box { <15,0,1> <15.9,0.9,1.9> texture {LT} } //frame70 box { <16,0,0> <16.9,0.9,0.9> texture {LT} } //frame71 box { <16,0,1> <16.9,0.9,1.9> texture {LT} } //frame72 box { <17,0,0> <17.9,0.9,0.9> texture {LT} } //frame73 box { <17,0,1> <17.9,0.9,1.9> texture {LT} } //frame74 box { <18,0,0> <18.9,0.9,0.9> texture {LT} } //frame75 box { <18,0,1> <18.9,0.9,1.9> texture {LT} } // last 6 of next layer //frame76 box { <16,1,0> <16.9,1.9,0.9> texture {LT} } //frame77 box { <16,1,1> <16.9,1.9,1.9> texture {LT} } //frame78 box { <17,1,0> <17.9,1.9,0.9> texture {LT} } //frame79 box { <17,1,1> <17.9,1.9,1.9> texture {LT} } //frame80 box { <18,1,0> <18.9,1.9,0.9> texture {LT} } //frame81 box { <18,1,1> <18.9,1.9,1.9> texture {LT} } // upright //frame82 box { <14,1,0> <14.9,1.9,0.9> texture {LT} } //frame83 box { <14,1,1> <14.9,1.9,1.9> texture {LT} } //frame84 box { <14,2,0> <14.9,2.9,0.9> texture {LT} } //frame85 box { <14,2,1> <14.9,2.9,1.9> texture {LT} } //frame86 box { <14,3,0> <14.9,3.9,0.9> texture {LT} } //frame87 box { <14,3,1> <14.9,3.9,1.9> texture {LT} } //frame88 box { <14,4,0> <14.9,4.9,0.9> texture {LT} } //frame89 box { <14,4,1> <14.9,4.9,1.9> texture {LT} } //frame90 box { <14,5,0> <14.9,5.9,0.9> texture {LT} } //frame91 box { <14,5,1> <14.9,5.9,1.9> texture {LT} } //frame92 box { <14,6,0> <14.9,6.9,0.9> texture {LT} } //frame93 box { <14,6,1> <14.9,6.9,1.9> texture {LT} } //frame94 box { <15,1,0> <15.9,1.9,0.9> texture {LT} } //frame95 box { <15,1,1> <15.9,1.9,1.9> texture {LT} } //frame96 box { <15,2,0> <15.9,2.9,0.9> texture {LT} } //frame97 box { <15,2,1> <15.9,2.9,1.9> texture {LT} } //frame98 box { <15,3,0> <15.9,3.9,0.9> texture {LT} } //frame99 box { <15,3,1> <15.9,3.9,1.9> texture {LT} } //frame100 box { <15,4,0> <15.9,4.9,0.9> texture {LT} } //frame101 box { <15,4,1> <15.9,4.9,1.9> texture {LT} } //frame102 box { <15,5,0> <15.9,5.9,0.9> texture {LT} } //frame103 box { <15,5,1> <15.9,5.9,1.9> texture {LT} } //frame104 box { <15,6,0> <15.9,6.9,0.9> texture {LT} } //frame105 box { <15,6,1> <15.9,6.9,1.9> texture {LT} } // overhang //frame106 box { <16,5,0> <16.9,5.9,0.9> texture {LT} } //frame107 box { <16,5,1> <16.9,5.9,1.9> texture {LT} } //frame108 box { <17,5,0> <17.9,5.9,0.9> texture {LT} } //frame109 box { <17,5,1> <17.9,5.9,1.9> texture {LT} } //frame110 box { <18,5,0> <18.9,5.9,0.9> texture {LT} } //frame111 box { <18,5,1> <18.9,5.9,1.9> texture {LT} } //frame112 box { <16,6,0> <16.9,6.9,0.9> texture {LT} } //frame113 box { <16,6,1> <16.9,6.9,1.9> texture {LT} } //frame114 box { <17,6,0> <17.9,6.9,0.9> texture {LT} } //frame115 box { <17,6,1> <17.9,6.9,1.9> texture {LT} } //frame116 box { <18,6,0> <18.9,6.9,0.9> texture {LT} } //frame117 box { <18,6,1> <18.9,6.9,1.9> texture {LT} } // i //frame118 box { <20,0,0> <20.9,0.9,0.9> texture {LT} } //frame119 box { <20,0,1> <20.9,0.9,1.9> texture {LT} } //frame120 box { <21,0,0> <21.9,0.9,0.9> texture {LT} } //frame121 box { <21,0,1> <21.9,0.9,1.9> texture {LT} } //frame122 box { <20,1,0> <20.9,1.9,0.9> texture {LT} } //frame123 box { <20,1,1> <20.9,1.9,1.9> texture {LT} } //frame124 box { <21,1,0> <21.9,1.9,0.9> texture {LT} } //frame125 box { <21,1,1> <21.9,1.9,1.9> texture {LT} } //frame126 box { <20,2,0> <20.9,2.9,0.9> texture {LT} } //frame127 box { <20,2,1> <20.9,2.9,1.9> texture {LT} } //frame128 box { <21,2,0> <21.9,2.9,0.9> texture {LT} } //frame129 box { <21,2,1> <21.9,2.9,1.9> texture {LT} } //frame130 sphere { <21,4,1>, 0.9 texture {LT} } // t // base //frame131 box { <24,0,0> <24.9,0.9,0.9> texture {LT} } //frame132 box { <24,0,1> <24.9,0.9,1.9> texture {LT} } //frame133 box { <25,0,0> <25.9,0.9,0.9> texture {LT} } //frame134 box { <25,0,1> <25.9,0.9,1.9> texture {LT} } //frame135 box { <26,0,0> <26.9,0.9,0.9> texture {LT} } //frame136 box { <26,0,1> <26.9,0.9,1.9> texture {LT} } // upright //frame137 box { <24,1,0> <24.9,1.9,0.9> texture {LT} } //frame138 box { <24,1,1> <24.9,1.9,1.9> texture {LT} } //frame139 box { <24,2,0> <24.9,2.9,0.9> texture {LT} } //frame140 box { <24,2,1> <24.9,2.9,1.9> texture {LT} } //frame141 box { <24,3,0> <24.9,3.9,0.9> texture {LT} } //frame142 box { <24,3,1> <24.9,3.9,1.9> texture {LT} } //frame143 box { <24,4,0> <24.9,4.9,0.9> texture {LT} } //frame144 box { <24,4,1> <24.9,4.9,1.9> texture {LT} } //frame145 box { <24,5,0> <24.9,5.9,0.9> texture {LT} } //frame146 box { <24,5,1> <24.9,5.9,1.9> texture {LT} } // bar //frame147 box { <23,3,0> <23.9,3.9,0.9> texture {LT} } //frame148 box { <23,3,1> <23.9,3.9,1.9> texture {LT} } //frame149 box { <25,3,0> <25.9,3.9,0.9> texture {LT} } //frame150 box { <25,3,1> <25.9,3.9,1.9> texture {LT} } //frame151 box { <26,3,0> <26.9,3.9,0.9> texture {LT} } //frame152 box { <26,3,1> <26.9,3.9,1.9> texture {LT} } // y //frame153 box { <28,0,0> <28.9,0.9,0.9> texture {LT} } //frame154 box { <28,0,1> <28.9,0.9,1.9> texture {LT} } //frame155 box { <28.5,1,0> <29.4,1.9,0.9> texture {LT} } //frame156 box { <28.5,1,1> <29.4,1.9,1.9> texture {LT} } //frame157 box { <29,2,0> <29.9,2.9,0.9> texture {LT} } //frame158 box { <29,2,1> <29.9,2.9,1.9> texture {LT} } //frame159 box { <29.5,3,0> <30.4,3.9,0.9> texture {LT} } //frame160 box { <29.5,3,1> <30.4,3.9,1.9> texture {LT} } //frame161 box { <30,4,0> <30.9,4.9,0.9> texture {LT} } //frame162 box { <30,4,1> <30.9,4.9,1.9> texture {LT} } //frame163 box { <30.5,5,0> <31.4,5.9,0.9> texture {LT} } //frame164 box { <30.5,5,1> <31.4,5.9,1.9> texture {LT} } //frame165 box { <28.5,3,0> <29.4,3.9,0.9> texture {LT} } //frame166 box { <28.5,3,1> <29.4,3.9,1.9> texture {LT} } //frame167 box { <28,4,0> <28.9,4.9,0.9> texture {LT} } //frame168 box { <28,4,1> <28.9,4.9,1.9> texture {LT} } //frame169 box { <27.5,5,0> <28.4,5.9,0.9> texture {LT} } //frame170 box { <27.5,5,1> <28.4,5.9,1.9> texture {LT} } //frame171 lincity-1.13.1/opening/open.tga.gz0000644000175000017500000032450407340322074013716 00000000000000‹ŬÂà6open.tgaԜïk×zÇÛDz~Ĵ´ZV:sÎg5–tœ³ÏÄiĉĝÈ[üڔ­6 0`7Şò"\C°Üè…úrÁI˙ƒ ü"mc‡ĤéÛ ŭqojÚL †[Ĥ½1´ßgd;ŽmIkGĥ”#íΞ™9çy>Ï÷yžÙĜúÏŭèúï˙ĈŜ½{÷ôì}{ßs…=Ċž½ŬŬ…ç Ŭ{û ={;ú:öuvwtat÷vşğz ½]]½==…žîŜŜŜŜBq¸£żGĊîçJ…çĵ½Ŝ罎ÊŜnŻ£s`_g_gı³Pêéíïë)w÷övòŽnѽ§\Ü7P|ÜżohpÏpi/Ĝ˽1Ĝ5Pì*v•K]Cƒ½ŭ½ÁÂà@ï×ÓÏş‡XĦä÷•޽ƒ~ç@—?Ĝ%ʽl° †ş}ÖÍE×ŝáQ-0ÖëW{+Q-ííÀ*ğ{†÷u²ÎnżğÇ/ôŠNÜżP)ôöy_ħżĜW,÷yEzS*ġ—Jċ’7_,÷—Êžç –y‰•úÙPİÒ?蔇‡ĵê@ıR.ñá~żZްR:è³2ĞVüò~á—ĝpeˆùŒù.8ĞV*Œ‰ ŻT+}<èµÁrX:Xòk%˙@6P+³ZÙĴŒ VĈĜxٗC~½\•ċŠbŝˆï+5^­VkĠê˜ïK߯W$ĞÖĞUY­Ö‡*ç‡+•—:Ž}µŽŜ‘ŜžñžŽ`h_0ÜĝĊ}Ċ‰ŝħŝŝ€ÔDıV)M”†G†*µêĝ˜ċCċr­V ~Xc#£l´ĉЎÔ*£#ĠħÑŭ#/TǤ}AÔôŝà ôƒŝRàûÁŭÁĝŝÚHmdd,<ŽŒŽ GÇFGFd­VÔGG'FGëcc#RŽŒ×ÇäÄè¸{AŽż 911Q?ĝÂAYWa8UĞİĠŽŽŽ9pàèÇġÁƒñÄđ‰ ĞÔìX4&ɃÑäd4YëġC‡&'_œÔĝqx*žšŠ6‡:r萝š:rĝ0ŝĜäĊ$yñ#4ì`ĵü²µö‹§3˙Ĉ—_Ŝ¸qëëÛ˙÷TĈíÛ_cÜşuĈ/Ŝ1ö|Ö­[_}ğŭ³>~·ġĝĉÛħù”§Äß‹AHŽxZŜ^ço× wŭNÈ}ÀŻŬ}·Oß·|m‰çSäï‡àş>-s \ço§7zwÜ£/篭}?&}[ùŒĝû0ĝDŜħ`{Bwà×Ĉĥ·ïâ÷,ĝû@¸žŽÀûm¸5wNïóÎĝ6ûĥ•~·Şä~όżŬÍà=ŝÚ›ÇĝŬÍż;½ÍğËûËż6wğ-=Hß³ċo÷2H È­ĥkñ‡Œ¸9€ğżûÜrOQûÈnϚżŬÉàòï‰ñÛ Àğĝíôż3réĦÓV;ŜÎÜû(›íğÂ\ŝ~ó·+ñğŜöCÏíïÑÛ1ŝvƒwž˙µƒß£éۜ?ê}wz‹|Óώż ̵£üíógÂ7ÚĊo#ú6p]ŝvSíww<ÛGß×ßiúÖÇÎù`½úŝĝm `ÎßNmp“ÑÛÒŭnbĦ&ïħ#>¸‡ßÖô=ÀßV‘}żŬXŭ]ÏkŜĥŸl‡ô=úò; Ŭ™;áq}ğŽż|46…o‹/Ç·‘ığ´|˘”ô“¤^Wvfq^ëĉO[NJÍ#)š×.•BkÛÒRi)™Žµ´Vj—hÓĴ×m ĠDz3ê˜<"}PY…ke‰=ŝŞ>,Nœùs;–޽ŭê‘İ—/Ÿ:v\ŭäĜ‰3SŝĞÍùk_ÍN({ÌÇÊ3ŻÙ—ċԉDzĝÎıĝqĝ1{gĜ֙İÄÚòÚkòĝċµKNżqùġKŸÎĴ]şx鯏ĥ.^ĝşxùƒK—ÖZkkg/-ŝêìŻ>½ÒZ›Y8ۚY³­‹/^üúÙµµµ‹ĝY›ÇoŒK×>¸rċÊKŻ_ÁÁ‹‹W.]ŝ`íâGïż˙ÚĈÛKKç~ŝŜù3ç–VŜü‹s+++gVÏ­.]8ñ³sï.ŭíÒÒ[N,ݵ´şôĉyÌX>ñŜÒÊ/V.ĵ³²r3Î/Ÿ[^>ŝ͕óĞ+ïĴĴŭŜ_-˙Ŭêù•w—WWß]^ĈĊVWWV–WV˙ì…ŸŸ_ŝdġL_ŭä…sИħzŝüòyü^^ŝŜµĵ|aé—üâ?|˙£ùÍ?ŭò_˙ó}ôëĞ_}~ġÊg_ŭ÷ĠĞŸ^ŭêĉo?û÷Ï{óÚµÏŻ]ğöÑĠŭì³ĞkŸŬ|4~!Ĝ>}ÛÊßŬZQNËĉٖu‰r6dzŜ*ݝo•‘ÔšKi3­Tì =×ÔÒĊ7ŽëÊg2•,H]$U]FJ’ĝSu—9=§…lŭtÑ9• a£™L@ĵt€X`jĤìÂÌQċԌĠssZrŽÓI#Ҁ^@ışJZaa}Ġ8#›£éb,’ë ż !“ʽaT½žâXŞ4MµÖXf)Ú>á833Îjé ŽM ‰H2ħ3¸8ÓÚ¤R{1"K)Q”vÚH9çh&6ˆIÒǵ-*Ó2°V;ë­rBpi› .S-˜pÓMÓrX–À{É`QĦLSĠI̤8W’q…2Íw ò­ÄܙÜÖqĝÀİ YÒp!]SkxÄi8DsŽ9dœIĊ’c[÷ۇoÛĝğ‹^>ŝĈêlњYx}ş™)áËiW—:–äZ)ü>í§Ê4ħ0²N\’—ŠyÂ×Č£‹V*Ĝ×`u>šÉ²ySÈÙ:lLAŒh ğ×]ËjÌS“N%‰nâĤ÷_‘uĈˆç€ġá1_C\'µáœî€áœë†gèrä †! lçfóÚÈt~Qs–Zò²Ab“ñ\Ĥ}î/$p³L …u—H7o)”bV2ċZŽ =k²ĴH”‰p1§ĈñĤnċA§°JÍE S|Ĝe´ fùuó$qLxÈ˘6Xpô…œ·Ğœ?(.ôšdÈħ&òÁ낋ħ€D’Ò§§ÒNêˆ% ‘6¸1hw.{£•C&-ۄŜ,.Ì#ˆ1¨T1t—y‚ځ ÚâD7›ÔWRjq2ÖGajÒŞ¨UTıë€s,‘qäUŠsôŒ…àj>?ƒ$‚““Éĵ(Ò!ÁiI1I@}ĜŸ³YEċ˙Ş ŝ‡½íżë÷Kߍü˄[&ïĴš´3­i¤2"ßĜ<@Ú¤ğ¨}ċL|è"<Ë}Á¸!‘ÓÒÀ)Z ˙i+ÙҚı7,"X2*] İ'U:·8Yó)Ä)?%Ğ&Ê@ĜÌ-‚^zE )3ĝOùà_ÛumC‚\”šÈʜM%ƒ8Q½>&´ĉÓƒéX…ċIa\÷ƒ~+]Ìca„× ˆXZJ\C. ŬˤĥfÙĴ.CŸĥÙÑ\‘,1Ñi!(ASÏÍĜi\&ȳ¤ [ĵÍfCİOCĤ4ââ1DŞÒ t“Àċ´OñZ.céR“Íğˆùˆ è´ Ü_“³ù\3Žh[~2ƒ@ ükf=òe)â‘„xáyè `Üı…Ċ:tXsToyËrZûş5İ{@‹-×sH.e‘ …Yé—i é….+êŒÎûè0ÓTQ:Ó3şr+zĥ‹‹¨óéôÌĦİ@Òż#Ĵ.ÏH@‰ÀĤñlŝt^ĥ Ô¸ dZ!cD2<b[Ħl˜Y\Äâوż'o[úopż˙h6b$—<&‚èZ2JIjŠdN-(R}ˍ@ݎüŠd5Ì juêS4Œ7ŠEÔ5q'‹ˆÊ²„ÚÁ皚PyT²1*Û(İÉPxĦôu0œ éAׂ²‚x€s ÇGgËA“" ŠЁÜ$Rˆġ&.m¨8ˆà$/íaħK3İÛÄèáR„ 1cyݽ.cÔàӋ§Ħ0Ȋ÷óHì³ĤàVâMr"PÀRï ³&Ä5À1P{o‘DT¸˜_“ ƒŠ5ïP£&ì@ĊY­AjĉMŽtƒV˜ú^Ô2Œ5iÚÙXa†´ħœ ¨/Îû`Ĝ. VƒúüòH Ž<Ċ˘tƒúw÷=Ü&üĥíùËġo˙RÁ‡’Ÿn˘KD{@:d 5wDEċµRY Ӓb÷ĴáE\ÄǸŽw˘Kx츘ĠQ YLô\Ìuĉuş$"°À\Á“à@†Hن P†Ħ0ZäI8%ĉöĵ(d i8€œÀÚ‰˙`_Ħ“Ş˘pRL­6ĜÄ*á8(éİEĀ…>t×<ïĊ!•B ¸1 WNǖxNš äÒäŬRĤù05­ô&ÖDQFè„1 (‹R%é]GȘ-фc6—Mԑš÷ÑğÀäU„ ˜CxD AelÌèñ9ގj—y°$]oŠq|sŝîk{wŒż;€ïːêfŬ­óGê'Rè`TŸDgf3Ô!°[“˘Î˜$0I´‡üMĴPíhÀ `—0 xDzFrÔ‘#ېÈÍ%¸V‘ħ êçX¨O›È GäeAÌQÔZ§”¨‘‡9i­B’œ‰"£ ÓAnÌĈ6n@L–Q@è8 e H&@ŞŠ"¨;*$ĦÈ@!”kQžÓb(qƒ-Bñ5N*GĦÀt \ÛĊ}‹$laŬÀRbÒĤ9eFz‚H]3N䒊Ĉ„Sµ‡@ Ēhdáĥŝ\E°}i>â[ĉü!ȸÜ=DAcLĈċ 9 ÒqÚPRħ8YŻ[ŬD~ŽĈ#jŞÀµGò÷Äß6óGĉŝ%rúÔ~:ÏUÖ! K=—µĜ˙+“ /<ùŠiDħwò¤×8žôÂSaxòdħo ‡Ah=VÄëFp/ŠĦ„ah§<Ï+z§WdÑÉG½Sħ ƒ` —&Š'O5âS'_ù£†³½Ĝ+£½0Ĉ§8˙™3Ċbxá+ 5 #·Ú 8ìó‚˘gtw  q\ Xħ³Ħ§GLHáÑ˙s÷w1ޤgz(ˆÌäPÌ,q“%E?äMNàDó9N„ì½½6O’CrФ°ˆM²—ƒ àĈ,ŬƒÛ³ö/pÖ,ŬìêB* .0òcë,°ÑWĝ˘WÓVKçèçB˘<(5ԍnAû<ïÌúéŞŝ‘ŞG3Kµ²2Ɉ`ü<ßóŝ|ïû|ı‹STáĵĤnuÎ@igy¨lbg –֍.ĞKÜs[€WtFô†4[Û3Ú † -÷RÙgnò,;t`Ÿáġ2o âĥOmuÙ"߁Џâù)œ‡³VWÍĈm>8„c—ÌĜĦÓé8 |Éşò5–ƒĝ_™LŸâ­Ìà()ĈŽN“µ0Àä-“ú猽˙ôÁGĝxÖċW@ߋÇĝfĦü2qqeEäéÂQk pó=;ßŬ‡ƒát´Ü-_Ċ/ĝ‹‡“ñj5OĝĈh·[NÖr<[G²Ċp<͇“Áx<ÌG~h —ĝ9NĈcùmĵ4¸Ŭr:Ž‡ÉxÊŭF;y8Ùíä[nàh“Ér:Y Ë|4â0²öNwË|Ĥżk5)MĈ3ˆo\`³Ér˜×z“ ŽŜĴN}"˙É1–sü3 —+ùv9§Áp2Ğ F8y}i²ï€‡\Ž;}9öH.n¸ÚM÷NĤğ‘ü:’F¸M#œp0Œán9Ä÷.úNV7LßÙ/E~ÇXäŒÇ71&ĵ†!oÌpµ”Żdúî8]vŝvÁˆ‰ÊH.Bç?ÎĝŻŽ<˙ĞM0f•ġKĤñ2ËKÒ$²˜…óĴCßY4¸Ërû&Ó~Ċ]O‡Ë+>žÑx0Ò7p2Z.qŸg€Íp:™òñŒFóAHžžşÂżĵġğ|ı›Žñl†ğÉn<ĵaìô£Ĝ gxƒÄÄ|>³¤F·néç͇żyoÀÔĊ`ĵĦç“ħ1XÜp†Ĉl·*à|ǃŭSĈéĝ. ³Ä9ÁmĴĈĵb4UÇŒ£•ŝŭâ‚˙ċğċhŞß ŞO†ğĠd—Oĝù&³÷ V—œ°ŸLs|Ìár‰Üûb00ĉğ~Ûq<áÔn\à=ż‘aÌ0RÇ·x{F„ÛNF€wN*ĝ)ĥ1Ë(½¨Î*SYêϟU„ñYżŸ|½Püi ü{v|{‘ŬıŸ!h²MPyĥ†óípŽa˘JʽŸ£aó÷~yk‚G„ 7 fZq 9o'Ïw°Â³XÎù(ŠnòċhÈá=Ìôĝç@:€`Ğ50ŬlhàQhÂñĥ_ŒpüÙŞ˘ßñ-œÁĵ w@·²ĦĞŜlĤém¸vLHjÑ8™ÌĈ“|¸Ê‡r  ƒcć}oÎç“Á1… Êq8&N`>–1´<ıQĦ#`™\rĝá‡Ĝö&żûêJFŬ„Ì>Ĝ]áŜŞ }Yı4„cg4™îMËàz85uÏċî-eLVÛî]]yš*‚`ÑġÎ9Íc™ż=?\ÛÓècñÍ Ĉ)żA|¸H³EVf™—ĝ]Î-)ÁʆğKÒZĜ <ÎÉ|ĤÖaÌ7›O´ }WvKŜż t‹›ï`òÉp.ˆ—h7ĴKı…bğ†óù|ŠOFK|²˜qËwx–+áœê~ĉ£é„)ï¸ëüUœ‚ħç“&H×Ĵ4çW‚U&Ğċ c…6^Ÿ"F†ê';½Wĵ (Nv@=HuhĴä0ğĠH†ĥÀ°Ÿà½#„ÍŬ&£Áˆ°ıN–KžÊDŒ4‡œ$@n˜/q 5tl=Œ<Ïı vqcŒ i^rC4ÛñÜ&cċê˜Ë,ÄàäBŸ/oLÓv‰?_BAĈD*mKĤóÏB<ŭú Ööqä‰*âğ/@`êŭìÒâ\ŞFŭ2óçŒ5#ÀŸë '·àżñáÉĝŒFSŭg|äcŜÉ+àÄh”,óÊÚ ޵—8\­†ò>Œ‰öÁRċxItĈWzĴw{>àóÇÖ$Àğl䃛é’Ôn,>@ŽâNpC%<—“QĊ<™aä+ìĞ:~ Íċô;Ĝ¤²eĝ`̳œiOV87#âéRoIt²ÛC¤òġxi‚ğš2r£ 2 ­‰ïÈ]Ĥ[Sà{LSÂA0Ġ& ;†“qA¤ñ0ĈĊ¸:.Ì̎—Cž5Ş1÷Ü0`uƒ&Ü£izNŽ`E™’VÊò"ëhĵ˙q£_zÁo=jrxü½ówáü…–ĝ-Żżês ßò‹·ó–Ò˘/3– Ĵ=ÀfÑd\]Áù‡iÁ š˘#xֈ4rî7Ç£À“"e€ğŬŒ˜ ÍW“%Mñh9ĴEwhĥ‚OGVìÍç²î5"’1 ?ÖÏ-Ë´ğšŒô£Ñĵ½°œġɔ]áxriNaĈ&;8I-W³éNĜ|&<4xçü ƒ!ÄŜ ĉ8KúœŒ âŬ]‡Ŭ|73–ĉĜÉĝCÜ CˆhÀ'ùˆ~ö"eÂŽĤËÊşVŻ9†á F$bRpµâpTù–ܸ“r%ÂğKžÓ/ Ċ{Ċxj™FÎ<£ßÉ CÏñ]½Q?ŭŒp{ŝCß炿”ÉóTy‹è·Mïµ×˟ħ$(ˆ|V•+óÇ0Gâb{µŠaçâñ„–ó9a6Ÿˆ×7ž# §ÇÀÈ_Ŝ½Ë›)”8ÀMĵ%ĝıxˆ÷~W‚œáL{·Ûaó bœ3PÑ´1—o<Öàğ%HȖKX6Ž‘Ši°\>„0_ˆs /nĉôİĝÉRûË+üÙùXFÄ`°<Ĉ#} ô `ĊÀŞIÍ`xŠ 9İjxє{3ÑŜ-KFÂ˙NIrÂÎ3=ŞxÈñ´b_^£ZÜJÄÖıĈß{ˆßdó)‰s;ğ?ĵ0†FG vÖ!äB/ŠYs2ÏK²ÎżàğFŸ†ßçƒ?–áe Ïë0ŭŠè gï]?ħ¸u­AsÍTĈ#bżÁ@Lx|8ĝó;¤J<}†È EÖg`eÊXeuĊ!ŽˆÈZ K7ôû†’c`d=kFż .™R™m†/ŠJt¤ <C‰ö  …‰ VaIiJùp/Äd˜ZŬ¨ŠU˜šóÀLUñ­ü\ҔòÔ.`—<= µép2ğÂDÏ|6ÑqĈ’y¤ƒ‰|½ ßa52àŻÇ<ÑʐOĉ:֞Ápˆç›Î—Ëo>s‡Ñ\› qdŜÄħĵ˜% Ĵ² Eëċğ˙'ƒìħ÷ú~?úя>ü…L4§ñÊ1;Yĉ·SËcEPrŞÈô&·èş/‡+Üg܄9Ŭà‰ƒcܰ1=@f vLšÁ}-ĴȂ6àĈL`Žɜ‡Jüêê ΌÎĝñ>ïŸÁr$ĝŽS¸ k6– aşiaÇb…9 h"#ŭ½LÈ#Ĝá0d³á—†Ú‚‘GGß·"uNpZƒ›Œšèêàv<’d 7苕œ#W@a—ó(ôHÁ3§s:˘‚Öċ­ÉÊ ñŭó%#qmv9&ް _>šáË3 Z²=\•Y.§ à!Ùn<ƒ˙@2\‰(èËġŭ m'òUÇ4ÎXxnÔYûŽkèŞûż6ñ=ŭàsÀŸòâ( Yä–ĝ=Ħq”ŻÎËĤíi˘Á½YŽ‹áıàŽÎ5{ÌsĝA°ÍĈĊ†ÜB•/s1x#z}sMéü;Œkħ9Ñrşĵš“–št ˆ§ >ĵI†ö:+1ëÌd™ ĥLû_tĴ$ÒQ=ßeñ2—bĵc*nŸ'Ñh5„„ô×ÂO…—™Żrĉß:ä”@;:“´jşn;“ye—'3Ä>K˜ÄÓ<‰Œ'L_Ŝ¸0Èq4ĠÌàPÍê $żà#e#žÈ‡’‘ŝfK„L Ħ˜Pà[£ê<+âԉGc¤Ż:œ°3mÜۛĜŽ”“DĞ”bBï³ïÉTËaÇOöRìŸŝúz|Ÿôä% A]İÁÌÒEÑ ÇtÜ37JM}§nVžĝÉ8iu’žE'{Ûpƒ\tƒË>UóK''7›¸ žĉ͛7+1šĜθÙ$Üd 7ÄG~\ŝqÂŭ´żt“ıèAóßuSn|~S·ĥ?'ĝhYŭuódpòr–ƒ›‚CĉŠ/Ċ7nŜàè8ه<è ²jòpƒ'úUŜeŸ'ÑdwÁBû–†D!b\£\tšÓŽœĤl}ƒ>j“o 4iïvPŬU~Sß.„Zbô÷Ç­ĤAö3|Ê k#NëÍı:_â·ËĊ?т%Ä,ş/°ĝßr£ô!Ĉu‹ñğOYŬÏ|xY+=Ï˂~ɒgéi0MÖÎgħr맍úáA£^Ż7êÍZ­^kÔkġúÑQ½Ù<=8ě§ĝĞV;Ĵ׿xxxXoÖëüqÚjÔżˆß›ĝë;´êµ#üÀöG‡GÍfŭ¨U?ŞË°M½ÙŸġ†ü…C5µúééa­ŜŞáÛx0îѨ4›ĝ¤Ŝ8<ÄןàËΰÖ<üâ›'ġ쀳ÁñN³qpĜ<ĝġ ~ÈħòĊ“/6ı6˙xp"ï5o6ċßŭ>j6żX?à¸8à^Íü~”­żXÇÛ8êÉÁŝ;ÀÁżĝEŝŽ—üÄĥÜ^ŝ8¨^Ĉ‰ĵs Çáo_lÊĝ³ÎÏeïê÷ƒœ7·şİ7=iÊĠ˙iqğİċĴ3e´T˜ùÊħŝ ;r<ËòçÎ'uê_/µ£_ï^ż~ò—>âÏòÓrCŒnGlöüfĜñف%…É/׎í^ĤYk4ì–Û8n4Zĥ‰ŸµĈħÏL|Ú¨ĝ­q\³[v£QoĥN èdÜ1~5ŽqµxèfÈ?M~ġË4^~Gl5[ní˜GoñÍSü°kÇ ìĠ<=ċ`¨ÙšÛ:ÀV ĵŽšÇĜż›6Ž~tl6[MœBg…]šµ—m“;qà¸áÖZ+ ×m5šuğqêÚĜĵy„/4j 9 °?mÚ6G#6krpÒd<à·…QÁ7yàc}3jS[ĥÀé×NùAí£´8šû+5x+dŒç&ÇXí°‰KĈÇ{8=¤U;Ĉ/M~!żç}P·ĵn?ğEEϳ 3TEĤé'`×ü“WJxrĦ§Ÿ<ùúËß;ï|ÍħÒÍëëó#IK¤ւW*•xQÖħXhé#Ô]cu;o˜Ĵ³;FÀ™ħŸĠ-ĵ˙”à­Ñ2kĴbĥc+ÀÔvM·ĉ…!~³eğáF°Ġ8v;‘[ëĜvĞ£<×ĴaóF§š|z,xĈ½ÇŜ£ĵc·jĴ!Œ‡Öéħc€ÜÎm‹öËĜPípżş|ÓA£isğâ6¸ĥqdí8Úİ­5(Ä] œ ÀáâÑrLı­–“i›À7Ç@$ Ĥ8NŽ k5x&­ÓFó´Q¸Şú1`J·ì#ÒĈhr‰CÙK†%p­n·Žë‡‚fŝ‰ol̀ΓÇĠž~ġ† ĝbčAŽ·TÚġU×bç›Ġ‹Û—aÄ2~ûÛOT|,ú>òúËÁžĵ`giĥÈñ•qĴ¤ċĜ‹Ù~"¤‡Ŭ³È^¤^Üħ²ëXâ)VÇS‹,ŝ&°Ç—Š$SÇkKc;³S‘ ¸´xşí4…›A€-k#J1ŬEîfÒŬEmˆ2à]N\ËÛbÑtĝTÖ n҂-3^/Ë ö³ħK &qGtËI稠Žĥïöŭ^Şĥyc‹E(vì¤,ĜO–RžÁuâ%R<żô‰>TŻċàqe‹oe?6ĝH¤mVwäEìĊ¸_‚+È Z,ıˆ2ñLπY›RĞ/`HX6ĥ.³tFħg²&\Nƒ* T(#vÄİ*vqHużEŽİ…2Lĥ¤żly—ËĤÀ§0Gw´ÈÊ5ÇÎÊb‡uà;ĉyêájĵpƒ#{‘ÊÍĥž˜ïßÎCS­·‹( ‰ĜzZ€8×NĜ(šFUÌNù*’x†É*?µÎâ_&ĝ`>wÜ˂ï¤^ħŬÄişÒ}|ÔFQĤ–*Ċ›@*ŸġŽ&8Ì·:´ ²ĵTnì͸—ÒĊÏb.iETl1 –êĈ0‘£zĝĠħˆ0A'GĊ~Ä#{—*²Ġ4KUĥ&$ŠħxnĞv˘@‰R(ŭ›ìä`çà‰8Ŝû`ğŬ!ŝJÂ(=•í6£”H˘›lӂp,Öëòġ”¸T}ˆ(P#³úħ'Ôëċı혢R^àH]GùTġì³X_ŜNb\v’ħJ£LYg ëEÇá!M§c%™P ¨Ĉ8w°ÀcšÙOÚÇh·FÊ"öÚ¸‘™o޲Œġˆ ÛZ×gDÊÀµo_ƒ³#mĜǸC„u¤ 8ŠÔ ˆ4½˙á½w=–XyÊÑğFß_.òöĝcÄPġ)ïàdĝ*î_e÷3iûog H?ĵ$:)è‰ĝŒè, #Ža6)ù0Œßë–iĵKmŞ„ –R›…ˆ Ûha$qÏ,ZzÚ**€¨½t]ÄiîJÑ {lgxê8ÙƒaÛSòôü$IĴ(E}éÌ7‰É,tgÜ–eœĜÖZ""£„­,QûHĜjAnáL¨ĝġöÌ|3"GLèú&Lèıš üáĜOâLu˘Às e·)ݤEĦì‡ ]Ŝ<\“ЏÈ|Ëġŝ&@g˘Y£ëᨰµb¤Ŭ 1YHÁċĥbgêq´x öùùo“]²”/v¤ùŬ^Lá"FÄq|³Y8ĉ́‡t-˘ĥÙ֟<‰żw÷{ÊèŝĈ§_˙,³­(Ħ ĉÁ³êymÖ=éİ킆EBšÀ…oÁHñzá›Ä)ÛeÁ…fˆğêçCX½ù0€0 —”Í`wá:M#ÄÔaX¤]ĥb{m:qFÄ:qriJsí%E‘Âş{nW .`‰êœSĴ  _²Û§ċüÎ ¨M(Eċ!ŝËnƒ-3aݰŻ\b,- EÇÎŻħëïYôŬŭˆÄ"ıÀ£ }ğij Ïáó¤hˆçÂĴz.IBĉNYf"ecµ½Œ1ğÓ½3j,á"½&ËïpT?r얂‡–zyL2rˆ-i16İŭ…ŭ⌽ğÒî†k¤›c‚V½ŽMÍ&‡N7ĈôfuKÜşŽmħ'ƒÍQ |ÂÁ?œX™ş)Ñ˙3eö*ü½ûôşŠż9Üí__óÓ-ÉA•ìĦ„S˘ÒVÑ÷íˆààÈKó‚E¸‘mşOĤŸĈeFÊúï ˙’#Ĥ%[cpûiO§›€qÒÛflĥIġ}‘7€Ğl`mBže Š“—ĤĊîzÛW—qV%&NċL˘Ĝm²y2Ïá*gİ2tTRGzŝìö*² ¸ÛŻo€MŭB|JŜ€ä‚Ĉ=^P˘1TŽx…ŽYà1œS/Aü$ύ½ŝ{Oà#ôŭĤA÷ĜëOU—Ž*D§ċ\„ĵt+Î}$ÊvñTiÚ`÷x§e›êò³Ûq]Û`9j›Ç†b8hIFĈ•V×턙" ´ĜΊ›$-ˆĦşvŜ†l‡éòâ\iQNh†ĝĊC°ßß!/¨öîâ4ZˆNDŠñfÇ\Tgħ˘&‹˘ h̋:lR6=xefµòœmœlÉĊËC´“ëP(“ÎßN†@aá°”"Ö`³˙8;ëtLÜN•EY‡êĵM¤ûµ²-jş¸ИF²ÙHKpN …†+{‡ù†ı‘ĊI舆€™&¸á’ì¤p³ìï=ż÷ŝŠÂï?-²Üĉ.†=èĜ(è&âWô@”… dŒ]uĜMMÎ0_VĈhMşRÎİk´\'ÔÂÌ$ıgğ/Ÿş*cÇqM6˜gc‡B% ĥ)ˆ~ëĵDzÈtÙ ÔınfɊ=í¸Ħ˘”˘€žmşĦQĞÁjş/S?áe‡Êĝž"ĝĜ97³²P0ğ1‡°0TĥÊSĥƒğôe‹„„?_F4³¸ô엉'ê˜á Ác@¸¤D`=#çÌ18òµĵĊZTHE!e2Z7q 6œ·ìLŭ6#ĈX²+ÑŞ_nä´HEáĜO=˘.½LŒ_£¸…aù9ó.jaçE²pxĞZTœÙ³îy% S<ħ‰âY=ßç°ßoqOŝTäN#óÊÍfÓ£+í1$mGʰ<&ğ8¤#—ŬÔ"äâRkïüàĜRŻ}ÚjÁKiâç3q;Fġpm—nsÇ+`‰óHq螉nĥHÍÈ6•<ÖÌ!êĞ TÁôX°Ċƒ“­b8Ŝ£8·ÊĥüĠCü?Šç%ztĜË~Ly¨ñC &rĥıŬ”ÙïĠWsÎÜÉĝêWùŻq“‹ü˙Wa~“óöK™Ï_ŝoe’9ĴÊÄV7ó/áƒEUŸ‡˙ĴçĠó›gRĥ9̗üìROŜşÍül™³9wĝeXœCÍñĈ>q&8ĴTıĈÙҐïûòû6Œ²3Îl ż<ĵ}6lµ¤.t'E›ËŻâÜ)À04Z7oĥŒ|ĊwÏBgżz–ÏΌ/{­/f~~™]—Ħùí ›ıĝV^ó 'ĥ”ç'%Ĵc9YNwR3oä;–Sġb,-y%\#&¤'l;`ñ4Ŝk²5£3AïlY*;Ĉ†@ó›Ĥ̀ÓïJíKŞyÁKŬh·–×ċ„şçċb?^ġϜCĊĴÒK7ÚfžŬNn‹p5EŒVĉpĈ.²)“˙ô&żi¨=óġϔËL”“I~ÎS‹K îb\GáR…­ğKŽĊÉ·|4^Nòé­?ˁ'˙7·d ³ 2gżwhħ&|X,ÂŬŒ ĥ?.Œ‹áèÖRzèrŭ@ÇbsŒħ1ßbÇsŬKd°&t“ĤŸÉ- ïîâÁÄ. 9ñ|:Yŭᘍ @=‹³ÁD7NĜçIúš uğ0z5ÁÜî`UÇ9•ûúΝtÉ_ËċĈj6“Ĥ`a\ħ˘7ÏŬ{`k‹·Ùî64to Ż2×£°jqb53İëJ'£ċp–ë>\“4*W+¸{Ô|ħŻ;šOٜ7aEĝ²:²n„ŝf‰LqF˘è™ DŒâ{]ï{ċÁ‡×wҔb˙Ñb›ò œh÷ĵ$ñÛ^ħQglĈšâħKĦ0ï@ÓÑDê{£JŠŠ/à  Vƒß§Á>‰ ÀNŝŽĉÒğ:5(úB¸µ£!{µ\BU~<ĠÍ!8´4ûìĉ3–ŭ żJ&kJó·\@°‹8xÄĴÇS…h(÷‚WWË|G'µ)'Ïĥ66°‘ä÷=g9XM:ÊǂżÑĞì‘[]ħ#tÄFÔİ—žQÀŞ›‹÷" ìïkĤoHğŒ|³´Òa„£Ù—ng!Òh5êQ2žĞ½ğ°(˘ ,ĠĈ™îĤ7/4ŝ`C\Û)¸räs]Ÿ´âL t&´˙Ío[ŸĉġO=VŸ*p]ş ç@ħÈvĉf~>Ħ{FĦ‰˘ç…ĜÎ'Ê{+Òb4pċîJzƒu ĦÇXû€Ê'¤ħ-Gş“XšyGĞ-DhWIKÉ\VVg²¤f†´ ݍjĠÌż3óÁħÓxÇŝË[ÓċŠíĵ•J]ŝ-á7é}›1ÔıÖwŠjv:"Xt úhz˘Œy ĜÑ@$2F 4Ë%µ@n uç'°EâÜt ĈƒĤ\ċá cÀı_tƒڝ°`µħ?ŸˆzĜH7)‰“Ùž\HëĵœÁ-‘İì0ĵD* ŒÁßoHÈyäÈğŒ-° ++Ì\RĊıžsïßüĤħġi^Ÿòëœ!-{)çÇí(óÒyÉÖĥğĵÚÍÀUôú`fĤÒU3ŜÍ&ÓïŒżNàêÀ4Q̀~!P~b×&Tç öŬ‘lÒċżˆÇCùħÑl.MqCáÉnlˆ)67ŞĤ z’"ÁEZ÷‰íébj7êĤÁĈlq4—8‰‘IJ5Ü…`@7‘èäĞôpKƒ(!;‘h[ĉËÜO 4µdĦ¸ğ#­­5D†ÚÛüÑ% "˙Fm&írZ…Ë ŝÌDѤRŽ4ot³úd ƒ`!żÑ @Z ô@‡ĜËÁÄ`Gèáu¤´2n 9Ÿt)ëE6ÊË4]0%ÎΧê7 ­Oġú£ ËTĦÇvMu/dM-%û!‹³ô˜UmZšĜ¨²6ŸKƒ¸ {°.gëڔ-Ó};ı‘çxìl Ÿè6ñħ΄Œ&°+i Óx ŝĈ4ñDĈş-ˆi@‡öÁXˆ|oŒşµSóχ?ĠzZ0½pD—Œ;–{A˜Ñ ĝĤ4ŠS½ñ,e4g†&ñ%[ƒwt 'íòj79۝&`2Ĥ~î"É0żfe6Èħĝr½³<_ââ`Ù˙İƒëcéô‹Nó ĴŜ-ġh…Τş)o)ÍÀUĉ@Â]ı­=8¸Îĵè~alÑrC0‡­¸4Jχ+HutÊĝĝv¨ìß4´>ĠëünĥViĈ5h܄‹¤ùİoİ(Ú&^/)F"&3}ËÀ9lÌ%zà@†TV?2½uyĤ‚­ÙdrkżğÍD_g>§(*ERƒÛ'aZ&@’ĥĠÒên'·<²\VÑ­òN›CörÂ8áĈ§)bE@ÁRcj˜ïĈóÑ`oż%µÁ³4¤És4“dĦÎˍF·Fìö%uÒ{¤ ’Úˆ2jƒ9é ĉüĠeu £ċŒQÔç6Ġ9e½ĤUĵ&ħùx9`ÇïL9Ġ|L£Ħ“ĦċU.r˘4"]ĉö³-Ġ!@Ż0ĈKNŠħ4ä´ QLXV6‘ğ3ş*Ta§(§Û,, ÏDÔèZp¤Zûµß4ĥ>ÍëżéúA˘ŠÛœ4,΢Ĝo/ú)ëì{ħRE„(ôjbìHpğ˙€2eşûÙ<‘˜ŝ[rò£SÁ‰„$Ë|xk²ğĊû¸ĉWspĝhgV ˙Ŭ¤kG[²› N´x c(ö†‡/:00”ĝW‡KBŒœ³Êş ~)­Ä:1šQ½ OkwÍ;ĥ=NGҏË`ŭwĊïÚħx2™JWóH‹NÎĈZ€f8‘gMĉfî}˜köԗ†2ĵn1ĈQ ܓk‰>`r@B—„÷…ħĴşǢp´ĴĈġŠ%ѤDDriŻ>YÑï˜G‡Ÿ'y:-+QŜXêÛ>™\V³s‘ÔôHâÛR~•“=Ç Ğ,{½Ħ İßícĝdwJeÔ_…•“ñ|˙VÒg2€áÍÇT׆WğċNt£ĤÓJ&`¤Ìl0@pÌ£í´†ċRËĉáwpâïŬšVÁÊHgıyáĦIŽn"}ác!]jᖊHÔgsƒŞDğ‰(Ià@‘L¸PZtkĵŸI˜RI³)# Ĥbdna\!…)l rÉuL(ı§eŜ*ÙaD Z˜ Nµnpĵ`ò•î—c†Oœr£ħV–¸„ïŠž°LÂÜÜQŒrĵ|ĦÚ\‹Hˆ£:ŻáݲĜŬœ™tz˜âÑJ:‡şQ‘Œ>êenjdDĴ„³.™ż•ĉNj˙ô7­OóúRf”mË,ĉj‹ŬÀï•,ÀêßgÑd$ꔞ\M „Ŭä‰ ·À ÜMàƒIŒ<4V|ıl’! ‰Ï`G}SwÜYĉË(Q+?”^ı5šOéxaÄÊô-ÂZ cP=E&šHF{Ó)›ÁmZÏ|<žÍ¨²uy!K‹ĉx´·•‰2=Q=ĦȖ£O ı5~›zdF=pœ\VT"wĞ•¨(I+-R5V‡Ÿ1c!Ŝ8‘­„HĈ˜é+˘A\7ŜĞœK^ÔÈ+×RŒĝÓ:'Ú`Ó/ĉ-qKÎX×Àşİ(K]ÓKBY†D ÔŝZàïïúœñÈ6mŒ•lÒÀOÙIY˜{gˆ`'2c5Ëe˙Qž ·†Oġšßâí 8‡(8çy%û½ÊE$ĝ}> {§‘ÖTĞĤ€™CĤï8i"ŠçŻ*34¨2"Mxž²ÇTË˙ŽçÓÊ}ŸVSZ„ƒ.a˜Vr-4V`Ŝçéĝ(îA?S |ÁŻ’w&ššL”ïÄgô1š‘Š¸ârÊ ¨~&b¨@6hs·ÌŻ´°>5´ùÜéá0S3f¸ÂxâMHĤ×vž.Ov,.!¸pŞóŸÍtĴ’Zù˜éw uZ˜rŻĝ5Ĵ$'†yÚġ (jpÔK İŸwÎrì ŝğëÚ=ìïË2–~šENÄĠfüD]"|oûé¸Ħ@DKĉpŻŒ|7ˆ-‚‚éhއge%*3†•BİÌäƒ-ho~7÷^‡$C“[cšlŠ—á­?Ĝíˑ~ +Q jô{’—c–™h‘öÑîĠr9[Jġ=3êîÊ3›87}Â$1~OFZ‡FkŞċ3êxSı²™ĦÙÑà u€fû’a,E‡JgÏGŜPŜßvSLûĊhİ'68U#6ŸÒŻ`ƒnĤXĠċħ$gށ4ŸÈ¤ž(WçôRħ•Ş=Ù$·r¤s—ƒ*úRóF뎌E•ıÈñÈġ:‘ÙÙ,aÍ%Ċl.PĦiú-÷Gpü^żD_F~;+¤Ñ…-,RIÇĉ°rù¨5&FJ˜Naz—’{8Ħ‘DtË3ùÎċÏzрċN$s‘âĤ²ŭX'ÉħñĝÖuÂy4˜Yä˙ Ô¤íÀwb^GRH×oêéŠÛ/˄Ż,cĉöŞÂċ÷X‚¨—ùVyœ\>A–M‰^­îÎd‰ŝ5Ó+8+1šÑOvğ<§zŸÈnĴ+²d‘žëĠwĜ€Ñ–âNi9ıĴϲÒk'ˆL32îuVÌĝŞ`Ÿ‡˘â2…˘˜HĦ$/<üĠ¤šht5İebyލ܉Öü íPàl:Ö²3ltu%é §ëpaœĉÉEñ‹ÒœÜ‡o<ŻL‰,tf’E.•ŞÌâ/šœġȗĴ>X‚\1Âá>H}ĵÁôM%n:6Œ‘Ĵ'1ĵÑÔvc<Ûs/U³;–YȆċw¸B4ĦşĥċŸsä4ŭ?½`¨|.U äK{²H:q•´é:‘ó­!Ħ2kc°ÜÉ Ójzšï$+5òXÀAZo_˙Ä$>é]<š[Àҕ–½rŬC]Ż\£É„ÓÀ3’.ÑU,“êxdˆŬ’ާReŞé‘ÒpC‰XàĥËóžħ"KŒ¨ž…ċs+‘¤žSù—)ê<‘es™Œ1ˆŸñ˜Ĝ2=Sġr|V'2ĤOËz}pm6OŒĦž87$a4átŜ*Rhı“ ˜„›Kì9`ñïxòK‰×0öÏĜr皲Ĥéxoq\ĊEnáÉ˙‹‹.VôbÈ[Ž”´Ù„•ĈU¨Eà+7´ĵ(4ÔPèœ XDM›e~; *ÊßZJB†³ĵ€ËÄÀ•‡·ĵ5˘ß4İìĊ„Şİ’ġĉœ0àİ^İj4ı£Y™‰s*e<3šœR‰Hĝ€™Á„(ˆâÍ[SYw‰S¤£ŬĠŒċ|;Ñm‡€T“Oni*{­òÎjÎd6]OIEJ ´Ñ·8a͖ˆîJ€ĦMŜĉSY˜Ĉ0˜Gž"†Ïs‘™„2´Îê@ò|c8z)‘ŭ j9›Ä*CÉeĈdŽÀ{%7Hŭ¤WĦZĤ‹èWws\€ Ai5Ùċ¸*TĴ#™‘ëÙ²ĉÙ·,6sħ-X„x:·ÈÔ˙B"Ğ#ÊëpQò ÀP+Ċñ‹4êÓ~;:ó<÷ĉ@£ZúğılĴ´'ŻuN¸ëZ“ÇŜÔµp'7Şñ}Sݤ2ÜëġĞŞÚá—+ß*ÑG>ĞѰҕ^ÏÈé/ċ™geġHÎt˘çOuF÷Ññ×Kş-вş½˜>ÒM}Ĥùœ ó/‰ñÄ!§tnR„ÓÖÒĊ)7/µ8Éä§ċPĞïŠÌż”ìï†Ĵ1òH‚•ÖÀ˜< v.&ĠU0§ ĞÁğÌoÈ şPRġġ]0”^ëˆÒġ+ ÜJ'Oħˆ½üaR-–úX½ŝ×~Ĉyì6ĊIÀ‡ÔZñÓ@­QA²Ykž6ëÍF­ÙhŠÄd½‰?["ïH‘I~ŠŸM*HžÖĝ°Q£˘dÓà† £yrJÉÉ~tÊ_ëġ“C*O6ċHü?jràfS4ë'‡'ĝ䠎=n6ü¤ùEŝ÷Ċ&u#ùŬ‡_ĴŸÔoÖ)9YoOx䓓›<*H`o ˙ŜàùàOŠ;RÖñà°yr„’‘”<¸AYʃ&>=¤ĜĦV¤ÄĥM*DÖñvĈññ~sŻ)/ÙúM­7)ò“ĠNNċ&÷Ҕ''7š͓½.ċIġDżŭ?­~˙âŝµe“‚Zĥ—e"‘“ù\^XĊ*-ı,ğR/0ŝĜ/ŭ⎸ŭ×í8êv£K×÷‹Ä;§×ËR"(e4D°Î5ÍfÔ>Ĥĥ¤Öo4[„ĴŸ5íÚA Ġ0]Q†ɽßâ&UóŒÚqËnÚŻĴĠ\‘ìbÇÊYÊ{Ĥ]Ǘ˜"ÓHATnÚĴÙ ŞšÇn½Žw\ÑŬ;™§…ñ žI]ÄÇî>³íÓfMB!GۋF¤m6ñ÷o™†Qs›-`ĊcĞÙn­nS‘E^ĵW„Ğa7³I…ÍFóˆş| “:’­Fí×Ù8=˘d¤HH`ח1 jfC+ZZ²^7j ­=YàaZÍĈAƒ“{ĠÜÚá^ú”ùI£†tÚ:ĤĴHOÔԅ\`'|tD‘Jî~ÔĴıvȅşËmĉ°“ÂV¤’èpħĠż|q(ùüG-Ş<°èօbñŭ,Ĝ¤`ĚŬ2Ù[ ^Ż`-Àĉ˜H1m×nÙv­ÂĉŬµ;aËîĜ£"óe>aŞ,bDşaĞċşÔí4jÔPìEœĜĈJùTÊQÚĤHŸşÇĤéşN >ŽNÏÎ<·ŞN‡Äü 6v1¸fÇĴ’ĤÍsÀŜÊîàÌ(!yìRcUÀrt׍ÎntÜhž6Zĵ×AI³vZ;&Ŝk”@µİdÉ£5Ž5 ĝ /ÖíIٌƒñĴĊŝ÷ŽèBÇAÄwjÔ)>yÄ+oĠDAÒĊ_G@?ĈI‹Ò’-Œ^Jo·4ˆZѤÄŝÀ™Ûl´j Ŝ4eìµ8˘d£–`_Fá{äZIÔñ’ô5ÑMÎ<!£Š“mâ™áĤ“żÀü_…żŝ%—?bÇŻİ u€oJïd”ĤÌßU¸2@tágE"SÜivgC›§žsjk=àCĞŻ÷ĦWDŭ4ö(7ÔµÁÄù—7µ’,+Ò"RĤk‰nĴce/LĠĤĴH(cH@}NÏ5B#VİD9™V}#Î)˜ùن:Ĵ£ÚXè"Œ"iÀĈ& O‹˘OžI?S&—7Ïzi†ƒħĈĊwì÷ˆ¸à Î/Á†Á™ŻÂż˙˘@òƒ½ùŭĝ/ÎÊ>uüvÛ ñҎ˘&T›ş0uĤüu.7³É/ëáA)ż žp›~ĥÀèĈŝވà~„~Á'HµäÖfi•ö½8³˜3‘y ĴħïâNSjĦà˘ĉëi@ê˘ÔFÚëÇĊŞTé}Š`H‰oêEqñú Ġr,.2êxY[‹ zÑ%žŻċ­³ŝ–s:>PĜ-ĥ<°(Œ"³]Äv¨€DÏ2ĤB…T^$™Â{§Èµtŝ™”ŝĞĥKPÔ\Ĵİb ċĝT³Üö³-—  ĝEQĴ#œï Í(U Ĝ´E–.ˆCjېÉ"ŒşNĴDéŞ#”kb$Éĉr‘ô@×%Ċ²;ĝ0GaEıÌèz‰eÂĝ ÊĤùqp<‹U˘Ŭ,âİÂ2\âyPe|ŽĦ\ dŭÓ‘Šŝ>üŭ›"íA…ş€ĥ†ÂÎ4#~ÑÏ,=⨷w‹ëIRĜI-Ù6ôşß ^2ĠÉXĵ_s‹UüŠ´ÑQ`2£òJüsŞġT§ÌbŠtKĉ=Îóı)UŸ)ï·H½ĥŻ…(ü(ô Jħöñ:E–­qŸa­ı`6…zŭ4>ç u?µi‘ôı°'zoúòœÒр£›„×ïÑÀÌ1m(¨¸ z˜ydĝŜÌ ,ÒwVÒKot@ef˙ġû%èÖsİğY{/šWaÙv'ÏEÔEPĥ|+#Ïp¨nw2хĊ,/)p”iPf6½n)NaC/`6ûDâ§àŠEšĜò˘~/Ë eĉÛÔÛ`üN›@4£V‘hPĤŽz!ö÷}żÏŝeŸŽŒYF–5§Yı-6ñy›*Ìeú,8vf'†“†mżGdÎtçu{ԇޖŽKä‘%D]FS´ÉpTɄéN³6ĠĞ †S (äÎ….aŻG•L¨“ƒh)Fíƒ!%êO•İxrTóM×T'çŽjAr¤p\(Ħ?‡1p‰ıv€2΀0ÓE°`‡<Š<çl‘fñ‚ŠĈ8ÓßĤEEĊ:ġ²Ö)“mry- KRó\f9RĜj~KäJñ3˜›*˜Cvläżzĝ¨à§Ñ÷á‹Çß׳oĵnˏe‰…ˆÄŸ%ĊĠf›´İ˜‰ÜÛZĈĥ uβAeÑàgĞpqİÂ0Â8ôÀ0Żq-¸„ê4C‘€ô“ĦGMÊH9—¸ïXLĝL —¸Nĥ²M‹'BݧCÍ1láÇíÑÀë9y§>—Á{ä˜QÇmQ‹‘Âf-›ÑòìċġX™^‘ÇeĞ%Ùl QÚ½xN]9p#KĦ3XÁl=A%~‚–?3MzœÌĝ:nËáu2°u]ß|™€§Â",vĉY=²ıF–ëµ^v0 ìNt™$\8ÀèĜfGXÖIñZħbô†·"‹8ëPPT–hÇô‘[]ä.;Én#̳L³ZCârëïüú¨<żŸĵ[×?âSŻŻE}żÑw gwNσ8e-ÑĤL@CĠO—"žĊŠ+Š\¸ŽsEì4SgĤÛşQœvlšTeˆĵ’ÉˤĤ‡7ŻCy>>=>˘€½¨šĉ²rŠê¸"Íi½Q~/žqĉÇY‡ħĴÓAEoʔRĈÙËĊàĤj j§s6íċ² \ÚĈĉ•P‘Ž;†GèPDÊí+Ôß{–—Ah$bgÌ|x²µ%JÙ â<ÇĦJċŝĈH–w ‹]'6b`ı%’¤üN'§,½KUL-ä—9ï‹ò\Çċb¸>Ŭ¤”'ġu)˙§lJ{i¨˜Ĉę¤ħC9Jj£0ƒc2ĉ‘j]²ŬœšÇ8…èÏbBÈ×Óüġŭżüà:ô%?ü]Ú]ż‚DĊÚC.}Î%ğ0Yt6ÌŬ3#4ê¸_u³37?ëœá—VŝĠuáĠıuöżÇgĈeëĴġĠ0?;;Ġvgg‹(r £†§_=sÓÜpÏpÎ(oŸž†{³Ġá;*?kşì§ĈĦëĈ·ôD‘ẊßñU×p>ĊžŠZy^Ë 6= #7Tgĝ J´yŬŽ‘·ljïħ9;bÊ,4\ŠâÎğĊt8ŽĠâ뛳ÙCg—Ħ£1OffĊ7m Û^TN%˘)`é’ŜĤfóŭˆ:Ĉ² ċ6•ÓqdqœH„;½€˜éSµ`>pÍóJüàÚŝŠ|ŝç€?Ño€`}³-×0nIp|ú,`œT¤Üšï´u†3]˘+]H,.WmÓŬ].|Ïv- „Uġw_îŞ>j¸Çˉ.ıË$?[Aĝߤ*µ4vĴ_èZŝùrĥ›Îw·nÍفÉ#rġÖYul °|‹ŭmS­µ×çÉÙ°DŬŝ9YĤZ°gX•:Ŭ¨—s]P<“jş AĠĠl:]W0Lµüˆtà^]‹;ì 'öĉûß'";2|`+êR—Lè&;é7ŜW £™I˜K†WûÚo^WcHǔ4É\0Y‰r'Œ²yù™8 *LĈŭÍ_×ĦïçÈŝS›2ÎÒž×êc.ìԎuú<żċìĠ1›Ï‡ş­Ÿ’‰ÑèÑE#³Ԁœ³ĉcòoE›Bk9.ŻVWËüş}9ıµdí²ÔĦVm*½mR(Ì%ÀùĴ'óJGf'ŻñtG İfĠ‰‡; &lż pt\5ç GZ*Obĝb˜ËR퍅ar^-ĉ8^ĉÒì›çëH h¸|ġPWò°êfħüôşNE÷Î-wUçîéŬ>¤ŠàĞ,ÏÎv')ĴbOğ´ôéâ-DgT EUy3U6Z<ç*Ŝĵ£óĦĴĠşğ—ÑA‰¨{,â²İí0„& ŜCĝuLFH QÊŻŽ§éïóÀ_Żïüħí+\†&ċ ŝż…Ğö× ex”Ĵç\N˙-+zGЇħŜ-ŻŞ'Ċ.¤9×.ç2ÊË\wV:@R·[ЍÂhÀn7ĥ>€1Oe[`G²P½–ùéâ>Q5U*§³œâXÖ|\•}NôFĵŠét6™ WŻ-`)cĈĉŜérÇúí}}ñxÊ3ĵİ‹F)L0Ô>Żö3Ë]UèÇêF‘QIıÑdŠ ˜ÌfİÓŬ˘Bù”ŭğQ!™ÇO&ĠĦop™ojŬ`?òñ׍ŞÄKdğx‹.¨ŬŠ1Ûü²-“HIèĉŞ‹ï88™_?x,üË×ĵÈ=ñúÚ6Ġš§Êïħ!KÚ*‹éÚàvoIB›iÉ)Ġ7Gê|ÇÒ¸Ô÷j@b?ĤlĴ†#;…§ÔI]²ë´°ZŝáĠT7îb(ϖcvqIIK/ċÀ˘M:––c]4Ò}ĉ˘„5ĉƒ£ôéPkë睆ni’† Ö[kácĝ{`6 ËèÙı4ż**€ÒJꟵ£eÜßñM³Ëv‘Á@ #5Y‹ŞĠ†ÇZOÎrÇVċı(u~Wš¤h.—"Ĵ%U/Qk“xı:و½™C_½šT] †nš°(:Zsis˂í8/Ҝ!f XŜáû¤7M„ÌE’e{}vÊǰ·_™úsŠ?ʧZ²¨•é°ô l§ÊtRàà\:Ċ`Yà ŽİE.ê’âÏ1ˆş~ı„Àüj6fï`6ğğÓҏTéÛi™jżŒáŽWaı‘q‹ŭdìèÑ‚~ÎÄİGúJüí°_°‡ĝY`ĞnM+Ŭü˜OCTäw+zĈ—Q@Š—¸9Gáiš³&ÒİĴ{èVZ(žÛH˜l<ßPİË9ĜO,/=$ZÚMœ‰ÊĤ˜Ô™Žœà/œ żĞ5 ŻÒAÈrXĦw'×µû=Ş0Hñd'}ùbCĈÚYœhé@Ê^ò¸ ŻVwEğ…ÌĜxڃw(Ċ–İÈä@iĵÚlTEaü”Ĝ{b=êGàû_püŭé6U‘%e+múĴY{Ħ²4H727{6àäZ% îÜTš¸'ŽwÒCĥc:B_]îtX‡í¨*6fÒô5³8ĤùNzĜ–Ġ-€4z‹;L5/€wDFa°ZMĤóù\ÛĈ\7vò÷ùDTĝĵ§·ĉS­rDé[iÇO´0Ċ@ ñÍÁh4¤mìÖîüPút)ì† ĤìфQçWŞġ›ìțŬš²†.ŭ°˘ÜeeFşO£jĴݐı¤UÁĦ‘Mµ7‘F£4ë Ĉ{żQ:ĦÇxĜé À"˙\Iw,u³°ŜñAÒÀ˜ˆ*ûĞU =™hµÎĉ^N2ċJĤ5NƒIœÌÎ:Yâħ˘FSĜg[Ô÷QÄq½jÜcĞżpüŭóÔ·ħ—QGWaċĵ }ï żÊH‡wË9šÌç{ߏ·u*{q•Ñd~µb{ ĥ‹bŭ5ş[£Ŭr6y´žÊâë r˘êE,^ú1W0Ûğ*ɒk>ÛÉvÖúËÒĞ:ŞÖ|Xê@r¸wŜ݈CÏË].o·ôĤzÁ„9|ÙċrÏo8F.r\*ıî"Ëá­Iµ ƒŜŞN?Ï9í&FÁĤ%İ†ÓŞŭm¤-¨ŒCé ‡³1ze o‚—˘%ÂŻ4$â‘ĥhQfnŠÔy—nŒ—ğ}ˆĥÙàôċrŸÎË \I%‹ŽqQÈċzY¤ÊÌvRYİĝŸ[záÓï1wï#ëĤżxüÁS ½mšŬïĈžÇKÇ ú\˜–óyÍù+zĝğ?Ĝµ_?‰ ¸- ޤgk6ż5š\I…Zô"l<ħ [ît#ä ½à ıHíüJœÀ–súƒ3vÔÍHOZ_ŻgWş˙’ŝ¤´Œ`Éı DÓ\ÇşWTäaÛħĤĤAžĈĝŜ[@ĉ“(žÊ‘ yDÙ~j(ŝĦĴž3!Ĵ‰nlĤŽá2EÌG­–Ô>ắĊÍ\2Ħ°‚#™çНqáÈ\&ĵaxı&|Çô8ħŒ§˜Zé÷ËÎ|Jĝ]—ù½÷ÄzéŸ'ŝŝ™ŻTÇKË;%(\e½žŠçùı°b˜j„É­ÑTZĊ~g(B"kĤ…öFû¸£XÏ­Ŭj˘;!w²û”ŞTÍ3·‡[*RĥÀ(ÂX.ĜÉ+a!  ÄHCGJVÓPZ7‡;˜˘á|üê˜~âĊDš- 3ƒ]Ivï´Ŝ ûx.ÙíÑl§ci XR`‘­ĈyH´†Òß)ca+f- ²ċµ.ÖD÷ĵiR£&<3 FÔóùx¸—)‹Üµ>{ñ†1ĜkÛÏrĉKç“Ŭl·ÙéFN8]‰†Ì`4›­Dnv¤³‡ĵôñ$G0„wqĦU ‡r³Œ|F×ód vÈ>íˆ+vžK²İEnrĦÎGk|*ô=ß3'Ż^<ŝ<‹ŭ{e&Ë zAÚϒ3eGQíV;úë)<üñT{wĵŬ7ñN;PÊħRċ­x‘œ‘1@1…‘½EWfG‰ÀVO@Lĵ˘ô­½ Ï-j9‘ŽvóŬr7Ö]˘ñ2ĴĜŞ4ĈZġıÊ~ÈÓù -Mv!ĝĦ[( 2ŞüĥÍ5o³ùûUĉX–W݉´şÔ˙3–Í΢N .–~ï Š µ‚ż8Ş£ĦNĉW&“‘Dëċ˘MR-‚ĉžİ–İ\şÑ İğ@é'OVĞ2iĜʁœcƒ^ˉŝŜŬU.Êz„‰X/Î<+ÀÙuYsûÜ2ġòxۀY%Ħ2ïÓǽÂ|•³÷èÉëĊÏUAğÍJu.şÌò¤h½½SfžĠ‰Tív90ÄE>Ĥ£Ê›Ö.ó”)Ŝ¸íBĞBSeŸ”äU˘İ,jˆĊxw¸˘@ŜR›­Ħ6:OŽ8çÁi+ížÇĈ|Lä³ù˜òEt‡ïF;­ 1mĴñ|<Ĵ´G’™3¨;|ñì˜Ò‹ÑœÀ} 3z ijR•×À£Ñ<×ĞuU¤~™£jÂî˘P ŝĉP¤ĜġjI„ …TiT§ĝĈ™!JĊÂĊL@ÁrNfšA5żíċÚ´Ċ'ğĠĞÚ[]ıQ FS•XRœ9ù|7ĞĜSŒ“/iKnT2%Â ½„ûV^(†mVµ\BíëZŸ„ż}sÑGŬ½'°÷Ápüŭ$âÓìŻˆ,oÜ‹~ż,£´½ÌƒŸħÓÚóˆ–{ñ'ñ²İÀ¨bǤeùvâ5˙žHE ĈZŞo>/ñԚô½ĉ\éer5Ïw“=ŞÉHύ2veh€ZÑŭJħ-–ç“’Ġâ7 ĈÏçË[C@O´%=‘(˜QˆÀ̇ˆzsÚĵyü1["„žHGĝRÔ3—:ʘMöÌÎ 9 "I°1YÑyĴÔWǔ&šhé?0";Íg˙ˆ†2NN²€˘C1Ż‹ù^@Q˘3½ ÄugĵN%ñÒ'’‹™]hU‹Jf 4ŭ_0ˆ–ŒÒ,ŭqċZ‹³*ŽC–O§Ê‘ĴO'€uM}Ïß#ìñġÂñ÷Ç,ŬßQ0żëžçdYÀ²Q–J­³œóUâżÀ3ż–À׃\ƒXŒ)ÄğÓ?ÜéĊ3nsşL;rPûPú€SŜk&r*ϋä¨gĴäqñ^Oö3ĊLêLd’x5ÙĞà-áÀ]”Ġá&Ìsfž'ÄĞÂk<¸y%´Ìä†Á„Ÿ&ÚħĈ]6½DvU’/2WKjT ´@ĈLK\UâÜL³Ñ€ó|_‚c Eà-R ½´WWñX%™œÈ2oÌ&Kʚ'/c‹ż1£.Üj¸Ÿ£Ğ400ĉ,·Xî-îH Ĉ *ċñ\¸8À0*Â(äb°,Ñ2EÊÑóC`|ŝÓżù”è÷}”ú>xôÒĜ{€××ùz‘ĝûo½” °r­g/Jú,]n·‰żÂA$u)ĈB ŝ-™µÚéÙŜˆéœá‚H›Ŭ‹Žéµ|;ƒQ8qó[$¤T·ÈügŽ™÷ċÔċÑÁß1ĦħéQ ÍġRKxĝ¨˜Ìµìĥ$hG„a•üÑS R 1Ë4İ&M(ÂĊ¤³îj6¸h ½ÌôbL4ġDéè…­†ûۍo Ee”ä°’1íÁ·”ˆ„BocʘÎ'R”Rá?§ 1Ĵ*g9#żöŬ–³Q• „iŜÁ4ˆĥĦĦ蕎g×òĜtZĦhżpšD8˜u/#ƒà,²ĞôjߜŝŝډÁ•ħ˙·üè“ĝïOĵÏ%= ½Ŝ~ûíŻ?z½üŭñċj%ʅ^Ge›Ì?E aż…稜‹M$ù|k²Ól:Θé,܄]J•I:y2ÑXÓd5™ŽnqÒCŻ2 UU+Êfï§İJŒġÔ1gG(ħ6ÖÁ,‰Sn˙T&"€Ŭ1ü2Ëó1çÉ ÛŜš vœ092ĦË …·tĊ¸QĉN˜o·pɀw?kFO 3c.ġšËäÚĊ>„PaĵÒDbĤ‰XĠ:—K¸K&·áŭru¤=Tuĝ<ÉıxĤĝŒüċ†^ÇdĴÉ^Fĉ$—….NHvœŜє<šgÄĥ“É…–‚‘éJʵ3 ´è… ?é# {™rlƒ­Ú–ëÛsŽg§|ï÷XSÛSÜ÷8òì_oë×ן~ŭşĝû'Ğ^à{é–pÛÜO}ÓO7‘§’s£¸ĜÉ*–Y"×/ÓhûôŞ)—r= m"kƒ,İŞ,%KNf jžK Á-eœıô•.ĥ’$Ḫ!éÀ–ò6DN_ñĥ F"L{‹Nĉ0¸B€†jéĴĦÄÔ8-]›5\1‘ ˜½·˜vıˁ`ˆ‹Âĵ7ù,emĥê gGŬb >ßċ²2ŻĦCöĠĴÒœÎe Œc",£âċîj&‹rêFV!eE-†&ƒ‹“œñžŠXe_½›T îqU–µ¤xoÎz‡1–èħÓ¤*ĦÑ2bzzżÚ"ŝ6E ĜtœxadùjŜöŸ#ŭyÏpúÁ÷4òžƒż_†Ôí³?‘*ꙍ”r™Áě^4ŬŬşµëUa˜'5´ì™dT'·ds~4Ÿ˙­hÈîtlp98šhŬOCĉì(A6™Ïıü…TǝÉ\°z…ôÇĠ" \ÓPV_ËL+‡Ĵµ!艖£¤˙n£ñÖfu˜K1ÂDOŒ+ûa~MQ;‘[ИFñÁ~A·|vµÓ‚·£kĞĞ…çÉíM=wœ`#ĊÎ).sAUQ,+Xt™K6LôPÓEzŜR*ĠäĤè< 'Ú$W$6C²OŒÈôĴ:‹f.ù²–¨„Êüx$'eL\ŻCKëııŞlxĥ—œ1uYö§Oûùà=ë}<öžŜÛo},ŝ~eŝƒ~·—Q¸Az¸|+Áƒ(^ÄÙxú?€ğïÜÒ3 “ù+˝ħ“'<½u‹icG²“§ O 4ö[K­g7xà|9‡u%Ë`.á6‡Úé¸% à O ½!BĥĈFŽŽÑdvĊçµÛŬùĝ Ĉ ">ÊHO§FÈG˘W{ÛMĊ›ŸI‰ĉx?ğ\Š\ĉ€êƒs¸ï7¤R`$Œ]ħŜd)YéÁcòmz!&í–-ïjÇQó˘ŒËĠRg‚de‘é” ÒċcĤïêU@fÜOvGşuòâÖq}Y˘FŒöx<[cqÓ*ˆ:ħˆqu57dùOĤ¤.tĠàH,·ŬY°Ü0ŬÈËÊ­2-DĤJŭ¤Ċċ|rŭßG|ÏH´| öŜzôúxüŭ (üżôŭ ÍÖièYĝĊ3­Ĝwĵs+ôÒ,ñœg=nÁğµdI£†Ë§‹ 4ÌÇ:73aÒw’ï°%v“ݧbFWÀŭ(*mħ\î~˘M*-Öä”>ÜĠĞ(,Y“İĞŬHŒ%+£sȈS)ĞË:ż1§DÈi >|Ġleġİ•>Ñó·“ùRçí´½çú•RĴEOR9Œ'UÀ´éġ:„ r.ĝ1ÔJ” Ɇ+íċş/ÈĞV9sŠfĴav’Q†?,ĉÓK\ó[eyÚÉ~‘ŠñJßK} ú9“ĠN,ġĴ8Ò × ċñT&*É~Ĉ6LÏwS•i˘ĜEŽĊ>;ĝŝ´ZŭüQ%˳̏ĊOaﭏĵ> ŝ> ˙ëÀ2?³,+ Úlyĵ_Êù/ñ̓›¸nŜ4nŜRĞyóĉÍf³yóäĤ~Ü¤ ŜMĵMiĵ›Üô&ĥ“MNä/|F]ĵĉ‰ĵÓĵÁšĜ `û“/cĞ“/òò Ŝ½Á]œnê-$éJİJ¸PòySrĝXC~aġ–äQn§;XˆuùS6¸aàÈòµò7*™½ÁÍÁ žŭAġżĉ„VŻ›<ܰÚíä¤úí†öêlċߋĦü3¨v;9Ĝï"Ħ‡ŝ]ġ€27ùÖ êYŜÀ›†\ë ĵäfó:Ş3¸àٟĵC}’<× }웈?¨Ë hħ˘4rX‰oÚ~|•úÊβ˙×uċü3‹ žL°<޽ï³ïÓĦ°ßMËàܢI;’4 Ò$;óL­ ­lğe´TĞۍZ£):h+kÔ^nšÇ˘qרQ‘ w+Bzĥi6ku-Ĉ?]ƒêbĝ̐7L*‘µŽ͆m6(FFÁĵƒZ½~€­\Ùë舊gxÛĜÇġFŭèRdGµ£CJ Ġ[ü˘#jäQ°ŽŞĠEqzzġşèç5Žëuĉ°._‚ŭD>ŻA93˙`kѓ jµCòè¨qzpȽë”í;:<8ÄŜġƒC|‚ċO}ŞÜHïƒ×ż‡>:¤$ĉс|ÒàğÜ˙G¨ĠpħxHv8lßĉ‘ìŽŬ|³Î?ċsĵğŝôHŝTmŠ_Ĝ żP‰j9ĤFúóÌì™ÂL˙ççT<ÁyŸzo½ġĉ›o~fü} ˙7l÷ĦĤÀWÛ" (`X~/H(@üQŻö[µS‘Ä눞iŠĥYk¸-6\‹2%ġóĝ‰=ё4v"³ĉĥ/‹Ĉ_€²ĞVNì‚mĠZÇT–<­Ùnëàe[$%q7yÈvtĵċŠNŜħŬl4Ž[îq³E½POmÛh4̖hô5Dײy|lğ<‚-z…ĝ5$k6Žyݚ†v šahĥMRxÏ6Z"?yÊAGl·Ü&NuÀ†ìèšzSüUŻô&q1T—ıLührğŽ=Z­V]ߝ# XŽÄ†ŜòT´)Ğ‘ÌaL½@ı)Slq$šƒĝŻÑ<ÀÈĠçËċÑsR+Ĝ7mŸ=ÑÀ‚Èâ2TiÖùOŸ„ĵ„¸ _υáßġ”k'ÊH³T½-ş]Ĝ]ünPf>•ÈӔ’Q„¨eV’µ(–‡Ò,òQÔR*£öM—2Ĥ(ĠYNtÏٖž_PBËb‰ZPJ•15âÈïy™KÎM¨>ĉ”œî°ħ5 R?´ÌpS—Úóc/tÙ …J-²´'ŞÇžhÇĝİ×*V6¸€ˆ³óŽ)'ó­Nĵ)OĤˆ˘ÌÓ}İ-BAŝ‚"#ĤÂwàLÇġ˜YótM[Q·†òìÊ,wĈvp°ÌÉĊ;ž}f[g*b÷¸OµĈn‘Ùññ‡Ù °‚ċB "¸glŠ,,˜â˜¸³-×Q _Ô4ÙzìÛĴ(ÀûL)vŭ†mFĦC]7ŒÛ˜ş–ÉmІDŸ>Ï"*=àQüùó­í3cÜçbÍŭë×ÄßGQĝ÷EkdSdŬ~vğXwÛAüuƒ,ízV÷ÓEÜko:Ô2ħ:ì áêĈŬvQŭ) Viı•–Ŭ6žnĞßGP[|ŝ F5TÊÊ(­’–ĝ%îúEÇR=?6j²!UaÚ½ t]şY‘"üñ),ѽ 2€+J6éšË²{BÖí4ŽÖ½Š}ŠĊ"ùĈ™D‘Eɲ hIx&›Ċ„Ö‘xF„[‹ÛYbúı”Ё,ËĤzJZˆúµŸEëđz'‡À) ˆmԜ+_•ÛHd.Dĝ’r!o‚²5•p˜Fê9™MIjôe½_)çŒSrMNVàÊl żbá%ĦĞÎ"(S‹ĈVvžzĥ9Ê´Û5ċċp]—›Û”ġ˘Òaş…£g†8xŒ3éJ숽igöˆżŭÁŻ‡×Ż' ·Ùó§‘÷†ĵ^ŝ‡Ħ'ÍSiÚż×ÍâH¤F£Ċĥ'ĜseàŠĊž İXħx×ğ@ZxZ 'MC7£…)†nÒy’mٍêßĊNSÜ£^Zf–·IEdf}‡Ĥ^ù|ÌŜ9@–$”AĊËTW‰ĵ›GŠċ³Ç͏’nŞVëv'Rë${EşĤĦ—D‰0—Ê"ÊOˆ0U]‚4°¸HjŠŸoJÈ™E#µH=Ñp[¨KÊ çn{ŝRt ¤&œ“d™ ÒBy ×R Ğ‚DÏ:Ip…LżqùI;ÊUGN[İ„!ÎĤäҎĞ"£ĥġÁx… ÇE½6ĞU†aBßLß+(•Ĥ–rç×ÒÛ`ŸşD…x=³4ş´-ҝ‡áa9לñiƒÀ÷ħcğ~ĉüÙ3 ÷Tû1îŜÓĜ{Ñĝ“WʳOƒo~ëUï‹6Ĵ0X Ä \D^”kà-KÛô3ünêsô."yÊ{ĞÓ{÷¨ĉIkDÄÄ%/Ħ._Â7‚,£¤^•O@7# 6ċJ›0Ĝ‹@‰Jj–úA7=· İR‰‘ë ĵE‘bƒsĠïiUJuİ˘¨RZË·b ÊhÀFi ×B”5rÑ]ƒŠ{eIm›„Ï‹ÔYÊgO°‚ı=jËaTxżíR•ˆ*’à Lè›a„sê•Wñâ-Î`Ċ‰ÏZ<˜Ò Àûp0ÄÂĝ„Iıé*\QD“Ş’ èOu˙añÚ&ád™'-Dp<0Ħ˘JħŠ4ċԗÁ½Íĵ°"GFĊTaó3û°çìÍ?ÂâLÌn|ĤŒ˙#Ż'=OÇ÷9àïoz] |óP¤ŭÀnİR ,EQÌŞèŸJ“U/óÁ {_–˘ż¤>rżÌnS?ĥ ïç=¸d‘Ħ‘DJVYAÚîĤ[x2>ĝ(&äÛÒTœR‚'í‹a÷Žêl_ A1x‡™Ž ö/û%M³JùĠt×pŻ•Wváz‹×ġlżMCï‹Ċw@´ Ĥғġm|o§"ĵĴ¤ÁŠÙNUܑĈ{ Ä; ÜT"2ú{m‘ ê—eÌĥ܄‚b’Ŭ.v^\‘e²ìËÓ·LÑDË(>‡s_ċMߒfôÁ~é&Z0ÉêGİ,CùġĜïIıTG%0™ğ5Š4Ħ°-4{ ƒ–‡1ï´(K›Ġ*΢âuŒh—$¨ì"‘ċg(EG‰u-ûŝÇ£ĝ{Ż7ž|½püÑy+˘ _"Èş0wA’yĝs퉴(aEĊĉĈ–êvÂH` e‡iğ,R× ¸^ ü-Ĝ€C‡Ŭ÷z WŻ/r|B5L(–¤„°Zò+ÏE›² ³/·$K?èÁ{·ër›tçq‹`\yDF²[”@ĵ÷Sž&E¨¨+JŞÄƒÌ¤ I­² G‹ĉf¤ż ÁGFijËr-^y—ĥ V36òàB;`ìrĵmşSR›P8uµyĉUXá İġڗë÷ôò€_h¸”,4Ó;c‚ċ#˜f˜_Ġë… 0CpÒdpD½MŒ².ġĞTA€×ĥTżŒÛ%ü!9öœN%Êp<-IIüÚëkФkĝ "ĝï9¸‘£}öžà§÷ĉ“Ż7>úzáĝóACˆ1¸ƒE{›µá x"(]ĝEŒ:0òğmO ò0°'ëÄkNŽ/K%iÜ$" Ù€‹ö€AŠßÒ¤(ĥ‹ìRI—qù=߉ҔJ”* ş=jĴù4–›Tùvĉàx\ÓыÚ"²o…ÏĠV>" Żß•Rß"ÉúiBÑEZİلÉbž‰Šż¸… `σ2U P7£ĥ7ÓFÔP‡™¤´Mĉġ6MÛÒLšEEñL˙5îú•YRâэçZĵÙ Ġ‹Zs·Ë(➲&*, :W‹Ü˘h!+Jİ–Fu€•™]­ Ïrlx?Iĝu‘x§›çĊÁ%ê€tÛDĴ—ħ^ÉôË8s:·•lÖŻ-z¤ĵŭĥù×Oàîiê{ċ=zŸ“˙WÀxŞvżŸĉi%Á:ġJ‘Ÿ, ˘ċzÓ2½FCá›ĠÁŭ¤|~|Ğ4u¸lĵ?Z–è’ÄĈeĴ3áĞ }ô³ÁY=’ îS–ÙĤkގ—ŝi7b0á·ïp`§*À^d½4ÎTOiĥͤ¤ÜĞZnâukz @w[¨`èY\fAҗ^O$ÍÎĵ0"%*‚ĤxšëHÈáœÙxq–Ċ1[ŒJè“F&=ÙK1ä–_ 03ÀÀĥc鉝Ïè/ÓCġÏ 9ô²r[AÀÒXtĉ*ü¨_ȸ8²l†LˆÎÈàğNšĈıOҍe]Ħ#°aìQ9q[À 1;&£ËT‹2jà́^`˜ŜbÁ!uقûĊż{=ŽżO…ğÏ EXÜ^ínħ "ĦܢEF,żßîáéqĵ`Ş" çÁ˜uñü-Jà#x:SĊäAŸ§çx@}8Ž”›ŒÒEŸ|ĝ]ŞĵEĴ”LŠÍ6­ù\*žÎTm³2€òh³î:Ÿá6ñ²Ëôí$ú°q6Ÿuĵ9ï>hÛ[dˆ\`³Qe-e·ÍE@ÌDR@d–nŠˆîbşF żH^‘b=šEËÛ#ŒDœ°ğ”ß§˙„Ñ$ùà%ËôÀí ĜfÊG‹+!ö= r§9ÌdÜ] ÷ħ/,ïíÈJ`µ£.bħÀOîx“Ä“È{‘ݳ‹9c.ĵ¸Ö\a‚n ³ĦNœ­KĠÁĜràځ4™L‡dIÇ%=Gd¤ñ^¸X` †Cî‚1ï"ú>5>/üĊä*<‘rÔÇĥ¸„Kf`Ô.zLf$\˜ N›”d]…up—ċCçç‰˙а#ž5…¸c&t°Ĵ “eàUíO—÷úôÄÛvËûŒğ˜‰':ˆö¨Ÿqa‚Ëw‘ËÙx!óŞ=ùڀöŸAšqÇ~ÁŞE<.<ïîâö &Ġ˘ĝĉ<ÒNg!+{f›ĴqċEaV‚v°\\à)ğŠï˘îĵ· ĥÛʍˑˆ_yùŞLÁ`0 J&ú‰ (²-+Á~Ȩ\âħ]ĠcŜoÄm–e ɟ›óVIמ6ÀXÔzċ—>#V™nï¨dÑqƒö £CmKo >Š;Ĵ°wZˏoÇ1WI•bŒt³b(†pЍ(Y™Ëğ÷lĝ}L|û—Ž?&½ÌwÓqEȸ N›cE´e,käm2•r˘üÜUú”ÁçÀmÓÓÛvi#cċu8i\R&ŠŜ%=<_­Ż`u³Ž ÷qÛG€àeïo’ Ä>S[ŜÎ<ÄĈ™/?Oğà!8]u÷KQÌgÊ1KC—ˆÊŭ’)™v7jñ!+&ÔBfAĉ,îx-Ä0i ;ŜzĠaÎ[“b;r´d\%Mĉ)¨/ŠëL˜Sñ“m’Ê ê,ÂB+.‡ۘiÌÄî,Xċi2ğX(JK³ß‚‘ġvFa†í]~òž'v;Ĥ£G‹CżEF %í†zUlÈĠ¤•œÇPg4:‘ÙÂóé÷uYD²Ŝ‘˘ĵ~Ş ÎàĝT˙³9k_ÉV[” í]ƒÓOÏÄ߯żN…Zx#Ŭ€m·3ñ×£6WY”tžÇĊ²­ŠżàY¤AÙíÂĝĊËà]QívĤÊpâì°¸i;ŽC/ŬnŠE*µéÁQ‡ğÍ4O¤j<”íTKžˆ˜á ATVF|gqêOqŬ"߂ġ) ĦÁÂÀ_€ó2Ĉ‰/^ÀĤĜô{œĵÀ ò,ċt8URd“ĜJ9ŻHáâ#ĵ\œò`LÍ%@÷"–)ŭ{AdqşĤU3{Ì-ÁÓ³³5ÎRĵ¸tcŒ`DH/™”}"Ž‚27L…Ż9ğ("ĝ,J”“̘¨”k0şëau8XL½žŞiwó$™^ä’ üâžÁ͆­ñZĤÛÉ6ĠÂw0R"vß³mÄ(^ôúGá÷ĵÄòoŠ˙d­Œˆ²­iá ċyTßĴñìËĞŒ’p6›ôĥ·€ÏœöğےYÒ0œË^ZĈœUŝ‚žİxŞÙâġĝ1áÜëvnNœĊxÊ8ZÊKvHWE&ĞtÌÉe,kY*Î.cYă™9.icj6ñğŭ@r/Àc—Î(œ%ÄïœñۜÎ0}à‡ët” Jݤ\à‰Ĉ-YÊAŬ^à$œĴ ×bɜ°•Q„ÎÏXŒk…²Ŝˆ×-dB\’çD„O sx)5Ÿ @˙fµXਇ·5Pà 1pé'!ׁR”q†Ħ.SQĜa²Û–Î |ÀYNjSŸÔosgS–w`ú'ñġJ!ĥ,1ÈÌ*œ['‹¸FEö #‚vCfż:ˆ¤œeœy‹Äóï=}ŸĠëûü÷5ĞâŠ:0e,NŽ‚òœ×c&(†,2f›eI³¨_ݤŭ )*‹ÈQFZÍ|Q´?÷JżW"L‘e?À>¸D¸÷‰Cá0@*l.ÈdžŸœ‘ ɝ`ù Lv^ħĜf6á\/âÁ$ğ9CŞ0L¸ş^Ií:zµŻŽ²jτOiİ^×§ì8c ÓÒkÒqUbıE­Î¸hÍ|ßĈ>3š,ĵ2½-W@ néüà³lïg w?ŝ¸ô³>nw›Ù·×q҅€€Îı§,è3ı `ä´I – ÚEš11ŠAÙ-ïnŒµxt/WâĊŻd²BfÖp4ċ/X"à[òX˜:ŝĝ dŒ6Ĉïû)ĵgx¤ÊF@éé|„Ï ŸĦ$0¤ÛEdIDŬó× ;ím)Ŭ —Ž“ŭŜ9ÇÌ1¸(ċ iYiÒ·ÌĝbÁWğsBşWIéÚL¨ZÀÀ|˘‰¸:{}Aœ,3wŠ{€í ìsqϨ`ԖÛBož$.ÁÓi’q Ď †:W²4.uâ0ŜÒË R&CF$'p/ÔĈW³éAuÙÁˆažÄ…$¨%‚C4•$¸µüĝyĴëĦòÌ'–p%ÛTfš0fJïŝé´óÓ—ß8ŝĈ´›IV´Ÿ%Ù9l,sŻ´ĵYÔîvפ PĈuşaĊvéo· ÄnyŬ Wĝí^Àe²8żîsuxá§0ʸ˗ŞG³éÄħtH‹ÁaĜ˘d½É:d Ç,ċJqBŽñÛbI·e´² ;@Y–ôÎħwğ ¤ œĈ˜ĜÂIdX D”@,“€9Bôá¸,üòıTP‡›Ħ²â"H¸("Óvĉ+ Jş ˆŝnÄ a™Ġ`˜!ÄPgÔ:cġ-Šss6Žuîı-Â"QIÙMˍgı&Böèeìıi€²¤`NáS-ĠM Â7RĥóÜ?翜9ôıŸÇzNcbœd^'dN_ˆKvm.-‹Ñv…‡˜r9;.ɐĊR0Äġ^yĵ |˘ïYüĴ|áĝ‹úíŒİ6×lëwış`Zfì>BŒşÍoxùeʉ:„ĥç¸EV?IÛÌÔf½n-‹Äkxi—7–k×t{°aŞúÚAOf 8³˘×ĈbƒSm'œ8ĝuƒ,„f'<Ì,g³;pW*$=GËa–Ĥôâ"BÖw˜HfòNÊ\HXgöeñWĉƒ¨ĵ0LûŜ†Ç²À³2aá&Ĥ”XĤ¸ZaÇtá€Á‹0£” r|Yş·'sLàòà¸ÉÂF jVÂg ÇҏkäÁĠ\Ĵxĵ˜^üZĈğÓġbGu:p£¸œWĥŒq{:\wÑó·UŬŸF೟ ‚/Ĥŝïħ׿A½‰V]Ş>3ŽÀġ‚vp ,3ˆ­4ğżÈ:ÊË0ĥ½Ċ&” *Ĵ**úíö+ô‰ı¨$g@X˜nË,í߈Äío/€?ŸÓopSÎĊëĴLqè·´Ĝ²€4ġÛÙNñIˆ‹tûefş\1×ĵNX"è~vN3[hŠK=X›ÄóÖċF9A ²{ÛfwЍc0Ú ŒÄ°Â§J½ĥeħ†ĥíKÙCa˜i*äèE–™8dReҋ5Ċ‡ċĵ[Ĉ5édUż„ċ<˜oŻsĝ™cê`ĊH­ÊďA× 00ò˘ž²cÌÙ1Ċ 4k˙àî¤2 £0Ô~…mÀ´„.0Íyi.´ĊÑï¨-hO=StıÀ%‹Wñ„†Q K&9Ş:#ÙñŜĤ,/uġ=ĝœš—Ï„Á7ß|ëw^,ŝ–rp+êĤœw÷;\ˆħ¸ŝ(ïRq'>4ê`”‘ RcÛ·ÛŬ ĉ:]xÙUòö{ïŭ*–ù_1cÂ2•ĠWÊDğéBâ÷ŻîĴ9Áê{Q·˙­(°|‰`{ˆiïŬc—œĴœiùÛ{]FĜ;ĦĜfY‚“ÀïáY³IGVxµüEŠ ”$kYŬ‹˜Ä| %< i>â*ße™FQ°²"ëġï°h„Çï§ezîÑk dµˆĊĤyAÙ[oşÑı™GeÁt7¨:dLˆx)YF€Ïß[z–ôW€‚}ï½½a&!ŒÈĊê]úDTĥtîE‚Ë6<ĵĴ·MX=r\ÚĉL-?êöánĝŭn ß#í}ƒ”`²Ü£×] şä„ħJS`mk—•”]/9B éı#ĉ€eRâöj“=θDÀb—5{=Ö˙Â5ÚĤôú ècE—/ ֌êœaîïflг0X?#K˜ŭv½FÔÒ{Ĥƒ˜Èħ×]vL²ÈĊê€zŠĴñ ŝ™˜Q‹0-í·cËlIiq9*?ŝZRêdÂZ.˘ŭۑÄħş’ß—²(FI‹,@Á &’…U"\Ş-‹Á÷¸Ò*żŽ5b’X.Y[+żz·á§Ĥ~NĥZcœĵv·dĊŞm§ĝĜ>‘˜ıô9oí™g°ıl³4Xá„E‘$[KúPmÒ݃`Ŭ˘ç<ġüHOÛßσß5úq_ĊìĦxÜ~D‹÷“Ÿì×½İÖyĉ™üsĝÈ™=éd-ïc´gÑşOĉóğkċ• ĵW‚âç ĞöÚm™mèCòómavó3ÚĈL²Ê3áNΉµ'ïù´ÌHfğ² î”T÷SòA@![Ĥ2ŬËdNž 53?îâŜ#jí³L]ĉ> 5ŠR7Áĉ%°ŭ‚öûĉ"^EìĜSĥÀêF-Ç3iÎdĤŝŻj˜S~>íHÛPgôŠ^`áĊ\♅ƒŠ”ZyĤ“Ĥ}pH x‘,ü"íİ(ÊÒíĠŬm{ë3 ;S/RädvÌÉZDCŜÂOû삊$zN ,ÇĊÙFÀ’wûîĥ,“ú]úÏ罞´ÎÚŬÔÚÏ ›˙y˘ÖŻ0µÎ.OµğŠ7ÀèòѰÌħñŭ{ċ:SYÍ8ë„ÀžY–ußFq|C6=gWÛgË&-bà~ß÷ân[ èeäöŜ½<Yp óJ,İêg혽,,€óÎB…Mp~ 'lä*ÚHko²€û§:–ßçvÁ>›˜ĊŭĴÒÊX·à# ÜT%Ŭ~‘ħ–^*G='k{k¸ L'’q–´ŒŸF·•ҏÖÒsL€8-Ëycàí‡J´¤ÉxŠU6Ŝӑô“ŞYgGŻ£@ÁˆYsñ3†6 —%ç\<jWR­ f…!éò€\ğ²}Ù,çqÏö’¤ ôÓ²ĵĠöfèÁXQĈ#ex°6ğ$†—•çŞ4í€ĦYìûú­ñ}^Ĥ"żğׯÇŬ=ïí1µOÛ|Ÿvµm~˙™çm³M?m§ŜĈ÷½ĜĊşE·ż Ó{òYREÙŬ––óÁ²[•tôĵó¤Ŭ.ġ )(ħÍĈp²^ÈÉ]?ÛŜí§iâE2-FÌ/Z&}/בïĴ·~zÛ²~xÁ‰2DˆATÀŽJQžßí~·ŭ­È)܁oÈ0SdìĜ+²„lL˜ŞmÙfÀs) 8²ì·EŒÈ*Ñ2 O:‰ÌËÉwm8£İ4KR÷€Ñp$³1Ît‰-Z# ·W‹sx|Ìì LèéµaîzL1Ĥ°~+¤ i‡Ğ\Ş÷SGÓJžíKc ĝá0§‹ŒŽÁÜ]Û×KV‰.ĜÙĉ„cÙí—İ:ş÷ĥİŻşß˘ıMʒ@+×=°LıŽ<ò“‡mT‘FL˘eíc1 é ÙÂŻäô§¸˜dtBÔlÙ5³ù,Xtu+;yKŻĞÚfïÜ>GÎjôۋ,(ûl]ß]ĝn%ÒU0@aQtÜğ׋=]Ċ|í)œŒY+šJ\Z7SN5˙Ve‹YêEEyɢŬd›ŝh U‹Ĥ~ħÎUğ—gÚǓ˙[fÎ9;î3ĤŜĜÛĦ’À”™7;‡‡\FŬŽ’…ßqTÊŝ6 Ò*³A™³ Ü[…ŒV%pĥwJ~kĈzkĵe…Rìoј#ĵúqœf$;JÛĝˆfǗžèBbŝLÊAİlû9ĝƒ~ìwû{ì·ŸÀsñ÷|>/JĦĝîğàA}&ż_6ŭnżwfħl#Âì–í€ıÛŝ·˜Ĝ Ò~׏á$ŬQŭT•Y²îż’Ż)rÏóËWúd*Ç’í˘¤ÏÈ$lZ´ğ§pÛiÑßô{ËXş¨ w=Áo•pôûÙAöFĤVċLŸ³_m)ÀRoúzJt§iP,NYuqNg˙%ñĵ€ġR™Dô`Â°g‹Bİ8IïÜc“ÏNs`˖yîK‹Ju2–û%\ó‰•ùÀI_…ȲŻl+dߕuœÄŠĊ%–L“Ċln^x]>}M“ñÒ- Ġ˘Ü$Ž€EĊÖ {fé$2Í- .³ċ=bÔ×_t"„x ?°á$²2V›SÑYÜÓ½àÀXTİ&³tĈ²)j+ ¤.)×dëï2ùĵĝëïüä½_ ŭ=xjBîqT= y}¸×A}.?‚¸gñà‡×ü'Ğñc ÙÌùç1ÌAÇUÏĊߏŜĞO<ĝȜ\£ä÷`:RĦġèïiŜ| żüYà? pğ-rŻċÁê– —1Ğ\Jw[úZ֕q͘(UŻFöËr­„çü~ÀX„‘J;€ËÜ=O³ûi‡ġŝ+ŭv)–^şNcÑKğ ²6ŭç3ĉÙÒï{ç “&k@] ˙%ŭ~Ÿ\0èҟ/á_eiÓiħ“ö LèŸûq˜Á;Pë>í‰ĵӈ1„ċ…ŒgÂÈ2#Ä÷‹8î< ná%ş58á"Ž´2kDTF*[éBÙë³}Ŝ˘¤÷° İŒ€§í”’ñzàY“²Yî‡vJ”"úOy ôÚ1aÚ#ĜpŒR/!ˆÜ:Nìtjm‚p³Ģ™ġ°@àq"˜Íäl‡ġ£TŒmZçğÂÛnä—21 4& âÄĦŠSš^ò¨Ïށżüäñ Œž ~ûQ˘eÏxêıĥŸ\çŸÍ”cv?:ġ·ÇŸädŝTßVĴ½Söï$œĝâĴŒá€-àŜmy¨ÒèJíµ^żD`·~”taSîZ>Xò•."Žò›ßÔA$“4aÚk÷ÓĴ”ĦyŸ†µĵ,É+dHá %İRXÀéúĤÙż×/(´ƒ/^ç>³Ĵ´ÛcŬ·(b1+ġÒnDĝâˆùA8ó7J8ˆ—F}*DŠùF¸_tÍüžX1ÉbncuT”didb+N9Ĥ· VX‡ŒœċÂ>grêLŒw8ÉléaD}Îr;eĥ"Ž“n¤‡AiħS½d9X†ÈÉrTħĥ™úQI¤É”İèH,^;ħ'êÙínígpQAÉÚHdI›eš°óP"ŞĊy˘’‰ıkÑg‰aĥá|ÔóÇD›àÇ*c!ô䔆Î&WêÑOħßGùï#Áï“fĝzöî½wċÈÓ Â„7"š/a5y@ĆWÑmR ÚúAÂd™Òŝö•dÓ½WÂδûTSm³í7ğ‰ŸlğŭÀ˘ g“ÉŠn÷[eıU3†a@{ž\JùĤt ™žKÂä/›Ú‚ué/ò¤—zçÁ+ی]ï•QI>Ê çÓŜ8EşfӜéRQc R.áE,ñÍ+Òñ KÏü$œ@váqf—˘ú’Ċċ&ˆdƒ(ıÍ,˘”ÙqÎFyf˜­6Û a!cْ3ñ…û=öĦĵÎfIa։™^’Ÿ›‘şŠu‹ôş –Rú€UDʉ·’´RıÒ‹g[’ĝ˜u­iš]QŒ0ÙÄ ‘‡cZĦÔĊj²\ZJÙó^Ĥ˘>—‚ù½8f<ċ ĥĉ`ԇ–VZÎ^e‹KJ'ŝߞ‹?faŜ{˘2ĉQĤeŸAĉu9[²_…ú­7ż‰6žġ"ŻîĦŭOz÷Ö*QÄ_–núi²Ùö7€FÑmwÉŬ6+C;ÒX{SQ³b ï+ nĴ7èŸ ,zĊö› iÖğğÁMFôy; ,żĵÌ)ŠşôÍ8?{Ĉĥâ^Z"I¨Q°ö¸''÷•ŠJYĉ‘‚X<Íê,„ž‰Šİœ$mÑ´ûĞĜCÉÏôŒÓ~ Z`Ê:a†`ÔÄ~䤪‡‡Ô* L€u8%ĥĤżŒJ7ٚaĜĥ$c;†× LրħŒkÖ%ÛñšÑçŒ8üd“9䝴dj:Ì#8Ħ[âLqnN/ê}0!À.ı,‘Ò_U™HÎóĤ%S–8¤MŭA‹îe*ÖÚÓ"“ŒAÀ†ÖÂu,Ĝ° çnÔ™X4ıĜôqĝ{G÷Áˆİì­,ò“½jù{ê>xûŻç'\mÊŻ—RçWh“ŝì—=<öM.½û°”qÚfiiwM#ä÷áepXĜ$)*cL3µżéùwVŠm™^"Lh30óÊ; DKoGċ-,˘)UŻ[ĤA°ċÄòÌÍCò#)wŬˆ%<ĉy·o³Ÿ VßKÒŝ~/PRĝħè͓ş€„Eˆy)SdlKdqN×ñtŬƒOD¤p’ĝ {N! ‡‹jƒŞXO#Ê[|†6ÀÊdO;ö÷'ŭ½ĴșşĤ˘H$ ĵwŠKz‡)ngħXSĵŠ]%Ĵ˘F8´ MŻ¨œú{xs](šgż×ÉXvWRqAÄ1”ħëRXq$m˜Gë2ñ”.8Z\W¸,]Oâ•ï¤ĥ´˜XžNt³˜ôo{E^²éH‹İ@NWĤ“ÙÏuŝùÇó߇ë˘Vžž˜Ċë…ı¸T/cgáïí§²5™ÙëE˘­Ċcûîğz]ö}#ûE ´ûßìƒ×™?öàü_ĤÒ‰äŻ·ˆ0şŭ¤$ݧ>-Šô(Fu ökƒ!=˜é,€Ût_Ëü>›ĦÙ F Ê>‚ßò^ÀžM,³$bĝ§Ŭ˘-“³B*¤äDĴ^ĜŜƒÑÖ•"³ °%-ĝqâà“0ıLYµ£`¸š› ”°`ċĊ$0‚Ċz,dşé³µXĊkvĉY–£ B ê¤Ĵ%)£ĴË"ÌË(GXĊ[-g´ö²;ôSş“–hĤ=fx}.%ó6ŽË f[ˆìSà°œ3*t‰Ö›Êày’ÍXƒŭcécKİߣšÊŒ1;)Aĥċ9ìÚNßt Ë TÎĜöâ2ñ|Kf’Qé¨N(K‘‡‘ŒólݏÇßğ•,>íáŜÓ{Œµáŭ1{ï½ _{{û,ĵë‡û‰·í!fàóƒŭrRğġ?¤ìކË÷oôŠ…oI Ÿ§ĥìùaٕ­Ë>KÖY° `9q*’cĴ b=L֋£(í^FÀBÜîßcntH_¤ßíYÜÇS‰W+fs¤‚9 É9ˆ^è"Eá5žu"jİO@l³^$Lĥiü)„Ŝ =ÊTI+·ˆ·!(îħ- ĉN½ġÈĜ7JÜÊ­Ä[Ç<÷Ê}+‹ÚyԆ–ÙâHTÓÄÑÓtLŸ/(HêÉ(óM›Ô˒÷’Lm%½h• svĵ@镊I„ùdê<ñâ0^yŞH" Oqç,fÇÌèşv6ò·Ë™Š…HEҊ%f)CdÑ)5!Bö\ħ‘4!’8Ŭb~Îrd„°Ì÷Áxğ¸ħ4ĠÁŬh1ĝµĜәIy ŭ"ŭŸ} ŝ—Cüä:!üĝÇû…1=‹=îÇ=Ċ8}żÜ£şÂô5´Ż—a"EE%íŻ”}ĈĦĜ#ÎGv ¤(ï\˘‹SħÛo–2e+³ŜQV•ŜÁ8÷şp˘–Âk,û]%²U9ħ˘ày·KÜUĉĠŠ~,Ĵ$^? ĝXÒ>žS(“éÖ‹3Nn!6a |şí+NÀŸl˘)‰ž[Ä.í$½Sbô‹.ŝĉŽNĝ™~ÌY^ĥ Mf‡E÷–eVŬœâLġYµò;÷Ú~ħìN“ Ea:a?ċΤj˘dm„}Ĉ’ž„)·K@‘+ĝ9”>×ÎÖÒ2nĤQëŻĦëÀ,“2 qżŞN ǵġ‚3ö“0²ŬĜ‹]ĝ+C§y…ħÏòêĞ‚>˜wÛËٚÌ)Y™²[ŭ6ĝÓZĜô“Rng$BYĴˆU˙íÇáïŸQ›òΞ§öĉR ĉžP|ÄèîS7ÚÓ{NùġG‚Ûĝ‚>ŭ#ŸÒjö^?hĦ•ŭ;›5}ŽĴĝÖ··5§Öş÷³û°•ká#é¸ Ĝċ– P„Ë Uĥƒ’êbešzÌ+~·(6 UšG„…"şŠ}QMà7ŠTù"h§ UTΨÒf¸Ŭ)9oÇ/ÊĥI"cÁ-÷-N½à9ôûwRiÏDh“eÂ*³’ËĜħÀÔE!²ĵ}Q—À[fG“Àß"ê(ï—x¨k*šħkŝ~vUˆh§Ĵ;¤6ŸcƒžÚ– éÓlÛ4UèXR}g‡K”z]dà?‡ù™ˆ# Z³×6Œ~éñĤiqi›J²Ġċ2µÈ‘5’ž·Š”Z°áTċòBI­K„éÙqRĈ\^•r>׊” Œƒ;€RÓC1‡Jˆişì9…˙ĝqö÷“Ħİ™êW7??ŞŭHÀĦ}Ë%ÓòœòĞw~PÂaó_ï—˘V•& '²8Se˙ÛLûË÷úĴ¨ï§Ûmħ*ârQ¤V˙Ŭ/³í‚›'µVp‚2}L³EıĈSLÓn@&ċû ×îu3ŸŬqÀl7ÎeĜñÛ½b*–ûŬ³^lĦ˘=\¤/ ‹ìm,Šî½ßÏb}f_(Ĉb9T×RiF}8 –‰@tPÛċÛµğĝkÁ Ż `{K$ÔLïáv hÚ0ÎWŻ_­·wî;ÌTPRşìş¤1½§u'KxĵEqµ2§Ĝ!ÁĉûĦÁġ!JöZ*™€eœP7ÑĞB#Üy œ“e°ÁaD{ÎÛli/!О;–Ô 2‚&—Á$ğ&NŠqRĤHÒÔĥÑ"Qç°œú“Ĥ%*C0‡íÁ&·Z”é2ÍHŭ_Ïz=6‰Yôr†ż|Šü…-:“ĝ“Âwŝ~ZâµûÌUei7ĥ˜@ġżu?ġ˙ŸÔÙeğŬ/żµ)XŬw˙^ĥċ‚â(^fk&žX’ô^â‘ġÚéŭEÚ-7¸.kÚĜÒşvV·Ŭà8‘ĉO]˘0ŭ )–?ÍĜ£X°ŞˆĤE ² uûÌĞ1ÁÔÛb)€'×Ϥ3ħÏ~\‡ßŝ#µéòoYw#]RÀmLUDöĤÌ:.~[żv{Aé%Òߓ҄7e€]°î*JàV@nd¸á–EŠÌ=÷’yhÓ˘$o¤3tìÂ3lFĦH÷ÈëH”šet9ϧ17ŒSlöeö£sèe2çɄŒ‡ĞÎ2YàM&C˜PE…¨ÓPŬ:‹Œ•B”Nq²Ŝ†Ċ=aäĜ:Ċä}²ŭŭŒŻ§Ü*fÖaí~­ŭ‡O"ġC F~R¤’VñŸ†íl˘ĈŬÚŭ[)ÜÏÚmïœé–vIy4Üżr}çġíĠŬ{Ŭ”#!-ıˆó¸J#ѳ ˆ”××›³‘Z­<˜ŞáT\›5”‹5Ì@ĉÑè%21ûJyo‹/‰²nʧY!İ,İ,K+QK$şñMs]RvÇÉĜşġ¤Ĉ=[şŝ"sá'·Š ÜİĴ²ĈÄ%Ĝ3é„Ħ àĈ){ )™ŞS·³¸‰ĉu,0Ş|êç¤;ÄĵRvċħTŻ·Nĵ0\”Q¨ “‘…ÉŞd?ô3Ww!˜&B80”éÀñDm#sp7ÄgĴ£wTÁqÈàÙŻÚ‚Ù¤B3{ µ#3u¤2‰ŽcÑVU*ÎâÔñí,Í *îôÁû1½Nê[ ğzŞC‘ŬÛ§Ù’,{!Dö­os‰š H{÷ÚAÏç’(²Ĥ…że’YĴkŸ›—)“ÈQ[m¨İÚ.ġÍdX$ÄlÖô‹°£şĴL’nŸK´DĴuâr^ÖFT V””èàôŽ˜DEqî/²0•.`MOĤ4x0Uô9Ïëwٖ×]o ÖΏğR§]8ĝĤLEz²€]/…ÈTd"µ4 ³ÍĜ3ìS˜Wu°)Ġoèy™ì2N²ë9 rz/ZCG6ĈIf8 7éj W xjˆÑ¨‹kšĥo³´#2sŠôĜ)ÀJ"ĊáàÊcR¨^]Éôrö³RCĠ¤Ĉżwfš§Žž›"fħc*~yÙ?}ÑĝûàŠşŞüñOXÇÍ}¤áéé¸ ƒDr–Şö7˜XġÊoŜûĤh>& °ÔŬ"Iem‚ …Ş`ïßSıÇEg86Ó²K²‰<†Ğ’ßş‡à…ú@Ż´û÷Öt†RŞ<³~“­×Œrğ%‚l.ù‘ĦeĥŭöëĜşòswb™ Iï9,†O,™#óÙXĈgÏi³ġنİ3z˜›Í:}MRĵ\”Š{-íğ ŝc\×d>îHD l0+“Jˆ›Š'Ĥı0‡ĥä} .fўĴ%§ÈZuĝż™}IĊ29ÍóŻ²¤Aeù h´íù.-bì*§/˜¸ÔB eA@„C+ívçüÔr$dĦ‚é.XÌhš-ÛĥєĤŝÉb|N^˙ŝ ÇßÏüŝûx퓇ĠœÚǀŻúàYÖĝ!lmÌë%A÷ŜŸ€Ĝ’$uĵdŭïo÷ğ}Ÿëóġï afUŻ(#ÉŝΓdH7ív·ë[”"L·Ż˙É=Îtğŭî˙£ßçJ~÷Ŝ΍ĊN)kÙzİÌŞÜNèÜQĤĵ—1wÛîġ³sD>à×^ĝ˘ġĈ6#0¨…ğN|À› ôßżWv³îúNÊZKq™.€=ÙëkÇI{Táv¨a0èžíÄôߋ’ZGì.Q[ò“$mËqe:тΚa„·#-ŻAíVVğ‚Ó6=z,<ëġ˜qc#Z‡ñ3)Ak2·Lġ×SŸ‹êşĜPŽTá‡aóİì´çE”YejĊɁ&…XóEœ-à„š„ı>}M™ h7'ˆìÈ-âײމ`?—ÈaÎĈÊÔaŠ>˙ïg?ŝá÷ż÷ġï}ï{ß'ĝ³ŸWĜ{&ë}b-‚ 8•gvÓí÷_Qš Ĉvï½pf~„'ÜîÁ9ƒİüĉz ÀôSĥU°â*úx£èRü^y··-AŠŬò>ñÚ/°Ç}ÖÈxEÁJAĊ6ötž·Û§ŝQ‘öû ĵÉaó*Šž’;£2 ‹M´\TD*Û¤ċ1c-ì2ÎHm·˘HIUżT–”£rHÌDJ¸J)ÑI.€¤8ÍVŠö6ċ”€âDşòOJd8ÑaR]2Œi Y­séè…ĥ,ŻĵO8{›MÊL#‰w&ÑÉÔe ZHÇ5ĜT•Û‚˘V–yŽqİ”"CĴ+—ċ˘àÈP„Ö(/Ìt ×ܤ:udz9M-Uڎ"œw€ÓےÊz,)CäŽ/Ċàsm ŠğtYĦZQá˙ñ‹ĈßÏñê×÷ĝ˙ì1Gıà{j / ‹èöŸdRv ˘è’nX͇Ĝ‚ĞdġYKċ÷;Ċî°"e•4ۀË-c–HġÛŬrÍè~ÙßĈf{˙_—›Ğ×a­2ž4ğÓ/c•Ŭc?SF?ó’vOIĴç4ÂÛ;ïĜÄIW ô —&aE·éœqÙ?Šu10ĦT–畯3ŠamZĦ(UœWşkĤ„@ïmÎߙ* Ċ˙qk…ŻÉ¨K´à…#bWžH˙ô¤Œ˙-Ĝ|)+)Ác`Ĥ2‹.A´ë”ˆ .3–´pٔ‚âħ!‹ħtU˜·y-VĥÑQ…Œ*d0kÙœı‘E }߅×YpÑ9“3€œÜ({ Ñ3ĥ²Ç´ÎÔy7Äaí0ÔÍ|eÚͨR½àĊ²¤Írd:nÍ/ñàPƒ:ĝġñ÷Î˙|ŭ{4½?ü!°ĵDŭž†âÏ•|*ŜÛO$H1šï½ž&"+lÀÛßÈĵŝ7{kX|šŬç$’ĈjCÔĝÛ,ê@`À%7|X 2^€ĝo‘ĥ{AŻW,à~Û{°!ëí7`;²˜Pù­rqĈE`J²-İ(¸_a c“À1òR2˜ĥ8]äˆCrvâfÒäÍ&KjùŞb W<€OžtY²à)!J½ÍĠùXŻ™1;L}ŒġÂPמç2Œ.¨×âiuĤ蔔40sĊ³8ĈÊĜBDéÙÀ6uÇtôüĴé‰ĥ"ôûp.7 Î“Í .B$µM™#ޞ´G&âNRöCEĴrîÉҗü’€ƒÏq: +Gşê `Ċ@ĵ/ŭu)0&”Ġ:#™fy¤×¤Żé…F,Ë£°yĠs “^C‹Ċ `˙69ì°íÎoğż:ŝŜİĤhôÌÙ9"‘°ĉÄ?ñöCá×)jD*?{c•žxûÖz…Û~ÁbÊĠßş c8oßòzm2ŸĴT”u·ìîíJP²MÛtôXÜÜMX2LBË#$ûÛ~Ĉĝ”M½=6ˆ”´şœ€ê2—d Â1ŭŒP—ÙUŬ´Ğ(ŞVÊÌ27 UĵNúŻo˜µġUı–6ŭÏÎ$3 “t * #•…‘a ğl sˆ%U*ş*TĈ‰ñfQÛYx–V”™)u€ìˆ;gC]zıĜĵ‘|ĝ,á”êù›|80à'–wzÌ˘'@Xş‰B5ĤKÂŻŠb8Êĥ#[¨fÇŒqú2a¨cĊÛu­ħ§ÂßÔy“Œ³Z€ëbX}ċDW²”,1ǐ‚ ĥÔ0`Ĉġ°=ÓQ£u¤íĵ4ĜV쉀&v†×ɒJ\ï˙ĞàN§!ó£_Qkí{š?!ŝŒĉôX)Ïp6Yr7: óçÑħkÛ­úñħÍ%ߏkvv[-ŝ8>nÛĥË%şíŽ‹wħİŬ¨á/[^>ëĜv­ĊŽn ïıìß:=–7Ĝ°†nË M|¤:n£qì7ptlèıÇ8 6Âĥ<.^ĝ·Ñ¨ÙÇ{,Ÿ4xV8!üÇ]°•]oç-û”›s/û´Ùpí3÷_ÇCá ċëyQS·Ñâe4Ž[ĝÑj5p‘<ŻĈQí×XoàÌjܧV;jŸµZÇ!˙Ĉŝ¸~ ÖÀ¸-ĝÙ:>Ò7§yˆq¸kÇ-l…ßpÚ8Al^kĠíF‡82ñr˘8ÓúQ­v†sĈ}>᠍:Ïżv(›à×Ow¤vz 7x`›‡ĊùÉé›LüsÜ8lâŬú!÷˘Ĉk8•Ïñ$ñ˙ëgAŜ;şĉŬërƒëŞİêó_ˆÏ„ĉ~¤Ħ(ßô˙I&ÂĊ<Ĉ£"ŽpáµÚÁ)?jĜÍZЉ‡ÑlÚnƒ¨Ä%6-`Ż`âĉÖjĤ];À5]ÛpÏx´ ĈÇg8oŜA(Ç{ܽΟĝï´ÜĉA­^os³:Ç+ŝ8Şá[ˆŽ£š|%Ŝŭ=j6xżq8ûèÇ£ċÑjƒ:ž ~;Ş4²:qÇmÈĦšGòPk‡‡5<ħúÑÑħìstpÀ½kÍ£:ÎZg£~xÀG|ˆcĠê|ç´.§Rǝ8hÖħ7İ~txÈoİÖñuG8Ó&OöG­á 9Ô!ΓÛá‡MìzpĜĴŭ£#nwpÄCÔk܆oâwüSĜè÷?ĵÁ/=Ĵ^ĝğ~xŠëĈ›GûŬ˙ÑgÁĊ;?ÒĊVl#cŸ!:ßò½ï}ò1>ùbe×ŝNĊĈcmÔ*$ÖNċùğ6¸@ż6ĴĠ lTû-ü…Û̆ag€“ŽkĠĞI žb÷š{ 04NyßÁMì_çÈ>;6ÍSÍ4ÇM>m £f njòÀe ° V­îaÇxĴü¨Ž# ùÂpߐ=È€ċ~ż~ ?OOċ|äĴ„f)"‘(h4 "}ÒxM   ĊàŸ:s &é%@·šġy§Î°%Ïó¨~$Ş@1‡Ñ! ¨óĜ‡!0#R‰€ò°ÙĴ⨇‡G-µYǸŝŽMĵ}thÔñ%‚£ĵˆµC‡ċá= °:PA@€òclÙ<Ò;aT½ôYî{÷ç>^g?"Ŝï˙…Ħï÷qĜ˙ï\ùŽ˙°b³5[&ĜäX`ö#IÔ~‹‰{ŜëM£éžQ°?µ†GlyĉdĜ‘úœÁ¤¸4ŸfÍhòs€÷ÔZ&L³UÙ °)ĴȧdŸâO LĉDî:8:µi^°AàĠZĝíˆ; ò€ÙN3Ħi³.L‰˙cW<0°Ñ`.$É÷ë­Ö)Ž‚´xÔŭl‰Lb9ÔÈ<Ĵ°‡Dy*˜?$ĵOĝĝq™ŬÄ@ ĈŽŻĈAùiCˆ7ñŝÁWqG<ĵ€ê°yÀ?„N4œˆ`ˆÄ{ÍrhP>è ûŭçw}{?ĝÑğï=7}²§ÂŸ=hüZŻôûĞŜ˙ŭĝá˙/ß˙ŝ·iT’„ƒèA°Y “HÄ­mÒ$6ùi“ÌdÛ/ƒùÀ} ’PH¤Ġ6i—]rŽ óĜÄ[d8E6nµ7£6ĵ/ Û´ˆŬc"¤Ù:ßĈÖĴ&ìäĥj8T³! O‘ŝ@³ó [„Gö%5´ lÚǵĤ)ĉŒa h~ž¸í Fè’?,D˜Í·A(ÄĞx}D…¸µš6˜8½2x׆yÀ:Aµc£IO¨á şû†ĉÊF“ğ4knüê64zH* ):ċ4|šôHuxžCÛ[\Ï˙oáŭ‘×@4° xá ^ß{Ä#cH´ZÀ&5Ĵi½²Ğ@Ò!&xL°x,|Òż e…-­k|’™Ar5°A0^CÈ!†Ä짤ÉĠ֖ YrSqö0ÄŝjŞ!kâ9ÖĞ~á} îûŜ£ġéï='Qŝûì§sҒ!ÔÙÁgîóµ˙ŬÊX‘˙:ÒßûUñ>˙z˙á_ĵġïŜ¸úö·‹EĜ8ˆħAÂ3²5'[î)²ÔĤ“P3 Òn/nËxvH0h!³ë@“áhSû<<|ʃĤ@ ̆µ)OŽ‚Cé6Ž…â´É?‡b‹mĤUÇŜIùÙÁlxZ×&šXĞ‘ŽŽÄú)ħ"#HägyHcz¤Y…˙À‰”€„ċ Ÿìöé´ħD´dİWx Âg£ïcıïÑ\ÜGmù#ôVGĝÚĵğZ­òĠ]?šŬŭĉkoüTóßû?}ĝÁû ÷òì˙öƒ˙ôŬ?˙övÑĦÛe¸4™5Ž6Ĥ+Á|?>@òTŭ·jÌı5›Ì’à‘2•ÛĤŬ|ñÜAë´½4ĝfGŒEhí`]3>uż mdÉCވ}€…V(<£°ñÑÀ$/Ġtô*ݝĵàx9Ĝ54k|ütĠŽ´ƒuTĞœż#ĤâAF`ğ†ĝWG§ŒâZBPà¸S1‡ôì1¸ë¨& Àïġ#8&§´Ÿ:ߢ Ĉ͸1˘GBebjG‡×–¨œ0ĞIŝ!žTHLJüĴ7ĞKO“Ŝ¨Œuçŝ•OsT`ù^ġë5+Süĝ1üñè“é8ì-ÓoÏ cöÇì˙ïżĥz„?Mĵ™ŻŜĝ‹‡ï ˙'Żo]]ÒIüĊo?ü…TU·ğŝïïo;†ĝ] ħ"s³íJ`TĴI@L@1›Ŭ ’ĦŸËˆ„ô ĴSÍ2‚²Ĉ}ğ _ƒŜ` n?9Ì舕mÊĜÎ>Ċ' áik{ÚĜx* ïòá×e–è, ž]Pç|À£+Ó0D˘bƒ¨äi[ ]âá­˜?b _SçnT‰ÀlbM)ĵz@xHHAüœò¸GL-Ö$A/OîàP³/J~kÒ0×5ÉĠ%gá”!s­ò€ ĊÚÑñ'Ŝçħá3à÷sÍÇÀOwíB>‚ÜÓ˘•ù˙Y­ˆ?cu—ż˙ŝüóÓ7VWouÀ齌e'¸ÂR 2ÙÑQK(ĤŠ+ċ§-=ßV?fË,-π„Éó 2gWċ¨…[eö§]G¸Cm$[‡ô&dĈÎŸŜAü5AŜ:9Ĥ"ê§fñN“ÙFn”É ÁKÉk| ‰WĤ62r$q/cqıNBŻò8ù•2/א‰:ŝûĞPßzÚs{VÔq!ï“{’5Ÿ°½o?ğ9hOgĴVo| 3ßzmùŭGô÷ÁUŜĵûà7?öï÷êÍ·żj“_ŝòÛôĊ铤4n§[3~K²":/ĜâäFCç_IR’EÑ9Ċk{j‹wnÔ4]#G0Ĝ‡POëúà0§äĜS„-ñß´Wv$Oà¨˘6>vĉ”Λ ‰iòŬÑmïİLĵakM‚ñ†ä%.! ’eż™ÑWAos àl6  ͝Ö*Éa%ŻX?:>Œ6™1ݨ‡b8´&5GFÊ,ˆx[üëôH&ZôÜò‘v6˜;â:äÈŞ&B˘Ż#pièœÊó:Ĵ²8dÄ.‰m¸e&M§öjRb ûH`B×OÌ-\^úÈ4ż _ú‡ŸxR<úgFOÂŻzŭxŸJŝ.7}”^Öż=ñ{„4àġï‚żüÊÈ+üɈšüôğ@ŝàÁ4ĵŜĤ™~ĝ€†WĦ(cj'‘oŭâßĈˆFȊĦĤ͇R7Žu”Q'²Ž99*Ó-ÊÚ6rJñ0‘&ùga;>ur#Ÿğ}d0tİGôA™­Öéé1"ĉ&S;uÎġÊl“zG:r‘T ĵ¤Ĝ@BMÛ1½4àcµ }DvĞë‰Y¸Š,댳(z~öHĤH*/_˘&s4ċ5k:½"Ĥ¸N J€U5‡bŽĊµÓŝßlJÉ 7“ñ)E/‡ReÀ/‘Bâ_(5:ƒÍÁ̇Ìòq?™<ԙ›—ŝïŸxטùñ5í=k|¤èàQ$ûĜ'2ËûŒĦxŽšòž­ ĝĜîotüV€€ĝĈƒŸġĥ}˜ßŸŝĊÉü=:Ħ·_[­Nßxü ßŝéCqŝ*öƒŝ6Í^CžQ³Ġbdá2;l4ġÌA„ÂĊCo’ŠĉI$£ˆƒÙÀSO“p8’ÂVHÎF&ÜNĊ‹ÔeÔ*ï”Y—8ɞä½ĤLUTuTş„JÓ>‘-ê)KU0ŝ2½ĈƒQȁà²Y·Y—‰¸ƒz5ùĦ€_ĝÛ§-ùç}ï ì=ƒġžQt Ëùĝ‚ ²ïA—â‹ x½ŽÜ›?Aâà“˙ż{ġg!ô‡äÁ[Ċô^ï§o½ġà*7ÇßOßúÎäÈFß}ö6â°Ġ´•\Z¨%Ŝ;Áw|b„!=˙U–D'XjÈÂ!³)ġ(M]#'Œ&ĠwÂM56>=Ò14AKäHŜ.+iè¨à ú ŭ´ŜĴW|§+şa8fƒZ2 ŭt€NßOe26ŞrÂbfuŜE.’ˆ~ž.ġcJP˘ŽC7”’™ĝenHê¨ŞĴ·˜VĦ#=½ĤVĞ °$ùÄäVœ‡´Ìĉ…U ,³$œİú>Öîç#˙ŭÇĤbŸa~Vşî#q5¤ÇĤ‹÷Ó%Oá9$(ĵÒ¸üċĈkoU ?ú€U%Ìuú™tıjž=É…?x_‹I˙ٛoñƒ˙î+|½$?[/½„ß^ú/żòÒïüÎïÇWò;/}ċwÂ˙˙ŽlÄżò•ßĈ?ĝûwÒ:ĉ/żŬzéĝ+ëĝ?ħò…cnÛâ‚w°Sŭo½„ßZĜ§ŝÒ˙ê%ŝÎŬŻĵÔâĈ/áûòÒKÇĜ‡8>ŞsóŽÉO^úÂKü's,_pÌ/füü+/Ġë˙ċßùŭÌüWR;~éè—ZżóÒѰ‰lȓúÜá+8/àíŻ½T?ü[G­£—_zİ^˙ÂáKÇÀ>-~á¸~È/ŞËîÜáo|áĝúWpäÚÑK‡_ĝÂÑáñp•ĝ˙Ŝ{é 8Ĝßzé úpžë_xéżŝ- íÇçñpp|rÈŬë8Ċżŭü|Ë#Ü]#ïñùG‰–gŬŝu½$ú£i5ŸéONo<|LÁ“rĉûOˆ?ÂĝËiƒŻhߏöŭ­7iTߢ]éżÈ›ù#ü§Ğ÷@ĴôqNWßŭàƒWó›|}żŞÔxÑġ½ÉŻG–öÇ}íçwŸ&G¤ġˆèŜ|ÖkÀŭWUmFúħÜ5|½ÖğÌŻĈïëâÎ{ĵñàħĵ3ñEĝŭ²ù8ŝÀ|oŻî݃·Á~W˙˙2‡ôk+˙Ò_ßûŝ#ïîħ:‚Ç_O[Ü'-íĝ{„ıG‹Ÿï9­·žúâïWċ3Žú$–݉ßeFùRìŻ!ĝö{ŜŸĈŜû×d|ü­Ŝş&?lúV~ġĥ°í_\½q÷êß½ġĉƒ˙ĝşá/öĊ‘ü³OšçüĞúÒĠTϛúhvċYžÚNŜ“Û£ïħ >òŭ:ĥfòÈô>q°G ‡˜YèĵiĵI(=#ü]¸GÈ|Ë/!ĝ{żÂû˙âË7ߖßßş{÷îż)>ĝá÷>1?ù×áËÖ^h}ù_Ĉë{‡½g"ïŜŜÇ[Ŭ'¸O@ôq§>ĵᓔŭŻV˜O˘fŝŬ‡Úö>|˙Á>èx,ŭB6Ġ› Hĝ°úÖŭğö€.âÛ@oĵ2”ôgİĴ;¤ŝòîŭ‹|}OI´ŝuñĞ)Œ'€÷Œ4ÊGŜ{ĝŜz‚Ŝŝ蒄{úóO>1œíħ^ZóúĜÄáĠJ*O% üéúĞ÷+àI\Áï—ñ ÁŸŝàáżxö[ß}ëí‡o?xÌŬ7^ƒÑ~ĝ„{ùĦ¤%ÉWµß˙ŝ_ ‚)ż.AÈ5ë]{uςĜGĦĝìÄÊ5?i=#w"ÏUƒ™UŸö,9<~~íêÌ ”—ĝq™ŻŜßïs:SYà_üòż·„ŭtw+Ŝ˙îoÜ}sġÚwïŝĥ{~ĥG_lu˙ù?˙ç˙E*½}˙uxÒ•^û´Ê~âìiÊ{"w÷TïIş{v`ûÌ ġç{öŭ}çgŸûÓŝÌ0W§¸Ú׿\Âü3Ħ?1ÀTóìŻTü˙Ĝû–ŜF’-=ôìċŜΨĊ–Yíĵ‹Ö"ê•—Ŭvİ Áû¸`6Ŝ…h9$/‚tfĦp)Ԇ¸AN Ò94}s""3ù£¤<×ġRQ)23â‹óĝÎ#.ş‰‚¸ÎmYLÒ.ĜÎ=…F&`x@{8ŒmÊs{„NĦ̓ô’ûˆÏ˘wŞ#ĉĝ”3Ïi‹¸Óíáñ×Xš ·}ú}~‰•É÷;nbO¤½$—Œż$ħgßs8—ëàŞ~Ûq²_ùWú,ixp"_ažUŒżúÑÏZħ‡“Ñ¢×Ûb}ŭ!ŸPl÷uÔ!r§Ŭˆ_[ÚÇKWzĦ]ùeûw}÷Ŝ& ù/`+[R„É‹hßŭn7ç°IżÌô퐭Pd ½Ğo0Ü7÷i8"jû5óW¸sgvâ!½ĵ˙ˆì I!ÑĤ;Üĝ A—޳„ÄüNLS׿âžï"ŝ./YŝùTRXÔ½ğç›ŝ.’%0 C‘WzÙXì‘ħV&Á&.NÑß­'züğĜt’ïóğ4ùğ_ïšH×0| z‡(Ô‚ ?AÜħ˙Rĵŝ3ë_Î˙£aÄ­-E  ÓÏàü\Âż·wĠž£xċ0ŝñ…,…F)Á™ÂúcÔl7)F•âÑ?ìGLĞ0‡ŝĊSĜĝĠÒ á×ÌÊ FÒkn×û—È?írγĵ³]V!Żj_yüÁŝCqĉÚ5Ċ£O‡bïi_ïjıqx :¤ Nµy(š×ñ\{úOŽŻ} ğ'HżÌÎ &ÚBóOż…^o¢ ‚˙ÛM:Ŭ.*‰ĥs<ŽÔËĥŸÈ?ËŝoYníĥ–Žlş‚¸$€| Ġî÷Wı“żĊkş •ͭ⪖œğ—²Ño÷u9ŝ7îYȤö4ÍcİïÂÌmÚñÜĥ)Ĝĝ…-o`e};AÇŻ~w,ô=H.Ġ½D*gµĞ\$aÊ ß€™Ç È?Rż…-v•Mé?pĊZiUЏqşìquó·@ü²ĜüòF{í˙›QW’##€l°1ÙaUËC Èï°-+/î[|Ŭf³Z½Ü,0ŭÒU]°ÓUÊtSë²B`ğp€·äœü†ĝ*tK;ddħyC ¸ĤİçĠìĦèó¸B3ġ?\Ŝ7ä߇R ˆCq,²@>4ü\W´"r-.‚ĝí¨…PShV/‹W²ûÛE4çÇÑITšÀ˙!§ ˜k-KËĝóM:OXn[üÛ ‡üÚoµ”+ŜF4*Áb߆äuÒ.ĉ—7ÌÏŻ_$+ä.ôw:žĊż×ñEryîħ­éï˘A8Ô¨Œ6Ŝ9˘ˆ&UK7ñĥ#*dá·ğşÇɛ’û2ŭKĈ_ }?´ŝ—(†6#ÁÈĝ#ìıvb*ÇIY&Ĉ] Ğñ×ŜŜğżo’ôÁ¤}“i³äíöLQ‹ĵ•˙½ĉV½`ÄÓNC‹@"˄_ĞouŝòFĈ}spO{ĥƒŽ'íD ÁÈzér°żĥšbe żĞT §„`…ïèğ(NSkH06ñ·ĝYÚ·•k{—fò\ݟéFÑĠé4ĥÚĜ‘éyx^ûş§"ŸsŒż ˙ŽÈD˜x„Örv‡Ż h9!ɚŻ4Ôġ! áhî}¨˙9Š Ú·ƒî…?\tş[Ĉ……{4LÔċG#˙ÓiC£KöâĴX·/|5ĤuĠŬ]3<Ŭ¨5BĦ4@Ânĝ~Ö_Q'tD°Ċ’šzċáá9Í$ŝ^ĈħCN °“—?a}İÁÙJ¤91Ï~³×EġÈğlŭ_ä~Àú,iÑ2·µó¤sÍ<ÓêʋĈ(QMrQkëîÖ7m4É<ħÒh/G˙y…Ğá󋓏hÊ­ Â&ĵğóqáˆx1ïïëjz_CV³·N˙Àà‹†ÏŻ =b˘ÀĞÛf…Ĝ·•/¨9˜ö_ŝ”pûÉËnBĠèıËmˆ<ŝ¤ÉUj‹‚ ™’ÍwP“ v†>Ìîĉ9AċnġÀà‡àŭğ÷Ğoc2mßîܝŞ;i>W5ÒÍ%|ŒıyÖȗßÉŭÀžŝğÌû"Û<èŜûB$Më –Ž›–.n€¨ ĉó{ÎB…`Y\ċ›VE††Ó,Ŭ8uÑMš7O˙ÉnŽV0^^î1ŭêÇeqU27m RÀ÷ٟ  sßüicñÚ;;=€ğÉĝçËD 5MaUĴŝBê>Ïż³ ä+Ë£<§9Xрê[ÉÈó˙°\x›Y E:ùêjSú%†÷„:{˙"ŝĦS@Ĵpü4ßÚ"ïÀÖô5D£&ümB;˙§Ô dJï[ĵIċĜ݈D^í×2ġŒ°6ëŭŭŭïLġ “<˙/‰™‘Öh–(öb>WĠâçÍżÜßġ~’? tq!§’ÎÁ˙½Ñ¤ š#ĵˆ@÷²ÙÔ(t ²?9äC÷íŻ|$QĈÒ´í VI07ż×s”Z’_RÌ ,ŝŠ|ğÊçfIa½'*ßf{y˙⁽ z!Wü,{ħÂżĊ§½x ùx|kRetÚMµĦ_„À$étp{27Ċ~UÙŭ2%-ò°ş˙ö9˙ÎéÉM_~Ċk"Ñhd!İŜ6Âğ­BI;ÈÁ'WĴĊ]0°…Ê8·¤ƒGǟ·èRl öşÈ;UÜĞÓĦmë7‡Ž÷’ZèİŝSÚ˘„üóÊ6skħŝ$3_FYmüé)-ςm LĞòÎŜ`Üü)Cżu'%üi‚žOsRWÉ:Ûşb‹¸9ùkdXïç6›ÓäîKeIÜ˙/ß˙­=S,2 ?HeŜ}͛ëUˆ[‡/ÛÌR–ĠĊgùv½Ç­"aĦWĦ™KHy"íèqü‚䟃-ù›~dŸ’ŝĠÈj.B~÷â-è)ĝ•-A2eü‘+l“ëÔ.­$'4ñ÷ŞdĜ3“‚żÄw ġ˙§)\™§&ÈfŞSŒmĥÔUĥ'ĵ™Ŭ>ÉÜŜdĊšÙ•,ŬħßüLë ·íÏ_Ĝh?I8WÜ.`y€Ċú•dÀŜ˵UğU¤-ЇşÏd{W’ßĊp{d|`Ż{ĝ]$Ú§ŝqß{&Ïä;b•şH’Ş0İ1é05*ŬVMé‡lÁÍ.p-ġٌk}ÏëƒŭœĝŝŸĠŠ›"Pw t£Ò:‡9úʤĉĥr‰-ĥ#öHIZ@ËTÛb·/éŜYÁY·ċ£&€ )ašm"K°/ƒ÷”"’F}÷ah /lïjñğ‰ŝKsÈkŻÀßŝú íÛ鲚yJ6ž s•#ŭ›I: ½Ìĝ%jíĥt•14ŸğŝÊĠ÷Żçэü}îŞôeżûò/Ŝ“^tW2ŭëGòÜR/óFŒ?Œáu‚ı3&ĝíÉx)Ş„ĉĠpwš,ŸĤŻÍ¨Ú…X3ìœê … °wNÉ;Ùtä6½­÷G=Ätó£ÍĊÁò’ù:ùÇ~‡"v..T–Ò:KR˙ÈÊZğ‚ĵ°ú-JŠVu ,.Lڅf4Ŝ@ŝĊˆ]#‘?ÌmŭҗĈġ˘>Ä>ZŭžÄ[<Ùœİu£o¤ŻµîĝÒ´ë^ëÔħ²ŬkGp²%XÁ8ĦWä䚸ÄULĥ …ĵshĵ’ĊĉTêñ÷ Zv/ş˘Iù<ĝ5:‰óLżJòÉx/ç~‹”Où$îú ³Ö]V1_€ä_wî ˜?š.Nĵòï‹ÈûMac{jñĜ…´IŭİPƒZ޸˙ù–˜?t;2š=|—Ĥï†ÁôC>oĊJ{³¸6ğ]™l+O†5,lšÓ-ìfÂ:|Zpɖ³(Ğ9yqMoñë]·ô‚Çzbċ£úŒ ĥı IXñ‚•|ğË×JˆżN7ıBóÉn'ġoÄ@ÌXmM ZE*âÊ2ıè$Ul‰…@´²E²Zŝœç­ì×àuÔ §U³.%<.Ŭ‹ßŬ7†MšŻS1úß%Ş›*ò‡ôGu;?v4dŬ~?‡Şʘ³*ñš2|œT†CАVÚ´Żl'Cñıĥí+W˙Àš#@ċôÚà °€×“ù›àï'Ĉ_·Ë3ŝ*ö}͋Ġ:# Á3$mQ‹Ë‹ŽŠĵßhĥĜÑŭ(ÎàïİÑXوÁ˘|Ĵp°YZ3ž˘ŞMTAÄş˙8…ĜH‚è=ùZqŬL˜$ Àô]çċ˘ĝ)Ĉ÷ £µŜnIÑĜĜMy3 2b¸³ ŭ M˙Ŭ3àĠÙµ ‚}kòìñ"UÜFü{i~D%„¤ÌV]CĠŞLTG‰ÔĴnÀŸ×•ëY.˜ûNüß%[' ÇQ a,<Ċ{•UIħÙ Êa‰]ük5[,Yĥhµ °Gċ`œüÀ2€ñ+.Cş‡ô’ÈU4Ċ…ü-yŞÌá¨dxí´)Ii;œá³/ğšñ—Ħ€šT6ĥ4<żğgL\Aož1Ŭ6^R½Íšœ…üàĴÈ<÷6Á]ŭÌìßġEçıÀdéYìĤ›(³tÎÂvánäg‹N7¨[9˙’c%’P‹×ÈżÖĥö,?ñf¨1´9Òu݈“|kÓil9dÙénOG)Zċa's§ħ´y:!ÚŸWë+Tp%J1/ßu4ÏO%›—ñÇ0͘Òáƒ@çÉ3ÂIF^ 0[T_Ÿš§Urîp4÷&ĜĴ´¨Ħ[ßŝŭš% 0Eöâĝ7R),3jΚUôŻé ŝk21›œx_Ĝċ\K7˜Uó–Fs÷óˆ9×d?݊ÖÔ5ç.îĵĝb–bä˘`>ÚKP ĈŸ˜âêbĜk\P÷+úċ²Ö;ùh;Üà-£_Úi7MŻqˆ½’Ş4Ñ`÷`F³ŭ—‘› äk]rĞœ ĝL¸Ŭ6&ÓÂKQXì“ò/îÔà<Ƚ y_ ˙!"gOtô–àwŠüŸûÖEZËğ à<ŽċҒ MFt2wi˘œwŬ ´™ì^$i0˙dƒ£ò£°-ç ˙èžÁ#§eM´Ôè‘ZĤ?wiz=âÔĞ^–Ê·ĜÀ–ğ‹ôNsKVÄI?!^Âö ‹• OlÀaW§×IGòJò:£âdC“ñRĴ ŠĞu*êC³ü˰ŬżŒüß9‡Ò­­f~Á3Ĵ¸µñŭ#Ȉ:sÀùĥ…´mĴIèçߑ4bÛTìżN'IRtTÁ—Ò˙‡Š&ĠZRt.ĝĥ4•ÛċĊĊeàŝ`ŝ1ùWíÖYĤŻÓ”3sŝÄĠĉ4m34ÎBžüŞnñŸïœ:úàgí 9”´ĞFòP€\½ß…˙ġşĦ³5ΰ _…£y£İq\ N@ŝıÂĜŠ”ŻfBkż7äs0˙ÂÊdç‹–ËĴ]f‘4N÷yşíü|DF À|ûxÑÒ[z›É6ċŽô@cˆŬßÇ\^t•ËTW]SC3kŒj\lùL×ıH‚˙!—\ĝfç&½NŻ9uuĠĵĤ=vMĜ^‰Ĉ ú*nĴ×Ïä³ĉĤħ‡ë;kÏ˙aĞşÑ-üİôŞ› G#NÑ|@­†+3ĥ`B°XÛk#ÖK†è\²fŞ‹q—8n³£mınfLħ›ôğù°Ŝşnl·fË!zäüv5I9ûŝÔĦΗ€ZVͲġĈ¨ ³ñż7Ñ!ç> ‚m[“Ùfa\XG\“övúŬR°F£ôZ uAä.²çĜ˙(Ó=ÚCV•*áüŠQÛ½Ëvkhí,´ -ôo: }6[#5/l>/Ŝ“EÈĉ­=ÌÇ넌h#Ô\+²[2˙R—d_‡×ĥ~F AÏÚôš³´Ü+ŭ_™’UPuµÀyġl1ÛÇ|`Żù5ï4Ŭ(X l 9Ħ†ò%$ Jt:7ÛŭVHż=ۜކR.Òż% @÷*ŞİŠFvhâySuëePÍCµŬzfKÛnâsß÷•ò·ż"ġ{ùc7Qš$ŸkÔ}ì„1ŬİñǙù{8%s‡xċµĉŜ•ŻÄßĤ˙À6| œŻŠv.¸ÍÂÌ×ùLÑVèÂ›Ż@  VĦ$uz• ;*Q—Ŭw|ŽT³uĵÒ&•'÷È˙MA”².*%zÀ)Úġô/’ŜŞâmѽĥ¸oڗ°„˘Ħwê-Ž'5h’WĜŭi—ôïE·Ğ³ÁäКФ[t™(D"/-ƒú­œŬ2ħà”ĉŒŭż|ß}ÔéLòéú˜'LÑêğÂŬ%/POьl‚qzîç9àÌöòá@Êé0•³ğ;›Ŭs:Ŭn³…ŝ;¨uiLZÖÑäuMáUs–)·Eĥ>Bï{ïDyúUžƒg yñÉkûü”#–G•y(£mżŞżġԝĥ>J„qŬŝŝ­Î"ż 7BĞïÉßQ¨9Ìj, 2Úì’ÏĠo£!­úüĤ—úwô ,Œ¨a9Û¤£ĥÍĥşĦ­› `𳇠TĠÛ:İ.K+ëQ{ŽbɆż|-´ó™ùdĞëÀVĉt€)ŭžÎh„y÷ŝÊAÒş;cEżċÈóÛà™È£ö’ôqÊċ „żj›­3ÉCĝÓ.cĥ5Ò&ċ<@xżE™šQħ-H2šD}x˙á—_žŝĜĦhbîÑ(SppŭĈo½Ŭ ĥ‘“ë!‰1Oi Ò?r·gM֛żFüuşËÎĠċ’[à;[1‘ċĝĝ-AXĞÈĴù ‚OÏ 6w§BÒye²²›$q`ùññvÀ¨²ĥkĞF`ı/ِ/˙§ŒÁLqëŽ şb1ü*l[şÀtٔmiNĞ,ɋvaŻÓϔĉ![ċ“³ê*X˘GüxKö5ȃ³ßüÄ[?Çyà<Ħ#¸ğǝCoF“Ĵİ ğ¸Wd:£ü²K*ĥĈÚĥĥ˙ä´_à/ ò°aŭUKİUßemż}l<çáóbvf“xbEÌïyµ´è‹=ZڋӠ韆[}ß̀?ıEŸŻ.ßdzšÀ%0˙ĴÑD–ËıVY”›fµ3â ÏĥvšUċZğuáŝöĵ;Êbu 8óúżycAž;šBt͢‰î# ğ`2‘i÷b½ó.~Ÿì7ÉÉ$¤ĜtJA˙"¤ t–œĞšÒ"5ħĥßç~žñ…P`´ħt;JEcàMƒXÔ&J¨­DêÈǗ,E3$o;ƒdŜ•NHñ^i8!èʁŝW\²P\Ӝ*ƒ]Ë|ĠŜjD| ġ;W¤¨IŝmÁr˙&ÒÚfïžb<óü_fù„M³ċrIYœż²£…Û´6³çZ˘;ĉíEt ĵĊɅ{ž2À;5B’ĴŸÉş}Ĉ6'żF€Ìşŝ(ŭ‡jüħáRhÊeÛl݇ä Ĝġzk—İYmµQ?2ŭóÈíûċr^bM1˜µµĉ”Û&6žJŬèö!=}¤„ôj‘¤ÏŒĜÓí´·ˆòÒ˃͊ M™eú¸Ċ9U ŝ›ê”ġ†Nĝ+şÁ!šrŒœ3Qċ"teA_·ĞŒ*ĉˆ‘-³4³R@Lm¨,4ÙMo<ß܌oĈӛ›[#•],ĊŬ'ÙıÒKP K¤(nvYQ~ĉzí36ñüÖ[,fÏ6‡òMèĴ½˜-&G:e§[£È÷$„KRġ…çˆĴIê=żVRéyĤ/:—…s¨ëŠî/ûĈYñŻEÑĜdıwġyI7RÀ‘!5ò'éğâïhéÈĥ„S‘%ôV „ŸÖZ¸£“ä¤eê•Û÷EŬI‰‡+á˙&J+naĴğjDĝ‰ĝ3ÚÎçLò™(¤İXRşÈTĊ’!Xé(ËöȅÑL+dÈêİşXíC†Í<ËҔY,’wViOiAŝeK´êAéèàσ|Òûmö—ü/‹˙ÉèĴŞMñ0mÖ$ ġIÂeĈC¤(ŬBlÎk†š†|EŭG>NşdŜĵ$ĥK:U·9ÈtF ĈKD:–şŠg"qj´„GÊvîʁg·žWĞj!‹Ĥ8ĥm>/FöÚÖgG‰kÖ¨Ŝh‹³UHVŽ!üÇçĊpžy¨ ix•˙ŒRT½ëtÉDġ%êљ˙eë!,ż‚çümג37Iiĉ,hÒRk$Ğ„üCQµD Xĉ)*ş[zRRËIŭ³.m’’‚ŒE(aHVšÌ3úÚÚtd ŞÖST’Ó”Á’ځلY…“dé£xÂ1œjŭ­ü|żûŽ=ê$ïDĥñ·Ö\;ÍîÙujȰ†]£Îpu5;ƒïóIqdPl­ kŭÜ£Ôvò-X´é(ñŜ ÁßùÀ~‹J;÷x6!wĜ˜[/* ¸FëHOÎOĝ¨Ċì(šĊuš‹ÌNÉà“jón´ …äçàkˆ*‹Cş1İZW…4S·I9'TpŬVŞ%à´§WR#šxżsŜPA[ĝBİe†˘l™–DYä fFĜHŝ‘WCĥK›ñ/ŭ< GĈ:ííÊ! kİMĥÎĉ w_’0|vÖ²àwĵxgJşwôK×ß}pÌRX’İ—&ÊĴ-ábn`ÒûèpaláoE ÷„=! ‘qsĞo§)-ë*ŝJ.út•Ħ oǞÍf“Ùá>kìżÙDŝ!Ġ<ì#û, £VYĠ˜n)êxċ úìr̕àod “dhFZì[Ÿ”ê*iÊĝË“÷˜ğí\‰½ßÍÉŜ1ÜJ˘ĜĊl:“ƒ°³Ì“ğĞA.F+ ˜ä7ŝF*ï8 9°§éJş²#ԑ@9[3÷ }RëÜZXTŸaüŭíàé'ĴşPÈħÙ,½ùíĉ–ÌRòİLJž™Ĉcùs4>Ħġ‚‡ĝĞP†52€‹Ö€¤}Vˆücğş’d^,]ħÖ EŸ<żÈû<ÊxvĈm&“ñ˜ĵË÷EÄôĠQ$ƒîWŜÁ˙`ñÇëZ)ÒUH$ûŻÚ:‰rTÀÍájÄrŝݵûʒ/˘·|Ùr÷‡·!#óT“È?͎ıżö*™s;Šñ·4zx™Š}(WXdQ‚?Žg&ŝàjû-׊5f›ƒ#ï´Â4“¸#œ|ĠfÒê2ك&ż—gŜĝöögn<žÊ!èòĈCĊà]èġvğDûI.GgÙw#ož”@ü‚Ċ3Â`9wĝĤÎç.ú L1üL]“ñl<éќBĝċµġw–÷ÎC} pN&ößrJf@=@÷#N †a&×£Ù(䎨뤛òÔ6%ü‘Ĉsĥ·Eŝ8œš™ÙÈì+²†S#Ìıħ§oŸG"ÙX&‰Ĝ$G ‰N¤ÒÂĴQ@kğŠTó•‚$|.ğîpMBy½Ĉ{ÌS…pvĠŽSíĠxÇ×üAx0“Ç|EĊŞ"š%Ÿâ"Ìĥüە™]KŞ ŞÒŬĥ,ÖF_tğlpî;À…´vBß@ Rˆgò*ÂFàƒ"ŒšùHĦÀH<Á-D…ĝ1ĥ˙Ċ;¨Oż[ŭ‹Eȓ+3:)G—ĥ8jĊoİaŞ]°´Aŝ„#…B²§bŝ‰AU &kîÛAïHÎâXċRͅqÌÉW1ĵ·ËÓNü¤ĥuéĞ$ċ/ĜN­ŬîÖôy´lâœ\AŒP™ƒ LĤŭ>ıʆÊìS,_vâ£Ĝ]Ĝİġ$ÍÁ”ĵ0Žê ¸…HmIeb ENŽÇŸbü‰ğtFÁÒŻ’ÂKÎ"‹—W–KWÉqĴè?”ħkı”pâ$†i²ì¤ZáFd_ğ0Żñù$ ƒaGÓÊóĈdä ÚP£‚;‚üïżx§~ܟô{ŭŝç~2è“î?a:fSs{ ïܲÛâEbÌ|ozíwĊ'ÙwÈ0xqI°ù·ċĥad˙•ûX³2˙9A§[->G† Ĵ,ˆ/6ĠFn‹„GId]HêeW*cÙfÑ£ÌX·K36ÍYċ^)Yjò˜áĤ•eFÏvb|ĠÙÁA?À_&ÏÖŬÔN§ Ò#¤k{²İ'ŭÉjĥˆòäpŝX)feÊÂB•ĴBx+o_JŻ‚9§µüèÓŻş\: ¸eâôîöÎ6 ào;Tú˘Ó]gè++ô}&³ĴŬ\­öZ-Ĥ·:Ĉ"ŭîÓ̀ɣ<|ÌlĴŸ˘AÀ19ĊÀ]C2iICĞüéA Şf“ħ š£è”œŭ,^súfûxƒĈıUĴA“¤´ĞÔ5’É;%˘™z‡ĝUš*\‚=&Ġ;‚×ɌŝÁ!ċéŜgh|R+ÌÒa ›,ù)gÀŸb*0Ħ$␑ Ĉ!Îr!Ğ€ŒA|[:‰^ÓgŻEùéΞÔZqßx¨EF^ÏÔf´zŜ^Y žĊXùġó([•~|1]Œi‘(BÖ"Ĉ*Zœ @~ċGˆ.4ÜĜ‹éG›Ĝ&ssñC‡ l-Ä"Cĥ–X€¤KŜN9mĦŝ$ê-…ċ…ñ rĈLcDƒlL1Dz%H˘gVo5ħҚÛ/ĵĞT'qğtğ£*<ħgyÄ}c~ÛĦĞLd·l˘S$XŸÄé§÷ï?ĵ˙óŸ0‰>0ù#ĉ³‡†âĠn÷ŬhÊӔ`ÉtAÓ#=ÚÀ˙ђ'<‹Íğ˘­f:‰^²dK\[Qe¤hZÔÂk´Ë4ÑI—gR(fòƒ-wĴ\WeÜĦSHÁ‹loÖ'ù—°nçEBëċÚ_Èƒ‡ b•7eEm½T ˙eö/eü½KÉ\1‰ZJçÎ}`V¸­KY•+ô ş<{àtbœ-½3û\”Ħŝ x;§„Çjf ~}H²>ĝ-,4ğó·‹Ù„d7İZ‹œ>L/ıüä/„iÍ×ç18tñ@tԏĊħšŒIë.fĞ™“|¸Hôö ‚ş}F;_úħI|OžeqP37wŒÈñô–|9F*=ЍIb•—óù(A5:B#ÁR„#é?†8şôŜĈï˙¤TòŝxúÑ6÷ŝeûvñĴžqgŝY!)“ŒÖĜŭU‰³HçK•°TÔ#Ïàs;¸²›dVgNìż!g…„ ݉ĞçPJÔ!Rƒ€‡ĜMOŒé=˜~Û^níïf×Jà7•ĝÛ°Ìtz=Ì^{oŭm9óı(ôş,RÚş§.pòZ*e­ÌÀœ€O~Ŭt²,2'‘ ĜòĥÉ@ Gi{,–füZ7Ii kL L2<A`.zIAòTĤd³5Wys-ĵ`µÍv½OÖïALNéüA<5µĞA>bᎄġ™!FqŻĉ˜+fb ĤHCèzıB ‰QġärÉè(ô¸ŭĝñööĉvœċĞñìĈd6ċ‰¸sĴ`ÂŻ˘ċštHxú˙îżA‚?w †##˜Ħ­ôĝPÊêt-œ“×½_’÷XS~ <ġû³ñ§^Ż÷ëídr˘†ĞŒÉ EӘğğĜΓ3J;d£óŝÜÀ_˘ òÙM&é^úUAûɆ-á/Ög.µ _–ÒĦ ÇĈµÌL¤RMıˆüp/ġÈnçĦi;@´{Âhœ4bhùÒνö•z䙨÷û ğn–M§v67§£ġ Ka"kKŝÍÛ¤áh`Yäğcl›X]רOµ"÷M2òHĉ‘Jà kCĞùòäŭ32ŝ–†t£÷O'8aĤÈzÏĈœŞÁ#›uĤ@.UŬ -Î-§İ%ôS·Ëìœä˘ê‚xarg‘ Ö„[˙Z•ddÊğ=}ä“ŜĜƒĴEIÔt 9fSaZââ p{ĉY&ħ"ä-$÷ûïÁŸbüu}—Ä@ŞĴ~ıüˆ8ŝ½‚  ş1 ˙—T™„­ch ¤gğîÍ=Ÿ°ĝë#RÖ¸/\­÷Ġ3?ñQ-ƒ5Ó'·ù޽Ġj×èƒî9E óƒ8–}wÉ#Z3U?íĊ§ƒ‰-zĦŻqGġ­‘ĥÊiŬ"çF%êŭûô}òžLÏHáü­Ÿ÷?Öì Éä İYİBCŸÂ-żëÌĤÎцı˘WÜĦ°Ê[³Ŭú|˙·—%3pĞ“^ï3ıÂ'%›è$h› GĤôPy$b<ħ<š O–sû]/’ŝ˘†—횅—Ì+—>şh9áÏó3n]ÉE|.pQm4ÈŞ=>Á ÒÎc6ĥóñDôäÉëȘ#u@ŝXĝ {:ŸŝĉĈÌ3g‚äŽQŝRYА¸+‰oĴ÷û³Àk*`’h–!ê1%Ħ‰ì$żí1ŭ$/?}şéċӛĵgòĵßóċŠ4§&¨qfšqWâÒ`…wZ3Qµ³\ôv&j›òë9ÀĠ˙ö-˙ôéSß j†)›|bħ¸^Î,Ŭ8ıÔi=ŝùÍO˙ĝÛoż˙íû_%ك&}xzß×Ñj£â[ıŭ’>‚ĴñôSïv|óıGĜĥ#Ċ0cĈLTlÁpĈ“Ĝħ1cƒĵ:k',zŽ­Ÿ°ċN˙”4ô/‚ĵ7XÄĞ_  nĊ¨>ŝ͔’%:ğ¨¸=)á3·xâEžîíë§ò%P²0ˆü†ˆ#ôgöĠZ›m=ŝ– ù·wUŽPñ41…’‘ÜçÌ ]3CöÎo7·v1ËkC4Ŝmċ~‡es ĵ!5‹LR0ÄGew8rĈ!z·×şÚq)N€+˘èġÌdzKf$}´½µc“ÌĴ,ùgéµħKŭžÈ qlzQnAġ7l üé÷žÄj=Ö,< Çl73lğ˜ÂYYL'€ĜxÌŝ ûSlṴTFŒñ…ÄFBoŻÑ‹eë•nC“ğY,Ĥ½Ŝ§qżG²ívܛ’E/ Ği6ĥ³¨ôú=ìi dqĥ^8‡ÇŽ›‘‡‘úËkĊ…Ȇıħú1}ôˆÔàNʊäpĜsòQ“Y $$Ng3§W×HÖ+ĵ?_ M W´J͇F&WİÊkëJÒ¨³Ahäd“G!Z:$™bp{¨)ħġĦèÈEħ1™3‹ħA¤cvœÊÂj˙ħMI†€d^cÂġŝiS÷zò~-i*Ñ_ÁßöÑò],9÷Z•`˜ÁÈ+•—w*ÙíÄÉàVe^ŝEáëM{“Ŝt2™ˆa7h1ú}Ù,$ùÙÛ?7}Ò Ÿóħ÷nÙyqŒaIÌRÎ ĝĜ-\rRˆ ÔËĵၐÉUÁƒœ†Ò0g€3̛wsû‰ádڟġ§(ĞYLòŝ*LUÓ˙ 9ž‚ñbE˘íŻT·ûÓé˘_v|µ‘ú^ħK!˙vğäsüuÒo˜ıß`K=ïË>#YŽÂ ëHŝ·jïL6ğ„Üpœ÷éÁÖ1ÇÌĝsÜËrÉ).sÜ ò³é:Ú 8Çı?—mBd)ÌKq2ĴñÚ|½IŭIXĉmÉBĤÎ!ÍqÀA‡/i˙c“ñċÑĝÑĦVš+ĝċ•—zÙ<ġÒišÒÁHC-VH´ôúr†›„F>ô ŽyDùÓiD1ĝÁ‡§dĉMĵˆa³˘ßj0Òä½éà=­2YĞ>)”ÖKëàu\×D.Ŭ_&ŝƒò:c‚yàyĵŜžvëĤ³İ™Y;…ÜÍ>bÛoy.ĵќtô Rƒ1‘8*Átq{÷ZqÁĉ­ĵ:ˆ*´Da?ÏĉxkĉkWğġäŜ‘¨òĝ#”'zn“ŽÏH€Ì÷еZKá–ÛM·•ĤI—Ĵ`Ÿ{ĦKËeì2GABġ\èùn8àKë7éġñYß²żÍŝg}¸sDĠs€iÂÁ·Átfff2ÀĴñ“ğÜnùÈ:„PZ·_£!5°|C q€—İC $ıè˘ŭ³SÛ]³5ŒQ×8) WnÂdÎäϤ7˜ô`2€ ´Ù,ïĈ½ ı½ˆÓˆŠîyúKŭÖş€#›Ĝ€ ÍçÇìWr5ÓîuŬĈÜÙ4Ä>ĴŽËÖûŭ_éfvB˘k•|Â÷W0à ˜½ĝ6llŭŝ Ô í†İÏÂŞ#Œó›L[_ĥ.ÁŭP9çç3 É­dG×JVċáĦbĥòjùˊBî?ŝW!a5›`f´uÁWñ.f‹4Ç#ħMwÓ#û)a\; Âc–sYê"—$‹œĵÔqżïĊPÜqáħsüSr İñ·vÙȅĜÇÚÄҍV,Œ5KJ“HJı5CD/Î`€ŜŽIµdÓÙ-¤Ü€3-™€^LDZc;ù›‚ì$˙ÎÄ™}#ĊÍ@Ŭ ̈kÙäÄ-Rĵ ŭ7ܜ{(ƒtÓ)ÁıùüYÖk5#;@ÓevD†)(ĊÜm Ùµ˙·µżéqKÓA„Żà]ĝÊdP[š¸"²€D˙B² şµ—ßE(Ž Màr{ÑÀtéHŞE–Ż?q›Ww˜>é\SXċĤÊÁ°.zB°yŸ÷=Ÿ$%·ÈÛ w3‰‡ç<çŭŝb_@'8ŭjbà(“@h‡Š“%ËXá/^¨,I„j5ÏàggÄz.c˘ġñùĝż‘âCè+ŠŸ>•0üñÇüóç?tÑÂ0yŜĊò ›ġš‡Ï~àe˙á˙ñƒĝ™E ü £íÔj~ŝĴìY¸Ó˙…6ŝEğ9YmˆÚüúumĝöM7 ¤ûGÜâïSËŝĴ´O˙ċĦÑíĊ£˙§E&Ô1$:Á™??üîMΏü“fš2%żK˘XÄ­œ€`)uƒŸ‘=f ŸÍvŭd6ïŭ˘ŠhĥŝnñA|ü LŸŝLó-o  ˘*~ĝñwúïXÙe}#ÏöİöbKH…Dİ.yyv„ ‹è_[ä˙MŬ?˙N0ë“j}ŝ+Ŝ¤:e•ĦQ&+\[İkŸ˙,Ħr)Ş—†z1‚­8i™hYŜèjŽÛoŸ›SNôOۈ 6%ä?H=?üĝż[ĝÓ˙@RûŸ°nŽÔ´ä3ÛYHQú#;×ŝügQÚ̒EŸüôƒĥȰ(ö˙Á‚€ùgžèI$ñψRüW鵪àЍä5„?âżMĵìDCnEÇC|*ŝßBúÉPtázƒ.dv„?âġñ ÄċwĴ| üĝƒÒĠĥ/4ƒ!ĝῐĜ™Ġ.ÊݚJĥ@KX1? K⠟üÌÂÉ úË{Ÿ~0fGŒ„äfùÑ2–Oj>ġ§—ĝ ú'ıÓ˙ Ċö{P<@nE˙iĝíM+Y‚çlÑ FXV·ôñŸ”7—}Ğž!€¸eRħ‹Œ“: Ĵ¸(ïó˙ğX ÉċÏ&нÑëç·ñBÚۜCĠ[•ijž+"Œżx%tżSùż˙ĝ‡âĤhĞ}fRH˘û?*™i‘˙gEB˜Ş|–U³Ÿš2ċRAĞI3YüAӎüÄ!ZÁ>˙ñ?I\ÙÊ&ġ‚˜u+ÌG †L€?R+îĞÒ™W ‹¨PŽÄ.ù“Hâ˘%…JDCS"Äç?ƒ˙˙`Ċ‚˙$yŸŝÌ é$ŭÏü ğß磃—î˙…˜ˆi§‚—÷PÑAqÚòPsc:ˆ¨ÄŭŽHü³}"7‚)QÍâÊCùƒ<üƒâħŠxúÌäüi }ŝ J<ù?°ŭe/àÚkÄ~9pυ‘áV•3‰[Ħ6˘Ċ°$}ÌZŬIÛz˙HX‘·" “ል VŜT1'u¨#hYPBÄʤfúGÒü ÷e'" Şêˆ- N·šŝEH˙û80—°@ûàw?ˆŞ&“ü‰ó 6I˘eŸA÷?¢ȅ%rŽ"ġ ĝOôftošd\ü™Ï„üžC(ùüyÁġwż×Q˜wŠ1˘:U˘ĊÚOLŭoƒÀİş!F@bßñ¤NnċlÔÖ¸úôùâ²%4Ïĉ~3M2ÊSúQĜÏg’ŭ˙@R>ûϟµ&òáù „ä˙QoôŸ>ĵLâÄ4ż$OQV‹°Zsş!kżÇ 䐉)f,âaˆyüñÇ< ²eĝÑĜDhÔ?òÜCúóŝÈ&ä}¤­ûù#PüáO" (Ŭ#šÏò_ÈMûhRÎÒ>iGKMĝ›0+Gó”ۍàÖ ħ4ŽaÍĤŭcĊíâ ­r•B˙r4Ğ2ŸáeİaŭA1†„—,"n$D¸­Ž¨Îŭ_ĤŬİQ‚ĊÊgÌ0eŝGmŸĝÀ›V€Ĉ÷éƒë†˙QĜ*áĉO"O˙ ü…”¸ÏÄŞM§ü ß~€íŠWġ…Ŝ²q'büq÷ôïÙ&5J˙ĊŜËé@½şOhŸÑ+HÍ:–é= t­˙•ùŝg&~"Ŭ0/béRÖ¸XÑ ù˙ÌñŞĜ„ ­óXÀgĵ+‘h.x BÌ„ö·~`3“ĊOÄ/p)ɐŸx7U[ç UûelĜ3S4tŸFŜGĉl„n››ŻĴÄ#´Žœ–JúcöÜ´eY˙ÀîB%bbğÑĥĴÈAgX˜Sż‚#*Yè îÓï@¨>(Aƒy3Ĵ€L!dğáÍ£|y™‚l’gBK‚Ì‚œĉĥižc’§uÛĉŸYĜüLxȒùÌ÷úƒÈŸĝ3U€½™b;Wâ}@\EhÀA ? ç}ú£ò@‹Ŝ'ı=²ŭ“ğ›üž·O›’“óöùܰÄĦ‡sv³(E·üvR‚šEÙY°G#½÷ÜTÚŜ—ŝ% ˙èéħ„×]×E;˘I–&+.˘€£ì¨Q‡ ÍÌäŻi>3cĝ'ŜÛ?€Tü‰MôĠ?jġÓyÖx6>˙AiüÍĝŸŭ˙ϋ·oµĝĉÛïß~÷Ë_ŭîWoß½ŭîoûîí?|ûÍÛï[~÷ËïŜ~ó‹żùîWKúâí÷˙oWoß~˙›ûûû>\?w÷÷‹4M‹ô}Š?érżXdûeħ\ĤĞû”ŝNÓ˙œzġšÎZĤŸĤ:mżH÷{ú³/ÒĠ~•û4]ŭoż}ûíâí÷ôŒß|÷›·oóö›˙ŬoŝáğĊwßĵŭö7ß|ûŬ˙ċ7o˙ĉíŻh‹˙ĝŬzûËo~ûÍ÷oß~óŸ~µ|û ˙ŝ7˙ᛷ˙éWß÷Ğï~óŬÛ·tÚÛoûŭŭßkĵŭĉşŭŝöm\ĈÜA”Ě>?’ĜNÛ‰Öşe÷TŬ”+şäÛ_ÑHŜŝòíòíÛ˙€ŝöûGï˙ż£}÷ŭ÷ß~³ĝ?}÷ŭ/żY,~óßüêWż˘gá1ß}ûö˙úöż˙îÛoñËê—żÏżûĉûĊw˙ö—ß~s˙öğż}\.— š”Ċ2\,éo|@˙­IZĵ˙×ĠjħJifáûĠj™îiêh†óżûŸ³ü›ßŝê·żúÍßĵ]ŝ§·ß˙;Z“_~÷ïbôñ~&´!°–ûÒ É‘êzż\&ôŒ%D½ż£e“ĊğżOqì‹ż£qh,÷Żïħ`´w÷a˜Òèñ÷´Ú‹×w÷ï˙~˙~Ÿ.}{˙Í·ñâğĊ·żüÍżû†Àòmôíóŝ-ĤŸfç7żŭŝoùĠÛĝŝĢ~˙ŭ˙ŭoßŝêŝö7oûŬ÷´ÎżŭÍwßŜ½y… ŝ£ƒŝ2żz5Où?üĊ+ùEŝá+_ñ_rÂ+uü<{%Ǜğğ7ĉ&ĉò7úéö3yò+ŭDŭ8uúó›úY[Ŭhf ŜżÓ“ïäŠÙĞŻ*o¸ĝŞ)&&ËI| ş}h+’´4^-Ġ ¨gêùP3ġênĈŸÍœ!úl=Eê7úföf6Sw432“÷zc߆î1“U¸“{ŬİÙ2s gN ˆı(iıEĦ"ıèĠö¤ÜœÓž*Ş•Ü S½Gı~/ƒšĝÙĞ;yWŭÒzĠïŜèuğ“göuÖÌ̘³b4tĵÂ?ŻfôĈwt ú³~GsKßÜÍxĝÓ)NbdÎîè‹Ĥ˙Ń?ïtı–ï-“ŽŸé˜âĦtĊT^öÍl:Ġ>{#`‘K żrê c|ƒÛÓÍj3^Ñ7òi p£/f:×ĝ SyÇ/şĴ‘mĈeGX0‹òâPe‹É’W›2oN§„Xò{܃_ĝM0e|kÎx"éoћ`öf: îĝ}Ú7‚Ëğ™s2OġŜï‘hßÍrñ~q˙°\>ü-ċâñŝŝq”µWXeĞô>\ŸX`0ĊŠg< Ûòĵżáwâ•ı{Ä{@ƒÈmñġd’B½˘i éì‹ĴÈ dpħŭtŸ —°€ÇŻN9›½ë2HċÄÌħK£•“'QEBéŝ„R„M}.Ġ&Ŝ°P3À³MË a½ùĊv3ùO~{0x=ôӌÖFïtÇšMßfî°ĈXÉİ\ûJŝĊ̘°=<übv÷‹‡ğğ˙Žfôîġëğ×ü7Ž_ÜŬ}}÷0}¸ğ¸ŭ¸¸Msġ@d}ñ·éjùp˙@\zıxx÷<èoß?ĵüġğ¨ î‚ÙŬ4à9žÉĝïdà™F<ċwÁjÒy„µ™Âĉ\<ς@>’ħOċì7xë¨YEá½hí+˙ä,`UÙ$ʏ$0Ġġ²D\V}Ĵ tS}< ƒ›á†r˸ħ # ƒßaŠÍt'“ÊC–]@§Ü¨³Ù{Ò;”%}BŠäż}"ÎI*ħ¤rr9iäbĈFñà]v2ÈèŜŜAJԙT†^CşmB/“À’œ'U 3ÄCP|.²ßÖ§¸ëŽHšmógÎà9LJgŽ˙ÊӄŝCéîhY ĥeŜdâÁ FOŻÈLÄô•^Y8`€³h^ß0äpúL‘À€?Déß7ŠOŻ‘ŭ=Ġy3 †€B>™ÜĴÊF\şĠŠ4|™+˙/˙}*Iğıażµ„(ԍÖ=`t:‰ż¸˜É½ ;Á45dıpÁ „OÂ`ïîÔ°ù '|0:÷+Q½R ë„ w…Ħf¤ĈûW!/‘cVh$‡Çé×4܄áÎĊ£œñÄżáy!°óèx8òOàoÁuSÉ´ĞKâïéù(‡!!?œëgÉÊb¨4\4§+1Á3Ċ§‚à•ZVF=V:ÓµmSİy/cô†2 çAán$ FqVs6O· Gn6ÜôânàO}n›’ œĤÜè ÉÚ9 'Ys>vŬIĤÇğ#ïxŸ3š³Û@oÒ7r‚ìü8•‰xŒ/™QĦ˘òNy%$ìQ ĝFVĝ“ÒWákX+yäŬ1G4BeXmıܗh$ú$ s@]SB‹`#L >ôú½Q‹|ĞöİL˙-¨ÔL03zCgż‘“1Ĝ7·ĵ‚à–ŭ†ïöPĈ7Ż%½;\DĵL(½²O’E¤ÚVDŽĞÜѲĵÖò„i ĝzsĤog_OïnN@ᝐ@ŝûâVŜĉöko 䛯ßĵyżçèÓTĵ iU?„ Û˙죭Ĝ}KĠ4ÙQ]3}¨kyó™şólšǑޠs\Ò=Ğ×lxáÚùÍ!I8gFe}:wÈ3‰$pîÜ%(½ßu÷ı&~+ˆFÇ„˜´û˘è Pż (Ĉ½à OjŠdÚĠ*ñ²– ıĵÂo s ô ÛtÁ×|˙7šŒü„_0ŝDKš³ž%ŸÑÍĵĞŞV‘@"µĈ8KZİâN(ŻN ÑŻ?şġTĤ|jfħ8 ĥjŜe ú X€€ˆŜ)baÂUïËò=.Ĝ:¨ğe&p+R“ĞÇ0S'0,ŭYV·‘;áÓG)ĵF÷MÈ!ï w^ *FIŜqe—FĠŠ$X£†[úÌˌͨ%Ĵ=žI£x/z[)Ì8Y,ıcÌ~˘{ûŻ2ŜbÚJȕdP^ş•úÏñ³dšdXzvŞ‚ĦÑ–—‰DĴ`]j64<ĥîâè•x#˜Á_O)[)`9EĦ <ëV ârĞ×xĥUDVŬ7\ ‹HÓ?°à*CÀ}] ĝ`]7a.â_Ġ(ÀIÖAv”€™î£ìYàlŝéÙNö½xûßê_·òfğ•“nŭÉaù•Ï[fÑ=ƒïBà2lĵJ¸ëŽiV˘ 2‘Àĵ3:s§3ŞIħ<ñVDe=u_zÚÜaËÒµħ ġDħĦĊ$J˘DIo`)‰ü˜ÀÍ*ôŻ.Ï­ÄċIQm K§ÊòĤwhİŠ‰Ë×ÈíÌğâցáTŭ/ïQgò äÈ<+’ĈŻÈˆŒ“#?–Ċ}ÍÜċV7·[óm 6Â×ĉYĝ ` $îĞàÒ@)J{HU¸D]ÓÑhğf1äŝ.iıf"ÁoÊ÷ğUo${@ž^ĠĊŝP½h"ԝn2ĉïÉ Ràƒ³¸iÎ-=ĤVu£ÎÏ1Rs@˙UŜ‰XŞ–K˘'D†ËœVµ˜MŻ,­ğ3y†|zñ7s‘ş˜aRߘe4˙.„梆Xüb^úžŞs},‰˘49·7Ùq@Ž9P9DĦ`­È9ô`·j‚g3=Ó£Ç×.tÀk°ˆ½I˙.£PµešÜKÛqñ$&Ĵ€F™aċù;ıÑÖŜŽo& ŜjÒgĥ;şŬ MÜÉ'_cEH‰vŠ+‰>È£êdî›pĞĵVoÒu˘Cm›ç¨Ğóìż{‹w½ċJÁ‚¸²$O²‚¤K„ÀÖ)q\|§C'/‚&ÌĜîy_s˙‡ 1“ [ ìHô/FNq]²Ÿ‚Úŝ[‹!=D%Bß‚rvĞOáÛéûY1EíħÙ×_k6²Ġ¤†Ñ}Cŝ?ÖyG]›fŒ&6d6'Pż<ŻÊʟt‚ˆèğÓ)Pŝû¨6ÏV­ô̌IqÓİĊ­")÷Á‰× èëÖ ó‘İzqİû_‚™0}ĦšÂdÉ ä/·ò ˘-È û-FkfYÏŬítjéŻÜ×ĵZ˙ô6Ĥ$ô~Ù2T‘‰b&À4ĠIĈY[§*g+Ì;û>ò]˜;ŭĝ>NÓÉêż_Èùu 煔It“saSÔÖàÚöÜuË$–‡Ĵö2ŝ…ÖJ°Ŝ¤$.ÂŒBĦ]Ì˘bEÜa~·z ÚÉñ§)0ôC{:Wóá@–˙ŜYI{·U‹nĦ‹Ùó7·³!$Ŝ3÷y|’ç ü·Ş˘#Ġi_Ĥ7‹(Ö院§H–Ĥ„Í;Ħj_ÜşĞ  7Ñ­Ì>ÍĦQôûΌ8!™Dş'ŻżâŽˆRí€äĥ{fV Ħ•×ĥÄpS£Ĥ™ŸêßXĉÛbÎÌ>žs̚8ï‚÷Dil{W÷„?ˆ"îuŒ8 ~M2‘$~¨¤Ü΍ µU/ĠSA|Oòž´;TœéĈ(ħ ğR}Phş H8ż"fÏ­]Ïgnş@żPZ4ç.uqŜÁEÒ­P²myf˙;Sp´a ’ÊÖêÄs³~ê'%ÒnwX7eë˜Î{ëfžĥdF*ŭĈ!M˙şzYJáĞŽüĉPWi²oŠìp¤³JN:G5"éI-…‰Tĥ†ÈeAWf·v›Og½‘` wfÏÍĤ[Ü­&ˆ•ÛŬĝŒ¸”ž´D„o ”XĈĠ ™˜…ß1Rô…[‡×2eċċŸÍħ/n{ë ˙ÜŞTƒ¸eÛĞšñÇ$â[\Œ.4qĤOr›HHWXĉœu:0z+ôš²…²HH K´hÎj]ë/ğѧ„Ze\ Ħ†^U?wkŽß–]‚„¸ÑˆWCĵ҉@IZ -ħ•ÛÔOWçá¸j·M\şÖkÄŜMFĉâÛ²?™ÌàQá3B]̊³‰t@3ê:Wy|¨ö§í?8¤ĵ˘—Ġ‚?ÔçN{tjùÑ>ÒÙ<C×ìÓĠĤıV3êİıvĤö§3Cf·˘%˜k/ıÀYIĝĞPU “ŠĴ„–›î2ı$áEÀS>÷}ĥb÷Ĝ =ÛÙ·ħâ€^ם•éÔu lˆêë'x 8°íEüÚ0âÈ@è£z EӘfÑo×ŝt+hóĴËéüݵħœöû֊ށÖß)-GÚ´%‹%\µšççŠÄvUDZ*Ûµ`ĵ7/Áâ˙ÎÂfÂË|Z’*—â…eH•÷ˆKċ^eV'§ús÷Öê™ĜoıŞÑó°AËŞÎË$™ŬŬw÷ww³_ÌîpğG<~§çBÛĝĉÚöu`v5t‹È8•/s6Ÿé5ċġÜñ&›ÊGş[–nŬû/ĝ;•œÚ&Ċ$‹`)çĠÀ_ƒœQ6êŠĞżçl$<²ŝ7ßx´U¨Ñ#çµ 86B+›Íogfċ…A Xtú"œ8Ͱ•ž‰ŞóáRvñÎċâ[E~Ġ„ )œÏí,"‚j~ĦÎÜ .ùnĝeĜĵKıáŻÂ_˘íÂ^²/éżçĉ\W„(jU¤Jë  áż|KŜŒòš`S™½)Ż1ï^EŜôì_żûĦç=ŽÇû‡Ċûeħúx(~Ĥï~˙ûôğà#ÏL CĦÖÄI–"†6ċ*ĵOb^˃yŞÚe½'yÉ@/>3+h†ÊFŻDcEöĉ·óݵhbÑŬ•aĥ†âmĥÛ-˙qF2ĉ'ΕbÑÔ­äAMınbWĦü$éÄ%Œ$Cwħ“¤à×-³ÂM ^„Wpg,™[w`R0ŬóİŜH  wr›[ÍÔù⇭/Mñ5ÑAħWDKyâvçh0só`@³ ´uĤ™·­ĴŭԎuĞMe2µħVv\v@Je¨¸Ë)—qGŠA)Y°9ŝ…* OžÈ“~ƒ÷+hö$iĈlžAŭûû×÷÷‹ĊCŽ€™Ĥ́¸/ò0Wh̄żÂeĈ’ÀAż“ƒu3?²-e1Ñ[™áimÖ[c,œ™Ġ—£/÷‘dÌ[ùA§˙*üĠ(>îdž‹‰ıC('|ÙÂß?ŠrR&ĞUN|—ĜnsŞHÂ)ËŭnğÓtŒ$zÍ˙Àí… î;Nb‚Szó‰ĵ§˙V‘sŜNZ#QZ ĴĦêp•B ĦoÁ.ĞèxǚIĠNojc5à÷ŸmĠ5ܗÈAşv'l*\ċvê(U„L‰u žàm/—œù {6ŝµu~>vm)â‡=ÏZü`†ĥa·K?"~ŝŭûĊŭrŜ³k{…ĴìĊŭâŭò=§F¤û8Ϥ++òn`n£4ɇĤŞÏ m ÔdıLD/J€? ”‰dA ğ%Aħ0OŽäÜʋ;È9x}é›9ÎZƒCCŝÛg­H‰¤Ĥ MŬœT‡8¸³ò÷ΈIáĜ)ĴÊOAXߚi/– h·½uĥ;àXċ÷vĤĦ£EtQĤl¤Ÿ 5X‰€ĵ™™ElŸ4Á™ÍE°šĞ™]o…îò̆Ö+kŸŞaxëN,ŸëT%à)ú'Ğ €ÏÈ}zĤġ>DlÖïjŽŬPéÎáGïuÓí’ÛÑ}Uв’Üò#\U–W%wrĞQ(FĈ­ÓnbÁ_ӞOD`1};"Ê.D|ĝ^ùİ …¨ƒÀu°~’· o‚ÀĞ6Ĝ“%ĈŠB*ިDV GˋfÛ`ĞÈ*Xöô­Ùú†ġ_{³pé {Ĥ—SV••$Ùa’sÔ ÓÇŞTċQÑHѐUËҕZµıü˘eƒHƒŠLê•ĉċ:à-à§ĥßT]ÉÒ­#Lç !żx˜(O,.d›FµYz§‘äoNM+ñÙZHĦoƒ4ÇZ/ vÌğwï~ñîŭûߝb–Üß÷XüċX*Ŝ˙kñût·û¸“ ™kbŞî‹ i:é-Y×IŒ´Îyuġóùt"ĉMtll\RbÄ7hÀU‡/¤zvh¨ĠaĴİAùO!q™ ŝP DoO5Œ§'ġ˘x˘îB ġŒ+¤…%lŸv‡z$żġ R2çâü8P–ĊMäáO ´lxn:ӎş)-l3ÙM8‰ËV:}FkE.qäĜ´]Ħní^£O^†ŝ4şŞ€ŸĥĊiÔ0Jĉëu ßvML³–ĈĝMn”3îAÄĥmŝì´ŝ>÷´³ÓJżiigkĉşĠ\hĞEĦôĤ!â{7{¸SÇŭŭÍäġkG½ 1šĊä~1ğ˜=<<ÈÊÍġFÀ`ŒR´ÊbԒ†qŽĝi“*ĠòùŜúXExžşö›ÉbÇ_ĥbïj˙mv45; RĝğQtp‚ŭÖ,ˆžô’(9—ĊG އXÉo+\[é…[á£ŝ´Ċ½fD˙ĥB‹ô2Ì5[YL|ùOJ]) ¨›‡vHëċÏ 'ÉIĈHI„Z‘LÚĥzíí KçÒ™Nµ˜·ġ‡jˆĠ™_žy§ퟋ…“ĜĝZİ\žh0äĵ’ŝCúdyŽ‘÷nµ˘ä\nĈlĝQ FÀéü‘ċ+"5išÄKîaF*hEĉ$B&/ċĞgñò,İŬµ*“%ş7äûURä\W³Ètyƒú™@Ž]#ĊĞ>#Dáĉv&Ü4Żìġ !İ ĜéÔdŒ0ş×"BĈ-|ş²9ş@KhZÇö–gĤ‰ġ\ğrġı2eĥŬk!}+ŒkÊâ²ĥİ 6wdÉÇô“Vj˘ì/,2ÜıUí.UÇl–›9ż]—˙ÍT]J-ö‰ç­>rÎmÓŞh“™›½gŽ7îñÊùünĈ&™óúŻ™é{ÜÍt2‚ÉË´Ù˘oì½ÌmmŞ(>}£S0u†*RÔ-„†=礵Ġž¸h^ìWËċû÷Ë×wv’ßÈİHŻf{“êqupb^³˙*G]ċ‹ŞiıHs¨ŸœáKöb°BHKĤŭaŞ ä9áV‡8?Hڇg8xnBU"ͤ Ow›‚œŞşüĠ‘вâÂÔ+9n·˘ )´Lb›ıİÚ B Ĉo·sqžwĠÖDܒ~Ëç¨xê™ño5dƒ{L,ŭCÍżŠ_×ßĉû }‚öUĞz´*ŝ€ÛkÈ6XF'Ùö•I}ò,Ġ Î\’#*ĝD4‚ÄŬlfQ‹,M{½ĝŻÜäÒê\\$ P XoÌŬg3 cÜr‰„<ĞV{&6H;ĞÌĤ€1½,ê#{uˆd¤ìlE %)¨ïeÚ×áá/QUˆ0›%Ûûš<›`†ĝ¨Óŝz0xĉâmżdE<„Q‡’BPµ…ĝ/—Ëhhö;X˙Ğg8sY˙M‘\ę!5Ó?¤Œ|#1SĝC ^ÚÇC²Żšó ĵ%۝²0l5!tÄ9m˜*JİĊèÖ1÷\tSÈcD/Ċ½5 t„ħíDµœpĴVRĜÄnÏzŻò<£lSZ´_¨µnÌÒ"è`]+[5Â;,8 ‰1€4xıcrw' ÄîN²€gĉràXQEK'ßX\ğ)Ғ´ġŠoa Ĵ"XΣyg6‹-:‹R$ħí‘'ÓìıEñˆDcî =âŭïä­ĠfŠĞ’ô8‰é_Ái˜û˜À…Z6`?ŬMş;vÏIœ‘üC ²09 ĝƒmèw(ÉŻİst“ —D]sôĦÁòjB´ĠV1 #Ħ‰â*:Kmڔĵ Œjnŝ ĜR5W ³,ÈÛÌ×DR­÷ÂCI7¨9˘n•RÛIŬósÇħŜDĝˆŝ…ÌiùëVu‡k~ì³Kî8TŻĝ]AQ­7Ÿr bEÔ¤ÍùÖÖµEşò˜aIúż¤ÌÉŭŭTÔİ`ÀtĉŽ“VeH„?NqLháĴ‹Ù<&)ʞAŬŻ[Ġ†Ĵjê,ndáÛLz\żç,’}Ĥ{oAĵ—àWÎ~£µGîQÎaŞşˆRÎİ­HB{” R`Ĉü‚äżŒëeŠŝq„<ƒf›'(MĜÍŞIĊ&ìòı£ÑÇL˙`Ġ#ô4l{vn›„˘wQb"q²Xôô=?r·Š cÙŝóvµ;y·;cŬî,ï´&bĈSËA{˘µħ˙m•vkC0•&ETyK ‹hK‘S-Ġ1ız'ĵ5%xîêĞIHôm4göĴ54eì: 7RÒAĦíNIï ŝ”:”AUS´RïBvĦpßï,‰'‘l!¤4ú‹6…“ Fje~ŭƒTz<˘ùÖŠr›—ge#Ùj­_áI[(˜p­a ÖÚ ˙€Á;êz-3šìÍ´ĤğÓPÜ==ıŠâÎĜ"ĥÊ˙‡Ñ}´¸Éı§ŝ”ŬÙZĤC×ĈÀ_Ġĝ™"ùŞL~V0µB˜ÏŠî̔3y%¤RŞŠÜŬ9:ÉpŠŭŝ\ôÈl‰f´Ŭı‹hœÀ( ık(ù_jDU‡2gıŭĝbtxĵÒóê^Ħ/áċ+DxùÓ Êé,UAEÓĊqW#r;2îÎóÈ£|àĴž…ż8ĵç45¨ĵ É­Lx‹âctŞ%)AÌIƒŽe)md .*²;dgÚWvŒ?"ĈJ"‡¤FäƒÂß 0 À5 Ҋ`·Kwϊ1Î[ŜHTPBğFZÙ0$hëÛÄQIL÷ééiĞeAñO§SOvÓˌšÏ^ğ>m;4öœĈĥ-}Îd!ü È$§†Dô ĵžÏĤˈcöĠë Ñ ?ಳöš:?i²ç°Tİ)˘Àv73ò™š¤’îĥÑŬŬW›ç•’z—|هà; U^q(a;f‰A!ĥn2Cë m.…˜Ÿ YW“˙‰ĝÇħYĝtDÌ· oëĥl“H6#É÷YGЇxO”.YĊ‹%*ê%Ê˙!Ŭàą֨ŝG$”vBtâ9Íèuw÷ĉ•+màÇ%‘şò ŞIîCKÊM½¸ ֑XnŬ˘ž 鿨}w~.Ħ÷NB ¸'TÎ'¤´‡xl­à×ÀTš˙ı(ŝµÈI˙é§â_vJŭuüż œ[ߓĤQ6x`=§ä;ç"Èéĝəf`ô(ÎZ‚Ü)g(Ñ Uü}§é”rÍ} ŝúNLW_}ġjoJžj*–Mה§NÔ +àĊôÎH}½h§.Ex#ŒI´bİœï12-ùÎğ$Ġ€ËĴTÒ­Ö‰hT2Rp>”Ŭcü)ô͝áż|„‰×â_¸ÄzÙ·-‰Ġ>kâHÊ8ŸYxVô0Ĵß ž’PëżĴ¤ Ǥх49E„>„!DÊGgg*E}QrRyÂQ}ċ"Òµ t–Fìj ⚔3Ú ž)mšĈŞ"ŝ™è´^ÍǢ@ġŜ˜ôiÚTËtħx˙î} ²ÇI6&NkĤe†>ıìR³\˘…ĞÚ ½µ.­ˆ)Û~g"·ô×B@5ŭƒÀT PR1SÍ} ġíâĞ››Ĵn{ĝëš#—ŸìN4OwÂ[Xú×ûÛµÍyÚħùAL2\ĥèŽ 0ŠċċNÑżà.‰üzĊˆèħqV}ş8,ShO*GŝlVŝ^â£ĠVâɒX0ò—‡˘=!…ĥyn’ĠŞ>1ŭŸ²ċ{ĜžOU /QKW Qĵ²<eˆÜŒòîÎĉ›‰VôH²^ŞÍ/EÒYEâ¨B-i.—C‹ŝà˙Ín&œoŞKòV- ĴuQK,0÷˘lħORœ.Éö\]ġ¸CÌÙÜâeĞüÈFÚ> f” Ĝ×3ƒüŽI%ŭ1^"ùl§àĴm&o{ËĊòÉ?!ꂔşéûYXŻÊˆo7•?6…T=,Ò÷ïßżç ½c ‹‚Ò̐7ħ’¨2owRëêċ€Ä Ìë1}%•Ĝ”E™ñ×ÓğPH`˘ˆá=~o¤ƒQ˜h“c>!ŭšuPŝ4oÔ8‚7>ŭ'‹ ‰]͙iCÍ<×ъ$â,Rì›ï‚ =îUäi„0àżyɑ˘0İż $&P̄@ÍġeßżQÒħ*mq qs'ŞŞ)ë*""z*Ħ8wqSI‡ÈÓjħxĵ{@XLjwbá§bžàŻHJb §Ä\3&çŭĉ'Ž`_ÌHhF½x÷$HÒÔRyíċ›ŬV‡ÍîĥŽo§ħ記ıJÑGžğ7tnènîğ˜”H4·ÔϖÂïX`­Šn%Ĵú„9gœ-ÂĦÎjmlTBû^ĤÓıŭĈŬpúç%}fÛhŸ-ŝšoı›Â·ÊI´0ˆĦ°a­ċš ĤçG7‰²â€n´Ċ˙›´Üİ{ï,ĝÍP•A ™·'ı$Xçá‚ÁŸÂ` ŜèŬ^£…˘9náÂHO€ġ™+8•aE³zT­ġ´ËÔâNƒTŞÖ($E\EDH ñQdĞÈéâ£Dğd˘Bn÷A¸{·K?n? 8HÉ= ŝUµˆH'ċĠak4„¨ÑGÖg³6Ô „‹ı&ò@ĝ!‰"  àÑX£µZޝúñI{×·:ÖREŠ@ifÍĦNôçáa†UCówà4żÙWañêĈ;0 A´œ,‚wz³˜Cëµ ,ƒöu@ĵĥEiŸ¸Ĵ$|lpl\I4ŭcmDí’*ßCܗv‘]âjDfÌ3´Ùş6‚ġŻ üâûˆġŝYÊİҝ²)k%ê*uHÍàoFĝS¸4\eZ˙€*Œ’ ÔPQ×ĥŝ°·Sz§À09ü›{â!…²ż@ü+rN#X-î'<ĥ'-Z`•ˆ“hr“ÄûD²wxZVñ~ĝé#Yn”³’êA<%­ĴB Ü[ĊVDĦe§,u[-·İ fÀ;áĊF¨ÈqósTŬ|Ğé(à˙d¨İĤDD$ËşžŻá|§ÓŬ\=²Ñn¤ħ>8NR˜bT‡ŸHM˜@ÖÚ.£zg$)Ed f€Ħ/šk’¨BµàoI³|Ï4JÁo Ş–À ’öϝ`Ûqwş>pÔùÜìÑÓÏŜZúŜËû8´â\KŬwġĦ;Ġâ:Ò?:Ó×$HöFjÜżaLdÊêl‘İëZè.ŻŽXl‘ŒÌv§Âœĵ49—°`²!„yÀ‰XĞÛcZV°>ċĴ­Ç7aR%@ϸ:RîÚċL7Ĝš‘5GĝЈ &i —Ouìô6הBO ŭùggk7ÌR*ħ‚˜ĉu†Îš k:£ ŠVÎóġcµÊĦ”?X„}!ĞäMĦŒ“{PoÚ!W·+ "î':8qlB ÜalÌ{°mràáĥ1$†Z*À­7PħÖ&Tbc—Ġ)l)%À#yzĠAĵ­ÀH“U!êG´6ÇTҞZ9Œĉ–˙Ĉ giU„+x$liHÖÊ9³ü׈´Ìu+ ;¤€Ày’qÂ{˘’’Zĥĝ.T"µ w½>eäĴ*Ñ9ZĈè4&dh뵐ĈcĉÍ$v•'‘Âb^˙½ĝ vİ(>ÖÇ*·AjX">ĦR1™ñżi‘oJ*8Óĥ½Ĝ-4ĵÔlBœsĵÁN“FĊ‹·O;‡Í§>A:.Z1Y"sáxPV‚ĈŸħQê[V½–ĥŝÁùp]í'š`î„<¨6.äA³;´ÌÈ£[ŻĠË҈1s+\€LU)dü)ö/n4ŝHx= ¨ħ`šnòz ĵhĜqCšĤV" Ô­ô‡M…~ú×TjĥÀµ†ŜuÇZŻ>£V^~dÁh—kï/óïP˘LôÁħ/Ï53ŜcÛä·6ˆC…d_¤íM,q/÷9×L*ÀyiDĜ[ÈñCŠŝ*ÏVûŞf-£'Ħ”Ô×ıĠf×ŭTUNĜLè^CĦşÀÑmiCŭ$ÚÒ% mĜ)üÍ]¨LġşÙÓÄPme,ġa°µ"“šgĥeƒŽ²)Úl/Ĥ‹%,Ż!Ç\ÂŜTUÒĜ. Haᄿlż¤ĉ8}ħËh7önĞǨ)²ĤéF_/ÒNŜPt‰ĦßBo¤­–ŝñïG*ĥ0·” …Ĝps39pŭm^ĝFàsèŝ[*ÚN۟Wì´M¸Œ†"‡³Ê’#Ş:-ğ,fŻÛóı<•$Ôu*ʟÑvıĝşŬ› w˘Üü’#Oûè„òϒMS—lX)*vIÔ'$VrӘ2 XŬrhÀ˕äf/24˘†ŭ9İıœ%‘ôĝ›´Ĉ’í…ŝÑTœö ‰ĠAAÄ‰WM‹)Ö5§—ìĴİßLz aKóİZÓ­ÁĴ LP*TÙÈZ֒ġ³Z´Yeı€ÏÉ‹İ{ú\œš:Oš³ġzKë:m4âŻ.RŬ ôk0.–r€î ŞŜӓò6N<™Ĥ‚:Ĉ'0 EínÚ ŝäH폴BĴíÚ½ĝ9 tM"4jS8n&ég’<°A0"‚§[‰”݇ĵ>’ ÑYM˘gnL†@şw,ç횃LċôSĝKTI6˘‰<öäóèX!÷£C9Ú Òx³‚Ëè–ÇşĈš#ë ûħ¨Ş.@ĉh\M4ü”qŭósĠl57JsŽĝÖL+‡2=HÙa‰äĦFŒĊñüĴړd°µáT İ'×xÁş…Òú90`›ŸŒ];-K Î ÀžRéĉ;“Dşuô˘ Uŭ y \áTíñ’ĈìL›7WÙp§6œ ùŻ86ù ‰9iĝÍ×&âÚtĵeŜI,˜BÂY9Úji×îœ-Żĥ>’Ĝ=WÇ­ê›ï4#™…F܃ŝGFĦ,ĦŞ@â=ĤèŒR‡N·ĤŭÀm€÷y÷.ċ”#|Kñ˘úĞls*Ɍˆ™Àƒ¨£ĜJ µg„Ĉ$7‰ żœĠmb„öl%ĝKcĦƒ‡²ˆàѐGO2z1×ıФ3v4†˜ıdkíy*tF'”ŜÊ4˙SK·³Èùf#tġ°Ŭ¨ĝ÷H­ö‡SfRÎiuŜ=‰$ë3#QAZM­ñ×ŭ¤hÜa]Ġ_Lo ü³éŒOƒi™UäÌÚa6_Ÿĵ Gèßê0DŽŠ€Ċ‰zˆ3Ž rrŠÎ‹áxĥ{‚KÄpC‚ĈDGŠxĉ Ĉï'Z³8:!–F|\‡7Ä.O£S§Ê1NÑf^fG"aĞXĠp‘Šk邽6%Š·ĞÚ&Î[Éô"àĠÀñwÌÛ.O—hŞÉŝQĵ ÇS'•†gH§y2‘"ú& EôË`²<*I¤ß4ċÉ%_Z/°~MǨK+Žı×֚k­'YË˙ĵ5³-~lX—ÒŬJÌ ‘ò£ĝw„ŝI‚[…CĠŠ^OáŻÎ–ìs8éĉӇN:žtŬ_ĉ’+dmÌĤÚèƒGd ÈtƒPYUĝg:Óµ‚µĤâÒMmNP$oâàoĤOO@$IgôFd“ ^`8u§L'ÄIEZŻI H â²ôH„˙(\ä ~òz§ĵÊ˘sg`ìg~ÔQ‰?ù^)ûŒ€…˘>qĵ=Éc%„ĵœXâİ$6‚WİÑ.Ye<³”×TÑż/¸F<É´Ħ(dí>ÒQ¤ï÷Üĥ@ˆœ”Ĥ 4§Žj­|ZÀ3ê°57ğDOÔȍùSĊq%Á5k*iëi§ì0J |“àôµ+U;y!×:m&Û D“Ş9&è@ŬŬ0ŝš„û˙ÒMÙ [@Î*sÓŭdö•ß6{Ç·ŝşC´iîÉĵ­PkIġ›ßŝÚÑ8 TNíëZİ@қ‰ä?ŸĜ„Xy}.Q‘@Mó†÷‹ċJÒ3VdI`ïYœĞĈEJ’ìž“HÛ˙ŒÚTÙG6Ûîr\İb2ú̈́" Éi’Úş £mÚc‘Ç(™ËŽŠş ŒÓÔIf)IY^TĠôvI+]B`%єĜiùlôğ‘Ċƒsdî@ô@°í€ûèñŭ=;X1Ĝ_ïv{i!Fg-!‰ÇJ%ÚËWvUD-Ñl—Î[oĤsu‰èÛîĴ=ŬbMœwFÊtiĤz6çĞ*ü… ۘ;§ngËÁÎ-mĜ’KÁŝ9g/0m2ùÒt&,„§ÌßFÜD ÔéTĠ™ZÏ4Áv¤ZëŞÑ°_ĵş£tĵë/âŽR1ô[ñp=sĠċœôßRo'ĝÄóšïlĤġܘKÓôq5Y² ]˜ä?ğV ×çc÷œÇ$qúQ,1RU^pŽ&Ô\8í“#—*?m“dÄkÛ0Fĝ ħŬCFÚ)ÑŻ*;OI8YĦrŞó™n‚}›¤Q˜ìŝÁé‰(`Ĵ €L$Ù. s\ċú´*ôğ D~ÎĊıˆ/ïï'÷ÁçğŬƒùÚHJÚçicžkmä3giˆş2ĦÖMĥÚ,-PtŒÑFyz2ŝ lžµĦT8t5?H6œ´?Şŭ­„aÙG9•ŞŞÈĈĝŸñJP48Ö;˜nÖóißHs]_mkJĈlŒŻg}üĊşû×ÓQʐ˙š¤£Şnù{Kĥ 6‰ÂŝżçR?ğwŽbĈ8DúÇ_qĜİÒ!’UÌşƒ9àWĤƒ“Ġ9aËĊ†ßžHĉkÛûö“:ĞORÎçŠè`ŽħŽ'/Ÿ ûp9b;‹ËXhÌ bTJġİD+ÌĊż*–ĴÂDËH–jö銍/‡<É"eµG-…ŠíhœĴ­üÊiĉĜY5+’Hè1$;b•ZMĈ§èžı‘Ŭ“£˙>98Ôôñ1œ,`zü üÎgô ĝÁQ6*“Ûı–i´ƒv4à'‡˘;êÒŽŜ÷…ŜDz³İL=hşÊÊÎĝZ˘²8v;ó\ÁßRjĈ¨¨Ŭݘma’¤-2ŝ”V„12UĴöҔrĠBŽuϐûÎ`ëÇ÷’IĜöĤƒ,B#%­^ž÷iİâ>ÙDĝ.à·'ò&ĉ:Š4Ž qŽċ9éeÒĠe§{H8pÔI•s—#ò•K÷÷@_1<ôPÉ @Y. À$S–ˆüıáˆôd`;t á0?´¤êKX@ĦŠııMWvzOin7ÚËôÄ ìӓ ñ×êÚaOĠLm5{s}uïí鐁ŭ¤e,È~Ż#‘C?îĝq ƒèIÇ3ŭĞ:3ŭ²)ħ⨸Y“ò“Ŝ=:}ÔñaX˘ÈpR8Un Z˜SŝÌĵ‘Ĉiĵ“ÈĈˆüÇÜ_Ìg}Ŭ&Q.Äs[IÙ)¤ĠƒQ4ĵ·::E] ˙h’(¨s~‹"ÌD0 2“ |äÉ7Ŝ‘s'?LpZtéj˙EÙ—ĠÂİzUÔ.tÒúvòNóÀċğŝҐ£ıL#áĵ!ÀŠƒKV*ŸUӃ.ŠJĉżçç:S01ċV\hÀĦPJo”Ğà|9(!Ĉ#÷˜¨ŝPˆ‚ZÛHdÁ³ŜKú‘L‰#…ëJÈÛ>šÄ>ÊmD>Ñż0qñ'8e–Òŭݘ+Ò,ċüu ·ê”SC§áA]ßŜ6·8˜Î´6â1òŬnE6ü…Ž×ĵ^b0ö‹á’ü'bC“#Ö)ŬqIüĠJ™ü´3?¸z™N{9Ġŝd}r€‘xvÛ(ÒÏGË=4KEŝĝĦŝ†L§ċwšĦÂGMúADĜ·ÔĠq&u>IumSt+„^G*2B”Ÿ²ż§iÛ Ċ?QFĦĉâ a„ùħÌ"΁ƒùĠ+”żħIˆŝe„WHÊĵkŸ›ê@ŸBŝ#Ù'XŻU}wfşV?µQUŽŝ*$‚‰ÂĈ ‚bsÂ``Bŝ‹H ñ_=|dàİòC\[ċ™dŜPħFǽ¨•iĞZ£Żaŝs~FmŜ&Żàûj;z7D?C,`ʽuġ;ÜjúÇoÂF:çë§â#™kš.)¨Ee*ì‰H-] ħŒ’=ûş,'ä°ë> ÂebŽ4qNIœ×ş¨YÊĜhŽK7]üÁ@.eŸg€Äš˙*úGäĞQÛ˘%Š&@v+mRòHÜ+\ż.˕ŜT£§…p „:Dhù› ŬTY“RħWµQKd¨£Nà PâFġ”.ĉ RgˆËÓŬO¤,ÁAıi9‹Ót‚KçX˘#lŸĥĈGX‘Pñ8ö+„çÖÎâğ§˙;ßâŸGIÖş‰ĝKtù]ŝ ìBíëŠDj[ĠJuıĵıçöв“tGp–Zé„-ÏVħ5zğËIíğo\÷˘rXk8Óçë“1ƒ)zĜ:ŝ-v¨Ê˘ĦN- b˘­÷Kì%İn€ĈèÚċf–IĈ0:—M;úndÛ*݃m])m=·×ċÜáÚ/{$Î$ŭ§•ĉ>üW‹ÌÌ:{&ĤSÎü/2$ƒ“” ŜnĦĵ\„ \Tĵȓ•ôâÊntĥ=9YÂ9Âô …krbѓ²X(`Ĉ2d[luX’£ÓêupÖJVN;WdbÍ$ÂqóĤ˙˘‡ĈŭÓ?ó˙YëĊAOú’ı.˙ŒŜ°ˆŞ5üè˘´nuïóVëÜ~^sAô†OtA˘ÂÖĥd‘Us۝fıĉ@Y`.ÇĴeDĥ[C“eĊ|Ge˙cç[Š7‹Â×ôİàíĈpÓZEñ*+PÀ V h›ĦĝÜhÓ : çŽ2V79âUj!~3wñ'…5 Ú²‡K5ĦÀ ‡e‡†ŝsÊ ğ7/Oħ¨#ìOŝÎRĵ%ÀRë”Ċì2ŝ0’êè¤ċLy+ZUF\ĥİêŭòŻ@—*f×Ŭ3íĢ ·¨ĤÀÈdZ‚r 8û¨úú†!`¨C!µAڐíà ö%kEC0÷O˙´Ġ˘ßż(@²8µÑñÜf,ZŞıíÄ~!T`•pVT™lT˜ ïµÌy1/ÂYÉû*·IM·ˆ™e6:á`Ż÷îï`öEî”OìiÖ@ƒÀd1Ú<ïڟ‘dħäÒۊ Nħƒ ½Lˢ&ZÁ$C¸CÑ´îÈÒVğŠ&ħŸŽ÷Co?ÚjuĦ;tÔÉĦŽ"í–½U–˜H|½mĤ¸/Z5G"v!ö°à/g˘ +Á ħ”ô#vPäàó`³4ħí‰Kr |˘B•†#òŒż1;!1W“ÀčÛŭô^9ÖÀûıX*—-ä(´3¨ç.KÊc{îNy,ks˘Vŭ“q8ĉ&hݸˆ D¤Ë€ËÀfŠÀ¸rŸîżÂˑbŭżhc³’Ĵ ÚqTlkÒ7…ĤŽa*Ê%Ÿ€ 4'  h”áżL-b{Íŝ$2Â)Àï=üqlK$ÁÎM =²ŞÚ’N<59ñ”€OüöÒ‘_ŞQO'‰“Ş\]—'Şħ7ž(µeĜUwJdí–4<š€xE·bġÁÓL˘ğ*Q·AuQ9T) µğ)ògĦċèZŠ‚¨¤qL{€f/Ĉ k.Úlƒ¨ IçµħL1ôıž{q›.F1ÜZĠ$ĜlµZ‚_úgâž;[WH`QpÑn?“‰STWHÊÈQIĝh£§àjSNЁŝcDúJb4’˘" ›}EGTĞô'H;´ û}ú÷żÖTŽÈñBô_ÀQ$16?wûĤĴ‹ĵM˘ê„ˆ*’ĉ*ÔleEtߊŝğ‰3í‡Èoè¨ÊYÇ5JґÑàN"8ĝ@¤!›à•5„?4~#r7YE™tŸáĴ¤úo%bI.+òÊŭ“Rlü-İO£ğ²Œc˜ÏĉR‹(9 Úó?’Œ%8Öİ3Éû}Mz2ŞŻEž˘ ¨ÎÄtI @*–Ûr_WQŸ8ôJÁĈÑ•TB³ìùt#ĵĠ*#Žü¸Ö6SrPĝŻà/̘*ôIa?!ÉGâŭCF’ŝÄû$?ħ£Ž˙i¸öĦ0·ĝÏût€!,kïÀïÇĦĴD^D—çÜİ¤Đ…ÎtâO³X #ñ˙vj™‘£S’DFê2*k‘²892ñcú%R6AШ~HĜË+?X ê:Raı üM^On¸½+Ÿ%ŝğ%ŜŽt™ŠÇ2ž@ûRkÏŞöÂòĝYmj"qŭÌ={[´"‡ĉ‚M,@/O Tiö‹!ĵË YTm•­ĥ - K<o3Ó"î`șÎBywÖҜ)éù&ËkÚIŞŭ`1‰8³ċ‰âz`—Ĥ7E4úŭ=ĵ¤ÇC‘FÊíI;ôë.…ÓJX5<­ûDq`ĵ\IöˆòjxK?˙ëìöŜ„Ü#Ê=r¨Ħ@_ÌÏMVï9Ë5Dü(Ì1F-pÁ_Û!òğm¸=‰ĉ!P$ì—ĜsHâ%Ŭß܄Ò`$–è’|kimNoš\­–“\ş_ĉ J9s ËZ$ŝC])ÒĞ=”ĉPeW.Ò[!&r!z-4Œ?ħ?‡ċ)?w‡´?sNi üċÄñUä_ÌB ĜkÛTÏ)?2§[tÇê@¤V§ B=í÷oJ!IE€hݞœßƒáĦËߛâét3rš†. İBŜ•mmáĥ?bƒİŽüktaɚKÂĴ8ş¤=ÊıœÑ͵ħPŸBB³BßpAސH&óӚ{¨4ü ÍBXċ•Ĉ$³À‚qPß9ÚI*K7Ç=új>zü7t‚…b³ÑĦI÷EÉH‹`fİ!g5@^,¤fĦQÌ\q# ÷ÇCÒ´˘ÙÓi³ı$lȍı'Èż!‹Ğ·l´–F/ӞÙ0„…\+żláz\¨áÂäŻ(ÑÀÒdYÇ9ŭaNĴÂUq„‰U!s B4ÉDşi˜µĥÙ‘ûˆpUħcŸdK&)΍TyĴ[ĦìöË_Š:à‡s+§[ЃçÉ0ÎwdĞk;†µ“)[è™Aŭf*>–AÑ>ˆo6U!Ú/gŠ˙ƒ‹ĦÈs˜°ç% ~ eñ}ˆżâúLœÍÀzŠçUÑ$ôŞDĦJpi` ֗&ÏV!GÂ^?WQCUşYM?ĵ4·|„ñ$O]Ġ²˘I&̕!ó\VìĤ'Z+³E –vúİ´fÙo§â[ ·½HóĦŭlä)njÍrâášÍĜ²ŝ[ê¸gŬ„KwÁDJUŞ’ŝV˜Qͧù‘àAŠ_uRúrўĠÀ*—4,}E ĵ™ÎË'\Ö§ZÙ<äÉċ= ”ĥĜĞò–xDU¸z·}dE] 0\0M´_„eE+N+^Ğü˜W’^Ö2az™}„ŝ- ĴrħħsÚۊtˢÔgÄçŜÜÛ\•iÇŻOL nW§ĥÎT íĵû‰q½Üs5„p"?CfÍ ÂÉ jGÙ GħXâ;DöħÁëĊŻÚ6ÌVS‘Ι•KsI˘a• qaĈyEıÒĜHjс&A`‰ċі/k{sêNè2ŽşŞ<³ÀnğŜpÒÍ,S¤M Êrb³Žµwh°^‹›•´‘ĥU~µòĦz ÓfRJ„ŞfÈCTψç xħŝÇ3 u¤WRqDü/?” ETêWjd¨|ÏüfÁö­3§İĤĠİ"Ĝ#bĝTWğà½Ï]ŭWôÊĦÎ  ‰Ç“2M6́ŝq¨·îQ6rĥŸ³WÎ˙êtfÁBĊ… ŝ¸“PŠ&ĞRNc rtD¤ ŞHŭż<ûĉµbÉÄ] Ĝ…“âÌ4ÇCZ5‚?’áà(?o÷UGm£yvâaàß(Êä5ğĤ*Ö·ÑÁ&ƒx‚IúWo?¤û²²½!:lvéİ(>~ôLŝžĤk œù¸è~óıdyè$X_ŝV 3÷µיçÁÚġÀJQ£İ{Ì^+I'SµĈ•éŻUMĥ —‡Z†Y)-0HVĴ÷´ C‘Ĥ%Ë5PKLxÄ#0-’lĜÄGIĦ;¨ÓL;FÌĝË$½N~)stĤƒRWwÀßÒÚ_Dd‚¨bèĴX‹]]EÖ¤‚Êèq9ĴŽ ×yޏĉÌñ ᒠn´Şv%wI@}”I}Í6‰?`Ó_ ‰ŸBKÁTĵ)q…ö²d-ÁßÑïEċcl)(_hdQ-e——x[¤A™…[İŒñxcŽl.EĝÌ%ËÖqSžjl—={_‘ĥîŭ{RşĜl@²kú1ŭµAÄÓ§á&6Ŝ :}Ĥĥ ˜äÍŸĴĦEèĜ4`‹Šq’›YËĦK ƒÀ׍gtġMxóŭ‡:s$ä*íCġŸADİbeg_BCqNNŭQĊM@ĥ%İȕ"×AÚĤƒĤ@W&á…ñ‡tÜ5ÉuÄ5SŜfÏN1µ)‘ pĞ#Â7ëvçûßbİü,ŝ`)WJı”zCôQ$%U2¤77Ħ¤TÄ“PÁ²U ²Œ£nk•6.şĊW䓳î†I&-K8” ñ‡ŝm¨ND²Ìöu-bA…¸ÒĊı`Zg/ZÌêħ„ĥ;aĝ´/Q"„4o¸è²’KóÁ\D€˘İZI7YK¤wŬ_’Ĥuԏ;7‚ÊĦM–ûşŝ´Ŭνx˜6iİ/ğÁ'èe$vP‚ĉĥĵpşŬFHà/`†%c?B„HÌş˘ŭ o S2ÒxüıÏóÔ45éŜ.ŻJ>RK)ħLá‡üĠlÀ'˜ĥ§ÎT[ 3Ä Èż×$ú݇¨Dòß{ʤµ '³ĵJ`…wŞĜÒÊ8iW‰ŞÒγ]½&‚ĥ„Ċ—a(ġ¤\ëİÏçš#OJúğùÊĈ9°Ap ċ–#.’|ż,U¸İt ³X ĝr2˘×HS ‘›1A–Gìohu1é(ÖHĦQéĈ Jpĵİŝ'è+öĵW& pÖ²Ê ĥ]ëR­§''iĠ~yé\üŭoĤt“‡Òäˆ~&ŝĊşĠ¨s¨œĦğî0şÇ/^CĞoîµ˙·á)" …šU‚š­ÂÂkÓzj8FY;ŭ ŝà³ûeI”Ĝ|\TAàó_·‹ ´¸‡²™×ƒÑW(/†-Öĥî²ZÑ?ÀS"˜F²Fۍ¸€•ù…7Ĥ„ĠXb7ŜЈ”¤Tĉgúç>×İż`J\ĵ)ÙGB,͒jl­¨kij ݞI,ĤİÉSĥŭa‡I†ĝÒ˘, ށŝې˙|>ĊHbCÁİGÈH Ċ.—éöˆ“9ĜJ7ĠúsŬÍÈU>G7ŸluùŽ‘ÀgC{-ÁU¸— ž<‘ ĘqX‰-!1HD‡Ob\"yĦ\²V†èU~âÄ>˜žXY; Û;pӋŽë™5(ÏoğèuÍV~’ÛV“żĥùÁ“m˘#_k]WóżëÑ?í‰b"’ĠŠ­`°ŒeÙèté­ŬŝOŞÎQމġÁ•œÇ–ġŸyTî7.NÂZüqäÔè$I3;C˙îáŭ%QQEìpĴıƒ|ÙT„ż²5ˆĉ+í'ĝkò’k{Ô1T&(Ż$9’(ĝ‹ÂŞù İ—ˆÓjËî/˙6JQœî=ì)ĝt³Ö8›Í<ۊwÖz %Áܤ(ŞïzŸĞD$—C[zëPC·Ûw@7XzeKnLag4³ç O’BҔ%ìtŒ{¨XŻĦIHôŽñ'*H‰Dö։ĝĊıŻf½ĤE&{ĵ×Ùì˙ÜôáĤħ ÉÍÎË?çú‘öÈħ˜€ |HñٗLë¸î§” QäÑŜŬô'lö³ĝSAûÏχ†Ó/Ş…ŭ…7݊ú­˘dıZĈiYKÑÈE :D\…n7Ö,cñ!F`Êò.“ZÜ+äN£cşôôI ĴŞ#q˜4R’ıƒĝßr)ï²^~*>* ĴĊıÀŞŞëùRvµŞÖ=â³Ġ‰żcäpôS/q[™T<ĝAsîà—#Q‘Cî;˘xÙpaħ•²bˆD‚[ŭ³²XŜ„ IFp·Š/uċt¨ò”ħŠe8•ŞÄ:wP?3˙­êRgÔUÇ,^j‡E]–\^Ù1–N 1Ġì´Û½ào":Š9Ëè>)Ê5ï´Œ‰ ;K°ĥҁé ÍDoL½?X•k?nR‘P&eqˆ÷fú§‹ +eUö$gTÍ÷9|ñ$ë˙S^Ú(oÖpN^reĉ tş)÷<̜+ Náp<íß§˙9Ŭ}“ÚXġİkOĊG[­*P4ĉ›µWô‰?$İ£\a†*Crg*Aè,ÉÀµÚù45PÁœZÖ$ûr£Î½PçΛġÇ n‰’dċ ı61÷‰E’}—yœ ‹Á”T¤‡ÜD‘)ħ"YĞšBeişB×5ñ#³ĤŠ%3 4hŻ5]TÉ/E=ĉVëYĵ*هGÜ÷P3ŭtKk,˙q Oğ“ĝçdiñ‡˜ü/s²ßk“‰‚5ÍĝDŝƒ}|†Vşˆ•¸–pxDóÔ?Át†:ûŻıĉú͂ˆ -Ş›diFêT#.r~%7EŞP˜ìmCtÔ?]ÎëjÈğ$ƒ"_·lGŬ‡ÇNĠÚĠnš}£L²ÚpğяfeÒCħ{g‰‹5nLƒù Bš·B ŒÖ Ñu랃Ÿ7ÓyÏŜgÑÇg5FápꉂšŜjèY‡:°AÀȁ2ÁžndşF9âPOH* }5’xŜ¨ˆ—ŠñY‚h3–˙$Ž&‘´4P·£†_GëJŒ (ÄİA(ÚàÇĤ^ŝhMh(–8x4˜*Ŭciô_Ä#²-ëKa‹4ċ–”ÍüâA*•^Ĉ[Dß%’˙µŠŭj%·8Fë­{)Ö~!’<î9öôĈ'ĝċħ*%w£UĝâͰ^úôûr( öè°E•ë[Ġè×9é(KcSh%•NĦ—›ÓGÏ<2ôÙnM!›`†²pë‘ê'nŝÇÖjÖ&áöë5’ƒmDÁÎÈwÚc·Ñ#´´ÊĥŞMìšH’Ÿ–ZŽ[)HÀĴ !Y1ŝžMO8ön–L˙ĜŞŠ(5­˙>kCÌ_*<á½ê”"ĜAħOèj]1˙f¸¤9몷u}ŭƒ³de4an.­&qkÈgMN²†?@×IŝèFr0=&W_}ġBĴµ@‚‰v !hòU–éBCHœ+WYr”Ĝ.L 9%†Ğ•‹?zOÒżğŒ³˘Œ`ı‘3Á Ħ3’#TF$…¨)­‘ƒ}’VÁ=œW˙qĞ’Ñq2ìtžòĴÒâŻĠŻKʓS|HÔŞñ["h˘Ĉĝs”ŭÌ&ÌCQ·ÍÔûÎ{ˆ²êĵ#mhhmÉqb†I+E•°@4°.Ċéß1@tîk¸ŭ9²ŝ³§&„uc2›¨Ŝì+ócÄLƒJÒM¸ĊxYqEP/×Táĝt„Ŭ˘ŝ£ħ·pèlqKÔ?Xt‚<żÀ Ħ6ô{´@)3ÒAáİĝ)üqÓU‰Àâ´m4p‚’&( Ó°°Ħj2‰ùí›pe—×É!7-W*ĉz/ĝN×˙Óĝ“û Ğç$ÏEÒi˜†S²ŬQ™ĦäsÉiŸ`Í_ zĥ„€%/OšÄĴU§YaË˙œ–İSM‡Ì)–²íĴ[Ĝ)ñ·^{xşDI-LkxĤ[Wž)­5ŸsĈÙüv-ı¤T˙bÂŭÂĈş\Îv•İŞ÷ Ì4ċe\(ù9¤xêòh_ÄY‡àâ’3DNİ™.kÜ! MŻ˘‡Umy4Ċġ„Cy­šJ!v…ާİ+ıÁ/PğPo/"ɟG…ùLÛħóBòġH˙@Œâħ–êDLŝÚ:‰Ž–JA£ç0‰óS~ŬJÒ¤Î?™ ßpĞ̘ m$%dġ\·‡Íe/ĝÓoPsOPQ˙ÏĜŽĴOÇWlPâö)ÚÏqjRòişUĴGÔ­Ĝ4 li :ßX§ï6ĴNġ4TP„×ëù âJß½ŻÌ`S‹›àéßkv;ŸN¤Ħ‹ÌuŬ5ù#9*%`3É1Ž÷ğÑ Q ïh<ˆÀhT‚&„/şcE`=ĉċAgÍéÌ ’’ü·.'•-~–CEéJB¤›ïĦJƒ^tœ‚3g·âüÛèÜŭ+M·‚oEÊaäÊÉĠN˜!Kt, °{Ô*CĝéJúĴêè0İ UƒE%a%%U¤ÀĊ ·GJ?„ ˘Ólej’œ3¸–ĦŝĠ*Vŭ’Ò18ş[şç$cc:Jûµç:J S ŝ*‘ùŝRì,&Ż„C…o‡ Œ÷BHm­&Ë-”{@rˢ9ñ÷žtç]ä>›éš¨ĵ\Âv`H´BŸS†œ2csş/ˆĦĉ[S$NaΓ}%ûö€VfHŒ<@K˘N­V‘à” LžÔM„LüşŞ%P0ZÈmÑĠ˘$>_sŞĞ’ŜÏ óâÁ`üKkü5ÛŬ|öp˙µR\Ù˽'ÒGV°R#x…Ñ^‰dV'ĉí¨ƒp÷:Ž&K•uBŸ7DàßchîÊ"¤Ĉj2.iÏ%7NeIà-BÜ B;@ÒU ój ˘Ö=ŒŠÌRY=Ÿ‘ċË4Ÿ0ù\…ymwXéÎ,­‹[ìÛĦ‚V T`Y÷¤2u'§ìŜKċĤF{ uħÜcÍ"òyĈHÓ Œ ìġ;ó=?›°„kú§ı/-ggÂX‰+fe{̇JÑżŽ£Ż˜ĤÔ{â~ŠĠI˜ ˙ÁA‹ˆ'иTĵ·hʂ‡à0âblr/)^7Òw-ğ™ ',d‡ĦvRĞ63żħz²<*öżğJÂÍ#4ÙĤF)rßëVċgJ¨<Ê*A:ĉ„H¸pU—úQYR2ôžQÈıš˘İOÏÏ?ŭ”ĤnùĵžÙ֒ħMÒyMĠ|÷´`ç[eî›j\L°Ôħsz ¤Ġ‹óëLŞùZ‹ğµžœMEÇ#ĤĜäıvĉ ò·\!gGŠ˜Z÷E(ö^gu2=ŠŬ1ž$Û˙2îü¨ï%)€HX8uíŝĉĉ4q]­5¨ù/Ê+´ĞLêöèH0œ0jsĴ}Ҝ¨8ıq0’óĵ*@ï¸wšh;ĉ!Ğ`ò[ĦWŞè ĝ°ÂĝtKMY–ÜEÊeYdm Ó?%0œÖĞf˘d¨Cž)ku!ù•Ü-µcüqêjE²ü)ŭĝÑF‡Ĵċ$Ċ˜ĈÈÓ΂ЁŽ~Ñ>Hn•ÏÎħjâŭwwK!“‘Â/ĦAz&A0£éü駏Ÿü+Íö’Í|,ubÏQQUc/fXX„:ÂۀÑ:Ysb¤gÊÛ9‚À€(ú†ÉÍUµmË †­ĠDì;K€ıLôäFÓAڞ-ˆ'ô‹ŝżùj’ §_[×KĉÓâ¤9‡ĈŠs(u“CoQ5+!òjKRnÒ#êšjıˆy9Ó?’ŬJSr dëyrğ]BÛ].´ŭ…à5g{šc’Iòoŭ|V-<#…È„eÍYcLü¤‡paé/ÄôïıΤ‚Ù–‰bĴ¤ż ò_')NBġĜŜŻß§ş &dIbèÄ~‹÷w–ĵô<h żĥpóUK}.{Z×ĥTNà²í!2†$îJIç*—Î<ŽÑÁÙÜpŜ[‘ġġŝ+=FöojePhàP:” ?MŝFŻk&¤"U@ӊr’Ê D…ÉOĝoY³‰&MjDKs)ڛaÖÇt•犚Ÿ=ñŻI8 ċŒ.Sm­*jžêŞÚ=½"wŻë£ĞPŒ .̂jefʐŸ‡kRìúj”½Eôàhéĝ+}]Éfsèż1˙z\˘ş‡_àŻ’z(fL$$ĝpwÁ*eú×5ż/ҝ!+jÙÜġsı›uœ!fÀ‘`hjfŬKàuêbhRµÒğÀ³Ĉm͙}Bw)l40ÜZŸ0SBßíèYŞ~£ŝMŝĊ߂?Nż$I§>)‡ÙÎIe×DĴqş ´ĊDÂßQ["şqFD˙ˆ•ŻJNm]İĜ;îZçé=“imrvœmd}ƒôü|–²çŠóĥM"NM·Û½¸ÒĠò*ŻÄ˙ ?.ZT§­°UKXQs–Ĉ˘ÔhgÙ ½ÎAġİĠRG–*šàĴ+ĥ¸Ä•Ŝò¤bÑQéEŠñĵ%Ä9Ö‰0ŸJğ]şÓ ħv¨“]yM)‡ŭĜ cxĉFû+Ŝ:€ŠJġ sŬ{ Ál:Ìġ†`)˜µûş` •bÀċ€Ŝı˓‹ñDž²ñ#ck‚XPŽ…*pÒĉ;…´˘!­xL˘F|³Ĥ‘Ü4ÏÁ!ĝ<Ÿ›ĵсOŠğ!֒”Qş:”Äï%˙MA;¤lçÈÁ‘n˘˙ßÒtğ{ŻŝPBMŝ•ö ÛlòÒ< Zé9şYhN+Ü7^EB˙ŝj]H mùġŬkV}‘ÒAJ0äDQ?H TĝRt°ħ–)ÖÜXâ6ƒnó½½Àì ŬÙġ9ç†Ġˆ4ßŬ*­X-&áy ħë$Ñ0zÚ Gp•ğ'íl)o%•³ċĵr}ĈÈe.µĝ3ċ7Ŭ– |fEÎQwuÓYéŻċç}ÎĝS,Ó3ŽÈAL-½A=!)QäĜ³%Ö¨­’ä5ÑÇCİÂïğCĉ€ıAÄêŒrG5)5 G‚ =¨ñÛĝż j-£…Š˙KDoU9’Ĉqfc*A ü Áéžġ_fĨi‹†ĴßDD‹ìŽğ÷é YĤQ!ŽŝĠ‹Ġüħ@`­(hanĴ2'ê:āĦ%†W_Ćĉğg%í,OW7÷$DÏ´”zñ“‘´|7BSŬç)Èí,èf£íz†${< ë´ß dĉU Ú#İıÚ½„Ž§<&’UÖÀŸtĉk$aÇħ#£6D^n˘Iġĝ,FÁN|R—ôŽd-à9éÒàgK˙Ú.Ÿ„u—qÊL|Ż'şƒä†s‹?ó˘ÓÜ4€Ġ‰pψqšd*“ÜĝċNtDp‚$(ĉ;!<ğV74ĉ޽Mŭê͛™ĝɃĠêÁ˘˜[ċ•iĜh;ƒ­ÁŜ÷ Ÿh–ë*jÄ<5YŽúXۀ­ÛäHCÇDjUĊQv\Š´V§ÌĠt+•Íà{ħ’ĞUiĉfL: q~ğvêŜZ:çóá>4ïıŝ eòŭFSb½Ç²QËŞ´Dİ͂;÷pû™³ZÏÑ9ê@£G‚è$ÖlĴUäŻF‡ çŞ>Ò÷+ 1‘Ĝ|?dċ”ÑĞü֝ŻapÉ 4ajŬŝHÙ_&µ-Eȳ: Ë:.çS‡“Ê`²C:! ÂÛ_t,Ò(„¤ÈߙíŸk=@ù߇wÊS˙G%ĦÙ öóOġŻçu0"#˙ uߍĠä w:÷x§Żħ"e 9–˙[_PËĠ#ÛôÚ4Ż™:Ÿ xİzĤ³ÎCvğÛ[ǒèj£cïdGüqW)Ôx]˙ŬçUQ¤àg*~Y‚úĦí‰Ë- dTUŜZq!Yı:‡ŽüĠ̈́M(Mİ/ÒĴóšŭi8 ÖşÚX•AĥŽċ>C"ĝÍDĠoïïCU#NObr†ŭyéâ/â€p’-P‘ÁâİHS8™<몖ÍĦh;¸ˆ1,U,L^îm"j M“tŞ?Š•üúïĦV/àżüT¤<›Ġóx„xh$ ­#f}6s/Ó BĠšK](&"èŬsœù’­éD"¸fĵúMG!P°vé[›p/‡ŞĞˢ$ÀíÀçÔî îÙʚ„ÜZ*ĴN•ğsxrÍÂ; `tĊ.İĉĴ×dŝK•Ë~kHŽ­.ŞÓv$bÚÍİDpI-!\A‹#JOe‰J|*í]^Ŭ°;-/Ğú˙\Uü’@~tñ7Aıċ‰äÓıH—ŞnHW!ÂéܒBï1ċĥáe_÷BñßUÌnUt(bĞœ…óĈS<ŭĊß.ß'(Kş­³€JÒ· âÌ˙FËv›Ñ˜9o ŭè7k½ĝ|½6ǽ\È`àŝX‡Ö£{˜o-:=ò§ ‘ĤÁċĠ`é9Ú¤iP|nmĊ5=óŻM³!ÛŭқÀġ-Ì4 x/e&ÁŒbċ”~Nİ´ÉU§B7˙ċì熕d[Ÿé_QU aIú>J°:Kf¤ĵ/áï>ßC§”‚áñb$HöşG8M-8j›<ƒĞE 4Û­-xEĵ0^rçi0`ñ vJ"€İUPŸ'Ñħ³vJKVPO/YJ_{bñd6LHWÍïÄúҜĈv°{2ĝ\ĞS×Ċï|蚏7s­4ŞOûQtêĴıNäa£N˙qC~m ×ú>#rW˙¸t†|ê}iéċħÖ?Ѓ¸a­#ϙŒ[‚Ħëı´˙XI`İ∐ğĵĴR›ÎÚOàÇl¸ŭeɉ]§F§IÉ9ċbí&{RµÜ0ıݲĵİ–iU–i£nW„RIo{ôċ`çsWZŬŠfÓÊ£fżÙúü7VXŞŝ•ĝϚÎ}•͍JUQ!4m{hĞ}Éo ŝ*\üŠÔö²>ê`E‰˙ùÉKß^sÔ ÉÎ&;'<—&wƒ¨¨ËĦĊZı˙—[Úf>ìÄ֗F/ĉ[#£wĦ—ŝCçŽ3Ĉˆ[1=yôÍĠÇfÒlƒ'ċV™Şñ8‰˙.nTċT(Éó*ËjÏúÜI=ĜŸ F´>GêV+ÀĤ{òHtó`üżJ*âr‰ŞP4QôŽ$äEÛ'”çQŸĠ‘• İ X‰áĈG`- `u™çñÊÖĊşW}j³œä/bô:Ĥ™ËX˘ŬAĤ 8Â^…˘‚úT[R-˙EĥĉÇßëÎZˆÌĞcŜ‰CşĦÁ4 R[µ–&WmĤĊ”í;ĦƒçRm#–@lbc ;-Ù÷ӐŞĴ5[VIڞâêşwŬğŒ%aÊ!šÇşÇ_uÀÁġ˙Y#şˆ|I÷vÑ@gM]*èèÒĉğ1í> úµ‚5qgñznñ)ċƒ?‘)İh;[˘‘µëÉÊp½ż›û(İË2F<WÓĦ÷¨]ÀĠcħßĵž¨ÚîRöÀĊf!^„8|“~NtÒuÎ)bÇúÈ5[Tm"ĊB„-ŝ4ñ uŭ6E“ÌxDDáĦċŭÈıMB gŜħDĠ)QoÛ|jìT˜šĠ ž”U,u’ÎgàïX¤ż7A½FÄ8Ħp\Ġ„q3÷ÄÑÌpwC–ë°Àzù+ı­ÇXż=Qk/Û­›!ƒ°@\[ÎĞa¨â‚Ĝ°wûŝ’ŭ!Ħ/<ı·3?Ísçl(ŭ# ¸]£ùßż‡ Êhü}ĦPSG^ ŝP_ö—şŜsi iɈ¨’ ċ˙C-ßq³ú3+¸.E%uo•Ħş„~Âċ6OMìKNâfC,³Tĝö˜˘H“§íVC†çÌü;`…žö{AŠsC?ŝˆ·™ż²ħH6“6SÙ%p%…jŽÇ]jì>ŝŒŻÉ§9Ú^ëê$v{ş€GîN/­Ç?Bġ}S²‹5‡ß hóŜiÌħóÀsÁħéEGŻ­ŝÎ?|c¤Ôècdä•GM=³Ù²L&bK[pĉ7Ë\ĵúġÉ ĵĞíĦj\Yê´â\Ħ²"6+*Š ^3TTç—È8XNµGhÛj‚jUܧ,/9D°RQ 8¸g›ŠĊÀU, W˙HXPtM>ÊE'àô§ŠQD#窌&ρÁVìvĊO?Jıƒ%eck˜¸²´bÄR@t\Û``m |.s×Á0/£4¸CrQµ6ށk7Üö—ħÇĊ} ĴŒeh„Ŭ[X(G 0½! _Í<ıÖ Jf@>d譙óç}îEyÎé—á"\ä\w£Ò­glrÊê|UvîŞĉ€fOñʔ"ğ‘§*\’ĦóHxÁılıRh‹XɌċÉqm‚ΐ˙*qWÈFhu_zĥ?[ëËëP蟊äsÌıƒ¤Ü˘é:ċÔYíOÚ½l·u×Ì,èFMë`ó>ı#ĈÎ6bô™Ïş.üċ´nû­è\ğvyèZ™p\$Èĉ¤µF¤³¸}ÒZuĵŸÜäŸn6–'µy|Ú΁Š-iÎ —?ċ#°è3p<ÉBTœ úBh…dƒ0 Ğ,'Ğú˜!ŝSŠPJ…,N´ ä-WˆĥärP7ĦÂ/x‘p_8E~PÚ,\Hµ–úÀU¤–^kúŒši˘~"²ZáR•ϝNüŬ#ÍÎŝ-ĉ›˘>–(ÂvkxiHBŭĠws1ÁUîdh48ħD=MRIG“ó½a}šĤZS7öÀEˆÑlç—@ì#ĉğµc¨ÓĝÛù²ÛċŬ8?zĵ^'pĝ³ µ·hESµ°ğÙ@³ŭژUäŭĠï^dŒm.?e•4˜“Jµ'bÁäˆÔZ´¸VOÈ̀îùż%-?şFqUÓIt£ÔNö`4ûJÂĜû˝pˆ UËĥʒşÑĜ8wÏô šJÂ^ĦB uŬmĥ²F áŽğÁħΐÇ9;@Z żK&N;C À;ċµŞ’³ŸEĠK€bz²•ˆş.Ĉŭë&Ï÷ċoé ĜˆügŽğÇ/RD0ǽ+–Q·AY‘ˆGbĉİ-Ò_˙Ŭ°YŠKÁ.pµ#Á™CZ^X/`¸´${t*OÖĴOÙÊd>w=Fiô¸lk‡dτŭZ9°}2hG(ÛÒÖRÀġX3˵Ħá< q͕ ĤÑV#ϓ_è‹Ġŝ-LŠÈ&1*ë1Ar‰Âö*gèö3Ñ †ĉ%Fc@Ò­¤Ħ Ŭ“CLûÊl_rLñÈPâ`àö€ñşTF5 ôì¨Ñ-/UJ|Žr …‘iÙ{ƒbĝÜQöÌŞó ĤbĝI3šàħúİx÷nĞ´7Ol礷j…ÌKFó–ςģ•ĵ”lµ½ê‡ÂZ.ĥ…™r×CBÛ#Ġ. t1lŠ„ËħħY‘ÈéDUŻmt Wòy úÉ7à?†,ÊŭÖ3ċRhş? 3i‰¸ĴN´"DÙt?ÉuŬıJÒ ?ìa˙CƒI IŜ/–LËB3…ŻĥÓVż–xî$a›aËü7S:-’ÜêŒÄQ“˜·'Obe]VeT5żós“‘Ìx$}­MœBĠqÂĊ9Kŭ]d4Çİ‰ašzëMLŸwöÏá_öì!ô³ç&óŒ/ú ŒĠf²Ó\5Èì–ŜƒFN–ÈÓĜRŻE†Ûĝ{ĵ6¤óŜӖċ 0ŭP\#*CŒöíŠ b zïŒÉ@ëKuĴHFI…6¤¤YpŬ>ôCÍ3LwŞċ+€ż2[˘Ŭ^²ĴŸkŬġR@Mßô¸¨_EçÜI'‚ż“´lğŞ9ŸO$Î-jnù‹ˆJ‰†ÏÄĞî¨ßíÚÙ]sĦŠ.AÀVħ˙=Ëyóµ‘x^étà|rX@v 3γd‰~•˜êÚÖŠ3Ċu Q?ˆ‰D褘jĦâĵ: 3@!=ÉÌDw×j ü1[/4k—²V ÉIŒ)ŝ2Šó ĉ˙Ï#ú¸ĥ_kâĵĠéoçIgvğš5]lqVPÛٛ¸ÈZĞ|ÈAGkÛ6^5Cϕ{Ċe˜ƒ3‚7óž&ŞI”cg }kB#6ŽçÑHmOVš k6NêĦàç?ċŭ nŬ Ĵ{[|hÁm‰XŒŻˆ(“]JÄHSNUD}óïôù\XOñ¸´µ6K|ÁjÜ{ˆ£aş=a\bċÈ ŝĊ#ÓüÓ=Ż­ëyîÇĜġĞıOöT3mú2?xG‹ #êÚèdè)0ÉÂĈGlĝ ]{ô/,™>‘8 ó6WĞ 5anžJ4-‹2RAŽ~Ĉ„Gĝcŝ[Öʖ™=· g}€?gşu½t Ibàòe…ĉÁe3J™0eoOÒİZš‰Ôf)• Ħ>Ġ’“RÖëġÈŽĴƒeSŠB7ŞÀÚÜĜM1Œk—ğÉL‘mġ ıÏÈĈm|ž}Ċƒċ`/—Œ—^ö,U-ÄD0%nZ”\!pwáıŝv˜AxĊî¨gÔ~Ï5”.mŞ˙A÷Ŭ—uÇYiÍqÄĝŜƒÛ¨‚Ĉ%7‹H„Ä,;Ħ†ŞÏgŠ ñÀ[F{òè‚Żµc —Ŝsŭ­F¤!fÇ1í<;Dĵ¤ĝöt6ĝO\Ö#·0ĊעpBŒJ‚ĝÇipœ¸MX‹o$x™Ä³ĵBCQÎÔv:îI“OÄ`êT—('¨ĵqhNE ëĈ’;ÜLŝ¤tn—…a‘@¨ÌòF9Ï’ŝVí§v=Guٍ+D£Xj³Aok ­İsĈÚħ38ŝ?7ÚĴcaµ;~|}ËğdÏDċw~lĠè’>ûucù6–4’ġĥŜ1>HÇ<8‘ÙnwAÂvÈĝÓlCêQŸĵ‹•Ü|JĤJâKíj BûÁ_%éQô[8}MUŻàÈK¤o*WPĈÀŬX’ò¤ĝo[ û­KîÍëžCÙіlV'í{ëŭN/çÔwڏ/€eŠíÚHt”#(^;x-|¤E>—ÁğÑĦ‡Ôځ˷ĈXħ9w|ġq/ŸOĜeo\‘”_Ún!ákû,â„AÔÙ`,^V€ Ġâ3.L_ßò2c? x°PÀ '^˘‹­|QĠ]/ìù|\ݸÖ!b´dH>ITwAN­€€vñ7ħÔÀ §ċ">ŸäĊ´F„ĵeU!náŠñÛ0ŝтšƒnIHàûÉñÛú‘Éô ’蓞8Ġ‘-óıżíà0TÌĦ9—­ƒ–½şS͇§žğĊéN{ö|\^ñĝ•Ĵ1Qċ[˙ FħY+aҙ7>­ §vê^עJd5Ê_MÂx:ŽQ( ċ€ü…Rĝo,°"ŭ·Ĵ¨£áŬq••ˆˆR]+]B’ġáĵ6yüUIÍ%!O1šœW™:E_k.ŬwRۘuVv|'TÓ%mFğ@hżŞE`ç „O-û8gÜ:§¸Ë7P,}ĉ-Á|>˜˙ĥβït5.Á²âñ÷ œü6 °µ˙­J]‘g:³eßêélf&xİİ)ĦĈ.E:µlŒ:€ll|ĉ‹v¤ŒŞ fìPò_UWe^5ş‡ı&M'YûŸD%¨´o D­T2âZïÄ·'­¤ÌWY˘‚­ßG›mêÔ=kıVşċÜìc7}51h­/Ŭôw°Xšôyëë ıèSġڕé+>9ِOÊżĥéÛâ<ŽĴ”O]àġwGŸĉ:#][ Ä ·¸|ğĉ€mUÄr7µċh =lÛĠĵ•qğ9—.#ÛâĞûz:GÙ!nżÀ^ßĥ@DÇ#XŻáZôw(ĝ#^Z²YEۘ9¸>Żĥ…˘_´*ŜJWĴrIċCyżÑöe’£_#p·}÷Sñq4ŝqn$™5CşÖNÔT?:ĜLLßzуŸÇyŭUu39PQ.kŬY(8”;5ÍW+ô †”ÏóŸ9/6:`3pĥê & ž£ïbrPÍ$ÁÜMùuŽŝ0f–/ëv ³-÷ı˜@¸hë ÷ĝ­’=´ßcAÊky8NšÄÈ䚉 _£Ş ë:O*ô•áöЍêŬ+ÙéPdI[ĉ—.žL24sŒ”yFa£SW'EûoÒè:K9\Ĉ$Żyž{/ ×ĜĴ_oÁ3ı/—67Qî=şµó¨ĉˆ ÁŬ–‹ì­½ÌÛ’ŬğôòY֍<ï‹m}ä6bÑ÷äÙ1ì´x2?;Ó`ĵ~/BN•ŒĝOĜó¤qI‡I>+ÊSUVġäĞ›ˆDž˙8ǍıpBŽEŬ´Ÿ)[MMpV“…ɉ[mċ“q*Ľ3 ÄǙ?ŭ”ş“?Xg!<ö0˘ŭŠëÒ¤:³ë莎³·w¸ĞkĤrsA{ŜĜìgĴêZ]/Ì.ëWóèXY=Îğ3Tȋ„`lr•üGTgÛÉ=ì;£ċdÑSUdòú}ĤĞê’‡ùĦ†ˆ`×8Ĉ?)„›Qލ:ë2˙êĉ~ÜIeÙ,Ĝ”ċ>JQáÄċ‡rÛı\eŭ6EJŠß;½GІ’X.×ĵ@GŒ>ÊFŒXé{g½\úá. {âNÓGg|qFC|î[Ö6—2Ċ=€Žż}Ÿ^`˙7s–ë†%=6²ÊÛ1v6ĥŽgz·½ş]·6DaŜğç:SèÂâoĤŞéŭB,qŜ‡‰ëF{VEžkÎĊxçÓ Ċ[Pu¨nTp(wĝ†c£lOœcÁíÏz0Vb}HÜĞŬ%ŝ'’‰`ê"e ™&wöh€ËžôîògŬ£ [3/#‹c>Ü^"³c‡Okç:ĵIËġ›ëş5_3½§ê9ì£ñKšħ?öħ§ıBÇ`nĈ6ğà|êdiÉ`ĥZÛpĉÙı2Ĝ4ġÛrùqÄ˙-½ğkC˙L{sô‘†™{]´mÈĝëjݽÑ0 Ğ‚‰à™ĞïvÜŝM%ϵuĈɐ%{xë†KjӀtÛwîLôgÄ[‚Ùidġşôgl0ƒîg­#AڟìiWàÔ?,í‚/ŝµ>/ÄĊúğ^z ‚×ÑÜ´ó>seQÚşIšššSUñ?>Ĝò˘ 5ÛíƒäżER.CĊ­+K§ °ïT+˜É şÈ—:ì… )lqî’˙˘ŭy+I¸M†Ğ:QIùŞ9~żN‚;Ucû%ñÁ—íeĴôoÙˆó£³êzÂê'ŭÙZÇÈ­ƒ`ˆÀ$FpµëÑöQgŜnÀü‘^™ù/ϓ äĵ§ĥzîGĉd&uyEëPS`ĞŸì¤%İ긙l†ÒgœÙ ‘ŽġŞ)“£hL‘bĈ€mĜÀüċÒ;ĤiàÄhĞ ġ0~*>n ŭ‚ŝVğ0möÖ?G亸 ½ĊÔSäÜĵEoílK„YßHĥ_Z˙2£$¨ÇAÀ‡áw›7àĠÉŬ/ൂ².ĝÜ÷b‡›“,ù;z‹Cĝ}-bÇĝ§{ò –RÀ›I˜ÔYÀ‡¤‹ĴPÔŻËĈl,ĵ€œPġù¸J?ŝûÀqŜ[£úÈœo\և•Ñ÷ö–cŠV}Ôĵp9Ĉfüâá„ÁÏMjş%tœâR ùĥ˙jÛe$f>Ŭĵvû­ÑHĉ.êOŞd&é°g·úÓ;˙ħPüWIĤżOù&TɇZ•§Bšx™hıĴ$Nċ>ŒJÔÙ@.PúûßÌÄŭ…2?ΕğŭK“)áûVùv£ôµÇ$z £ic¸0öl÷-]3Wc6YÎĉ²•;Ü2oWHáèŜş†œÑĦú0ìŬċŞrbn·îoèÁäÈ?Î qĞ!p˙KèDSc|1=Ĥ-+Ó?.^ pĞôÖGÚW³‡òxĝĝ˙ĜöÒ¤F<ġž°ÒĥġcXzèUV‰†ŸÏ 4_iécG=rlÂĈàêeŬ^8ëBfl×ĝp ݁é ä˜rĈVßgĊ;×ö1=;Tôµ.”4Ħ³"Ċ$59g|äpà'‘Nnú C¤_˘L¤ĈŸ ¸SsşŝˆŝĠM­+z7G%üĦŜ”\s›³Wû˘-b #çŝşÏ—z²ÓF[á`sSÜĝĉĜCdı‘FĴ½#ô˘g>óïw%&Ϟşu)è`ëÎ Ĵû’²kt7x? C÷$÷Ħú…Ĉ­ÛÈ?çփ·qh£ùşG*{/Ĥ˙ ‡xmYáM¸˜¤mĞıŻzâÒEç–T0ĴHÍĦŠ!í}͐Ûa3A?ìÈE^O(˘ÏÍİvVÊ.„@ËA}ŜÑ_ñĜżÀ‚ÑĊÚz¤§fycqjm˜€‡‰1z6<ž|MßŬ^Ŝ;鲀Çô_q§_at.̍Ŝêw*ħÜ. tĉ„K—†“Ĵ_ñT1]!‹ĴŜĵ"úWŞòMSĤ̚˙żĊßżçê(›žĞq0e}Ò2>u˜bWxôJі­ó×Ùc$Äz{tçq²§ŜÒ]Ħ‹>. ·' Ĉ{š€ž èz²ĈáOÀÎa:|ρ?ĈH2ŝtíˇsİkô´u"rÏNà(L÷ġà×ê>äÏòê&̸=Ħ„ʲ-Òż›b|gĥcÇĊ7XÏûÜ×F.÷Ž^’Ï÷ìQwÖ³è9X/Z¨Ŭw…¨Ĝ9E™ú‰>ĵp³ŝ=ĠmÜżŻé|lVÜ}”DIúIĞNĊwg6Ŝ ŬŜö˞jü) ¨7VšŬ$$5$”´ ÇÇ. i+£,.Ż^G*îïôŻĊï˙nêñ>sCŸ"ôŝ"ü™:Ŝ}r€~J÷Ĝ@|`çH„RĈ(Zo†·$İ#G#{Ñ…ĴÖ/ÇĝàFÛnÊSú SŬ{Ħ7WCjŝ3ŸÏúqÁ ż‹Çq"7ĦcÛëÀB)k­jġÛ^Ífû"CßÓíÇâ?ÏÖnĊzcœùLµ{™×½*v˘ÇzrǨֈÛĝ͝FÑ; ÌŜúgşZ ²é7!G  6½”(è"Ê›ğqŭ4WĉÀİ,íÜxôE2†h?ívŒ?.›ĉq_Òs'âÂÔïT\|ĦŜďMM݇…+êĴU.ïfm§ÛŸdszŸ1› (Ff&k3yβŽÑŬ4ô”ôİօ}4b·%ˆûѽԞö¤¨“uµşïi>–e–ŞÛ·ĊŬöá|îBjĉN HéšâÈċEšö'gj0ÛÎ4,ÖĊ‰ğ36úŜ+ x´ài×ġ%‡·a-6w½£7³ŜIö£ħwĵßÇçj?N ½O@ÙÓÌZŒóposöĤ¸ß:ǚ ̃Ü5˜:Ż1ĥó\ENġ¨qĉ@¸[ŠKŭʲ>8ÙgÎV½ĥ-6ŞdĊ|9äf™µndàÓŝÁı“7L´ßĜŬ86j°#żô ûZ꧑)5 sy÷ùS }úOrn¤=vëĞâ‰@߈ċâ×Q½W쐞ġG½µ~ˆÜß…áL›+gZöj´€Èt{ĥĝ;>Ĥžíh„Òí̌y(™÷ßZ~Ŝ8@3uZĴĊî[ŻTÓ% ŽÏnÊá]Ŭ·éĞK]Ú÷xY@’µóĦÙċïû“ìÈ}iôm]›ŠrC—¸“h4""ğHT˙634Çöĉڟ.Ğ9Ğûƒ½½8˜Ù ”$L‡SK­}œ$¨' ÷—¨˜ÁÚRZIéµċ›û³Ħż7;{°tîíŻ?;âœÜİ{rĤÏvkġyàӋù·œì= /éR™Cşۓé֖İ`wkùÜ>љo;S„cCú{DŸÜÔ;§ż1{À Âİ |WvÏmûo˙66Ğ„Çf×9lóĊ"ea¤ġ ³ôóv[‡ô ¸vdÀíÈ= Ú9û@ğ‚@w†l)BgË9rk_1cqĥ„Ğ ÷™‡Wmc`-Ġ×Sä -4ì› [ûҖ׌¸Ê`#û ó:fİ>îzDžG"žZÉHƒŜĜ Ö/éş2Ž?g3ôhï>4Ö&Ĉ;_˙GâoĨ6ġ7܈0қ²!]Ġ (ó’{Ŭçlz–‚ùèáq›­g¸°KÇñ°u?:ڛ[{k9}>húsċžÉ~pK _Xŭ—>%.P2ÜKŭğğ-A·–ÉŽqìĝ.„5íüY•XżM½MguĠŝW#´öÀİïħXϧ¤ö!Éġĉvœ \ĦIv/YÍ]_ƒ0´ú€İR6wì?ÜÓ=·ħ6àkûċËÇUġv§××ċ˘àŒÎ?ŝ¨·2Ŝ(ĉkk>–¨Ì×Ú<£toĞ9/lŸ 9î(ín€ħIw6ç`[͕MĠsU%€)v7ò}sCÙ/Xuġ¸×úEŬŬSm鋑wıŽżĞZÒYóKñAÊCì¨#ƒùÙĴvgĉÁfx½ÁĴuMHċQÄGj]Œ÷ëymò•İP#¨Ŭ’Ï>k푆ñ‡Ĝ§i,|dç˜û‹°ž{‡‡¨a”úU£Ï_{ĵuşù|3Jĵğù<òÒ½7zŽr³jy•éú_)ȏœ2ò²z÷𠘛†1B£ïâ.’ρK...µGB| 1„Ĝ_u}g{Í55Á_—.Ĝ·û˘N{ŭĈf˜/ ÷•s…kĝ2OLÙĊ]_z"Ĵ‡ñO/ÑE{ĦG_½örŭĦ`öUù—!óQŸòôm$ƒ×{ŭáK"Ġ›•ħurĊrw{]ÁŽ{˙ŝ6œwĈ…É]kÖäᤧġF{™ĉ6W¤_0~ä-úàñ^ǙxŭùEĝ9ïëEËĝNéË/È]cöĵë1ŞÑjâ§çÄ'~#$m ˆ_ze=ùqpB3+kÚö÷×àp—ĉÊ`ŭ ‡‹?˙_œm˙AΒġ^f8חéĜ^9F£ĥFîħ 4Ŝna”â aï.ŭ•1mçŜ°Ñğ?)ĉFîŞyç‹ËóÄ uĞ;Ċĥ£Râè*úH|àÁot‡o×ÓS_† û‘}S÷,wŜĜGĵú¤Ñ !ñíP5ŻµÒ·/jşğᔌ=\ú+x°Dxĝ€>ôxìŻŝKwÍ9z·Ŭ%âxûŝm{³çOéÚs3TR´Ot.ƒĊuè7ş ?Ĝ=#OŬĈi÷7ÍÚ{µ§ĉècĴUħ?àħ³UéËFVÀEáÔÙİcèħWïè`ŝ`Ż7˜ ´ßôŻż|gu £+îŻÏu†J‡k7ıt#÷ ğ+F_lôÛí`_ş¸…!í/cÓ³Àoz“¸ k”[Ó0şàç½83W&ÀT²\ol+Ñuvn°éK€_8zż€?°úzq‰½Ùċ O_í ğpĝÓ0çĈoà^ĝä|8+ŝ‚:,ѳzŒ­›ûüµËn/ˆ{š-ŽPAWĠ0oymrk‡–˙^†ŸÏ€…m ”ÄkGo,7ò`2G •úRw­<Ĉéß׸š6ÛĈş—ˆâ"~|ŽŬ‘Œm—B¸cĜĝž²Qà¸oèO“? ö4 ~v/ŒÒ{î'˜ŒÍͅKĠİkD”Êċf8W^Ĉǟí‚sĊçpá0ku}ƒA÷@ç?rĦv÷§E}(a;ŬĵIbhlL.~úPÜġ„ôA|á8ŻğŜ  v<˜£µkjšoF=yCCĥ} KŬ;ŻëİSÁ½D;ێÏ5·ż„>c…ĥ"ĉg" œìâ\ġÈcOñâ>ĵSĴ;_ySí[ġöv–ġ80Wô&pl”ƒ·t/ĵúĵĦĠ½}ï‰:ċlLí<Ĉǵ÷Zsĥ/WÏçĥ×ÀİòúÖl>ÎĦİĠ`×­ZBXë`…GGŒ iŬ‡/°…mGÈJàË}âӋгG—(m=&îk"2K3²\!\˜“ŝU ġ_€Áe|_ÌP¨Ç¸äĜFŬüÍGĜ£{†£°zÏÖ6†;ÚyC“î3—t“rû~ì> ›6éÄ_½›÷"=}mëàgDÜÌ{&‡ÑD£œ ħïĦçn(&]>.‚kpî·Cöîç-{ s÷Cg½Wırè‡şÙ_s˙Ïy¸tÌ el#šùs×Úoħ^YĈQÒ'£‘1żä&ŝ1¨Û}~ö% żW4†‹ HĠÈwŭeU‚_p¸··âĤaƒ  Žén7ġ,ïĝí°gÌLyLÔòcXö§V×;p˘û í8üıĜy3c÷hŬ0(èê1†?UPîċ71’âÚ3Ĝ›WpQqáW*ÚÚĞz7‡ÁȖêod 5·=wŭeĵéóœËÍz˜ŬĤ˙İŒ/ħŒˆ\×xÉïw$4ŬiĈfÖ *s~r&۝po°ħŜ†OşȋŻġ‚ Êŝé#ç÷á7fSÇK„{Ï1‹s÷‹—yöZ˙'WE/˙EŒuÒ£ #39E=ázdĈ\û/ċĤeZ…ùšsŭ˜ëxZ/ĥԟ4=˘1ôġĝüf\‰=FÊDżœáŞŻž~›éĝqÜÉfÓU‚ ä]7´›]ûğĈ…ÇÏôŜçbD•·Zc²ĈĠPO³PÜÏÚ^t8ñ|.v”ŝĥ^G15/JÉ‰Ñż˙îŜsŒPĴŬ7ûYïtí1#^¨ŜŜ\”ŝ‚‘ÄÏtÙw:IöĴ~½ê~ĉˢŭvpô¨Ï•Éœi…\_)QµFÄ>sÓŜĞ83ԛ˙ĤÎyë'l¨Ċ˙vCökïâ½ÄÏàš£ĝs9ŝ.ğFú÷5oìRˆ‘ċ˜Ž;&µn½ÏGVŬ˜]GÉNρşëљ‹ĝŝĊ lfÑhBÖş:Ÿœ0š¤ıġeċ­…‰ĝRrƒ7ĴÁ(×Ò {[…^]Ìû1ÜŸÉÜ+-ġĊcèĊžáWníïŜi/ íêû{ßğÓêıżğmù9˙Ö}9cô…½"FO³Û}Ŝ“òGùêÀS<Éĝİ‚`Ĉ[ÛЃëŒv…aA t—Ö˜Ĉ%ĵ0²‘ĊZğ‹İĈñó¨ĈĴ˙î\ż›Ġ<×ĥgàêĈžw~cĊF”€ğ6Co÷cuyyĈÄyğÔî´ xhˆÂÈ ٛ#Jĵ)·ŻueX=óŒıŬeݘÍı1ÂġÚÛ. ÍÓ=ZKŽ·$CÔ^ŬwîœMÇ'ŽĜÈ-ü|ŽeÜ>dœc`Ġñ)€³RıèŻ‘vzé]ŻĵĝÖ Î4óëR÷1fœžGÜ'ĊêWóñ…yv§Ö‡ÀhÜàu!ŭîb†îìéĈ°$c°cñ˜™”ioŝìupÖó%ĴsğŬúş¸{ÇaiÂñ7‡šE1ğ´÷†k×b}!?˙{gŒXdÔ}Û}˙…T8£lFҋ\5끺íË“µÇßC}à̚ÙĜrŒ>5íŜ}ÉĝɓĥéI— ˘|i)7s¤üĞşêPòíß´GÙÇoC&ôĜ{²‘wµC ×#è³Ö·Ÿƒ‘ġÛġ!¨NŬpÎżü„ñßüc(?÷v€ĉwk„èM‡@ôfږè{Şĥy”/{´ó‹àV/Ym˙-ÇFä/z˙EGÑä혁3h ĴB`d›Ĵ7j·ôÙĠEMñ…(Ô·Ñ/ĉ]ÁÂ@0x§—˜•ô­{Ïır†ĥ§ġwbš>Ìĝn/HÖkÇ(6c6w½Ġ}‰Ë_Û+AŸ×†:BžĈJjŒĈĦġÔ÷ĉBİĠe§ĉS7‰îÒĝ^0ÑPƒú+=3ÄG'ÁI+é\KHĝo;ú·˘Î0ïĊĦş püŬ˙J+iïıÎ| HŽï2&ÎbŽÄÊ ĉÍE Ğë. ĠÄ>їíHwiñŻñĜÖEĉïzˆ/)ê!Xü}~ŭ]}m .Cğ÷Í´Ç < ŽàюâƒÎôĊᑗSÏîŸxċYz°O6çĵîÜsĵ÷é/N°k û’êĠZŞû^ûív;‰$}WnïZşÚôJ[öñ7bòÏ ħ³1²<îġÎğ^ŸŽµo3FµQŜV˙ñĝ’äĞħ½´³.ƒ‘ ıôĴ­İG!Ġt½%¸ŠÀÀqPü ^ĵ–xa íÁ„ë!à*CŒ{Ž›ÁÛ}v\/ €}ëpħ_ŽÀÁ°_h#u3r{£‡t‘Êคñm>ÀŜKĈŞiŜĈġHœGĝĜààÊ£Ì~ġ)KĈ#4êòì…À÷€éÍ̅ÛĞ̝š|Ñ"íŠù&ïajGîşµs42\˙DóıkxÑ]H ùZšċiżï(öÖ~·Jx}Qġr"t/,ùÈ·žäçÁè…èër'\Dµ™žK]öĦ3ҝ{ĊĜÜ;oéEġĠ€Q[Ç`xߍ‡É^`×ĉŠöWdQïyŭğ÷ŒEŭWñoĜ =5’kSôŸ¤‘Ħh_Ħ?ôâϧ€/Àßn·Ûö–ÀgTŝâ\Â߸ˆ˘;rxon.œ>rCwĈ#`Ĝ½íßàÂ$lNz ĵ8é—alMœcÈŜìëm”Ê:~‡Ám@ñŻ ĉ6–ññ`:ğ”cĦô?†Îœúwxû½ô\Ë!Çġ–ÑÛôÇğ6Œj´ü‡Ëï7˜úıö7ïÙ;€À—ÍŠûNFcl†—Š9k<ş¤ġû%êT?úvc¨ıżŭZÏÏhTbxSê yxa˙JŻä*ûĝóîòEúCsşS·İÀ/ĈÄĝÓoùWVUŭ ³ċÏÁ—_ËO/­qĝlġŞ£ƒé7UĞŬĉ5ôĵKL@í´èáĉC$úcyŝŒ~&ŭçŒ\t‰Ĝ~j~àϗB.P@÷²QÀ\>œŝ(/´µ²ó4öfħèès÷ò´gÔìĜ'{_B_0|xRĠ`]š³oh°ż/œÖ—˙úŞĞ`7”â/B kĉrï=2Ş`èw3'97¸ Áëcôbù8ú6ĥFġÚmĠeO3@×öï¸ j|ä<|éÍûwÇ֗wVŜ$:â³żÒ<†Áƒ%vŻwîäMŬÚDĥŝô­Ÿ£Î˙àŝıÇeüù×÷ħçFúx”o$żÊ;³ovoÑċ#[bò7‡‡Ŭ ĝÒc~’ŜCš={; 3Öԑ´ÖáòŒ>~üÖÑYš+^‘\½­AïÍŬû\¸òšìF7<3£q…ó1 ÙÏ.wħ< €agöeĝèßáE`ÖWVà… tníPjoòÇt8I=IÄ^Û{ú`0 ¨á&W™NċÛQËÀŬG à Xùà†£ĝu§Ĉ9Ġ‡ŸuXèñWkOÇp~׍NJí]/qêżüKÀ÷¤\•×ÖbdAGVuôÁ½aŒài0ôИ9 ‹ô…ô/O@ï‰Î/vú§ßŒġòÍÌcû·sÖutÁ;×ÖĊĥi½%p~ë}riRG? =ż~Nۋ'ސí%‹úBoà TËùp×#~”Ç— ĝeŞóĝ*Q³Çy§ŭ’äw9Lċŭ]èêÁ_§‰ì²àïÂbş‡ğT½_x||™ah)û⤠Çıí1àËĉçħ›ï†76ĝSvÜËĝğì@V÷òfÑYK¨ëaĦ‹x-ħ}=şk†oW‚oÄ?şêÛ1ŝ;–— 6ĝüÂü ì=ŻÙ|,Ïö Ûĉĉá²7à‹$Yw1/o„Ë ĥĜ (ü (×½gÏs~ù+Š_áŻAŸ7IïÜϋnêOûÑġeġÄÜoòà^4n`y·Ÿ÷ÔkoÄc°żŝ{\ñċé{Žßïâ¸}ü͇ìÔ™ĥ'mLħ 0£óġ¸4_œë>ş0ÇŝܙŬ–#‹èß,XÜo/½áh˘İ:6.#GàKçf €.ïŜz8/Ĥ·ĉ÷kĥÁÑĠÓq+t\Ö$<sïû/-ÁĜšĝWżp›;ïż÷ĝˆ.ÎÑx@Ë8ŝŝ›ŽġĉöĝnmOYğ° 'fd*,uŬ ½É¸2Çĉ>FAsˆí‡š\ôĜÚ 5ġħi\됖 j—WBŬGĊQ_¸ĠÇÀwĊÖ~ċpNuUÜ˙ñ·Ö•WìÑcĊ=Ç0Ħ‹&‹säÍKoYŬNüÀ‘ŬÓ§§LɗŞR^àşCÊÁ—ŒŠİgt¸›ĝ£â¨Aĉ‹EßċçżĝĴKQ'À¨O/ż£ŭы‚ÛĜ`4§;ĜÄĠĈ"èĵ€ÏŻĥ}°8ż ßĥçœB§˙„>{ì9­ż,ĝğS>ĵÙp9ï½xż ³û³ŻL았DwÛìŸÖ(úĵ0ÄË0ûĝä”~‰ŝfcÔ-[ĈúÀċ÷qğö+nŞâĠpô@ç&\]ĜÇ}ċ^`Òh!è‹ì͝—Xn)Ħ+r9šÙê<]ié_PdŻÉ0_6²ıOĞï×cŸÇy”Ğ—~İ´q^ސ,÷­|Š:íê.H™ ´6‰Ì×fZêò w.€ŬŸLûî.{SÒÊÏǟMÈóx ŽÓÑÓMċdÏlù€İUîÂaĤ쒜bßC?y0Ĝ+HÔġ`cġ’îÑù·Ûñ‚ wmòhu½g}Œ… ^€¨­!Ü/_ŒÂÈ-ĈG!#tµ|"äĴâeü]>Bımk7†Uûä>c1Ż /żŒwĊns²Ç;‡A7vŝżˆ?ÎH‡7Şô×bóġ¸K?´>³g#›G…šµÏÀ<ÁĤ?‹q#p}úçK3Ġ›²ı/„ÉέFb•ı„×èjıŽ*닗¸µ÷ÎàĴ7N׺;ĉÈú}!çcp …‘ÁÌ\ƒŜˆ‘×›ĵK xë_ûü ˆ€ž.oŻĜşúëígÇġ’½{­ïx†Lk[9Ħp€ŞĥŽŸmaöT/ÉbÎòÖܔÏ›³ ì:šİ ³ /qŬr=ÏE_˙‡ŽÍŭġŬ÷cw#™ŭŞG~ĥ5Ú{^àp–Fá§'Ù é½< #ï´ÖA,£y>Ÿ{İèÙezŝì‰ù5ĝë h~‰¤ğ§ġĜ¨–âüÉğ„8½ÎUÌ}'UĉĊhŭOĜß^ħߏ)ĊhŒÎa_xsµ€ż¤Á^Ôa/Âl|C¤‡™pĉ$ïÖ_ŒÖË1è²gŽĈ ˙àçŜeœî\˜—ŜGŭ3ì,Ĵór‹­ék×kWĵlĠkìFp¸… G_`â­mÀžûj­dL'òKĝ3‹áӗĞW¸kr²ö"üùŭE\ÚqEì3#ğ/½ĉ½íšáùòéR̃è:Ġí*{à6’êá3˘höÌ£_şè1œBÁx`Ì/_‚“ŝ"]ĵĉj(Ċ…ÁŞ=ÙĜeş‰~#ĝë£îÂëyŸÍ=~  tenİ !NK^ÇVcA8Š@˙îĈá÷ôôË×êŬ˙"ÇÖk8i•KŻĉŜLÊûԎr(ĤşÏ-Ĉ˙Ò7¸€ÔġeTŒ­żżÇ½ß˘³OÍ.=ÊqM]´›^{ı/̅= ˆü\ó~ܸScó"Ê\¸k,ocÂWp|q #ïçİ$n‘`ZŜô°AÂó }şÒé|îìĴÚ_GŻ‘Ĵz>xŠ;òáÏS>ÔTkıGÉ›‰ÁDĜ÷5“×oúĝ˘ċùt;4ĝRÛ!÷ĥïİëôèħrĜ=W¨Ze ÀHċżĠè*cŬˆPë:kGĜ•Ŝ²3Ïè°äԁòżÚê<ĥ4ë1údĈTI„:ҟŻ}L•°ŞòO›ql–1Ğöĵäċ._¸Ĝ”r÷íê=*8ît´œK9¸£;Ì&.ĵF˙·‘—ú˙X?²³lincity-1.13.1/opening/scrawl_s.fnt0000644000175000017500000001000007340322074014146 00000000000000~CÁµÙc>~˙Ë˙Ûç>lŝŝŝŝ|88|ŝ|8<<˙˙˙00x<~˙˙~><<˙˙˙˙˙˙ç˙˙˙˙˙˙˙˙˙˙˙™½½Á˙˙˙˙˙ x̆‚‚Ĉ|x̆‚‚Ĉ|| 0 ```=3/9!#bFĈĈÀŠT8Ö8T˘ `px|~~|xp`>~~>8<~ ><$$$$$lHHll:ꊏŬu$D`0x̆‚Ĉ|0ˆà~ŝŝŝ8<~ ><<~0000 ~<Ì~ 0gü`0ÀÀÏĝ dĉ˙g&<~˙˙˙˙~<$dLH2?ĉdäDD|אÈ| ‰Ó~a“’f 6iɇcAÁŸ‘‘Ž€ƒ~8,$.zBCÁ€ü†‚Œúƒŝ~À€€€€€>ö‚ƒÁACF\püÀ€ĵà€€€ĝ|@@Ìĝ€€€€p\GAáğŽ€€€>cÁ™Î{~CAAG|Ą†ƒ|ǀÀ|~?èAAA‚‚‚Âf<ƒÂFd,8ÉIIi;>&f<4fƒf4ŝ 0`À>0000````|€À@`0 < x$B>@@ 8n‚Ĉd?@@@@@|Ĉ‚‚†ü~@À€€À~rŜ†„„ä<|†ü€Ĉ| 0Pzʆ‚Â~†ü@@@@À¸ìĄ„†l8@@@@LĜ°à˜Œ„ ĵö’’’’’\vBBBBBx̆‚‚Ĉ|^sAACĉĵ€€€z΂‚Â~ĵçÀ€€€€|Âx Äx à\@@@`>BBBBBBg=ÂBf$$$<‘‘™Ën8‚ĉ<3aDFBBf>x˙ p˙p000080000008 p`vÜ 8lBÂĈŝ~À€€€€€> x`BBBBBBg= |†ü€Ĉ|$B8n‚Ĉd?`8n‚Ĉd?` 8n‚Ĉd?|B<8n‚Ĉd?~@À€€À~ x$B|†ü€Ĉ|`|†ü€Ĉ|` |†ü€Ĉ|$$$B` `8,$.zBCÁ€8D88,$.zBCÁ€&@üÀ€ĵà€€€ĝîğ~Ĝ‰w?IȈüȈ‰$Bx̆‚‚Ĉ|`x̆‚‚Ĉ|` x̆‚‚Ĉ|0(FBBBBBBg=`8BBBBBBg=`DFBBf>xc~CÁÁc>cAAA‚‚‚Âf<~HȈ~"" `@@_f4 <>p\GAáğˆˆˆ¸— 0P0 ` 8n‚Ĉd?  x̆‚‚Ĉ| 0BBBBBBg=6Ì\vBBBBBfBBbftԔ””ˆ
p8dL8p 0`@Ac>üÀÀÀÀ ` !'8`΋  ` !'8bʊ6lĜl6Àl66lDDDDDDDDUŞUŞUŞUŞUŞUŞUŞUŞŬwŬwŬwŬwŬwŬwŬwŬwĝĝĝĝ<<<<<<<<ü<<<<<<<ü<<<<<<<ĝĝĝ<<<<<<üüü<<<<<<<<<<<<<<<<<<<<<<<üüü<<<<<<<<<<<<<üüü<<<<<<<<üĝĝĝĝ˙˙˙˙<<<<<<<8lFĈÂÂĉnlî0 vŜ†„„ä<~ÙÉË~|̎’’ĉ|@À~À€€ŝ€€>vBBBBBBB>|Ç>~>`  0>0`0 |Ç3330088 ÌÌÌxŝ00`vÜ `vÜ 8ld8b&,80\vBBBB~˙Ë˙Ûç>lŝŝŝŝ|88|ŝ|8<<˙˙˙00x<~˙˙~><<˙˙˙˙˙˙ç˙˙˙˙˙˙˙˙˙˙˙™½½Á˙˙˙˙˙ x̆‚‚Ĉ|x̆‚‚Ĉ|| 0 ```=3/9!#bFĈĈÀŠT8Ö8T˘ `px|~~|xp`>~~>8<~ ><$$$$$lHHll:ꊏŬu$D`0x̆‚Ĉ|0ˆà~ŝŝŝ8<~ ><<~0000 ~<Ì~ 0gü`0ÀÀÏĝ dĉ˙g&<~˙˙˙˙~<$dLH2?ĉdäDD|אÈ| ‰Ó~a“’f 6iɇcAÁŸ‘‘Ž€ƒ~8,$.zBCÁ€ü†‚Œúƒŝ~À€€€€€>ö‚ƒÁACF\püÀ€ĵà€€€ĝ|@@Ìĝ€€€€p\GAáğŽ€€€>cÁ™Î{~CAAG|Ą†ƒ|ǀÀ|~?èAAA‚‚‚Âf<ƒÂFd,8ÉIIi;>&f<4fƒf4ŝ 0`À>0000````|€À@`0 < x$B>@@ 8n‚Ĉd?@@@@@|Ĉ‚‚†ü~@À€€À~rŜ†„„ä<|†ü€Ĉ| 0Pzʆ‚Â~†ü@@@@À¸ìĄ„†l8@@@@LĜ°à˜Œ„ ĵö’’’’’\vBBBBBx̆‚‚Ĉ|^sAACĉĵ€€€z΂‚Â~ĵçÀ€€€€|Âx Äx à\@@@`>BBBBBBg=ÂBf$$$<‘‘™Ën8‚ĉ<3aDFBBf>x˙ p˙p000080000008 p`vÜ 8lBÂĈŝ~À€€€€€> x`BBBBBBg= |†ü€Ĉ|$B8n‚Ĉd?`8n‚Ĉd?` 8n‚Ĉd?|B<8n‚Ĉd?~@À€€À~ x$B|†ü€Ĉ|`|†ü€Ĉ|` |†ü€Ĉ|$$$B` `8,$.zBCÁ€8D88,$.zBCÁ€&@üÀ€ĵà€€€ĝîğ~Ĝ‰w?IȈüȈ‰$Bx̆‚‚Ĉ|`x̆‚‚Ĉ|` x̆‚‚Ĉ|0(FBBBBBBg=`8BBBBBBg=`DFBBf>xc~CÁÁc>cAAA‚‚‚Âf<~HȈ~"" `@@_f4 <>p\GAáğˆˆˆ¸— 0P0 ` 8n‚Ĉd?  x̆‚‚Ĉ| 0BBBBBBg=6Ì\vBBBBBfBBbftԔ””ˆ
p8dL8p 0`@Ac>üÀÀÀÀ ` !'8`΋  ` !'8bʊ6lĜl6Àl66lDDDDDDDDUŞUŞUŞUŞUŞUŞUŞUŞŬwŬwŬwŬwŬwŬwŬwŬw   80à8  80 <<<<<<ĝ<<<ü<ĝĝ <<|<|ĝ 8xĝààp 00  <çç< 00 00Ç| 08˙80000 00<xx<<<<<<|~˙÷Çç˙˙<<<<>Ï˙˙080˙<88<<<8lFĈÂÂĉnlî0 vŜ†„„ä<~ÙÉË~|̎’’ĉ|@À~À€€ŝ€€>vBBBBBBB>|Ç>~>`  0>0`0 |Ç3330088 ÌÌÌxŝ00`vÜ `vÜ 8ld8b&,80\vBBBBÀàppàÀ÷~<<>ïÇÀÀÀÀÀÀÀÀÀÀÀÀ<<<<??ÀÀÀÀüüÀÀÀÀÀÀ??üü<<<<<<ÀÀ<<<>??ĝ<<<>8€àĝĝà€ĝü<<üÀÀÀÀÀ??ÀÀÏÏÏÏÏÏÀÀ??<<<<<<üüüü><<<<>?????=<<<<<??˙˙˙ïÏÏ<>????=<<<<<<<Ïï˙˙?><<<<<<<<>ĝ|<<<<<<<<|ĝ??<<<<<<<<<<<<<>ĝ|<<<<<<<<|ĝĝ|>??<<<?<<<<<<<<<|üĝà<<<<<><<<<<|xĝààÀÀ<<<<<<==ÏÏïïŝŝüü88<<><<<<<<<>ĝ<<ĝ><<<<><<<<üü<<<<<<üì<<<>??ìü<<<<üü<<ĝ<<<<<<<>ĝ|<<<<|ĝ7?<<<<<<<<<>üü<<<<<<üü??|üüà€>>??üüĝ||ĝ€€€€€€€Àĝĝ<<<<<<<><<<<<<<<üì<<<<<><<<<<|ĝàÀ<<<<<<ÏÏÏÏ>><<<>??><<|üĝààĝü|<<<<<<>??<<<<<|üüĝàÀ???>>|8ŝî‚Ĉŝŝ8DDŝĈşşŝŝ ˆˆp""`:"""ÌT8ĈDT 8<0 < 8T8ffffff?~~>`86f|ŝŝŝŝTT8|8T8ŝ@ŝ ```~Dŝ(>66$$~$~$$>`<| S&2e8lx}ff; 000 0 066~ ~ 0``8p 8`8 ~~`8 8`<|†ĥĥ€~fff~ff|ff|ff|``|fff|fff>>>ff>|``|ffffx~ < 8``fxxffx~~kkkc|fffffff>68000>`<|<ffff>fff<ckk66f~~ffff> x~`~0`0p  p2L<<>ff>6<>ff>8<>ff>>f><``<<f8lx~<x~px~fpffff>ffff< pfn~f|<````Àŝ>nnvvf|f<~000à<>ff>x~6|ffff6f~nff<>f>ff>6`86f|~fff>6l>f`8l6f|~  #include #include #include #define COLOUR_PAL_FILE "colour.pal" typedef struct rgb_struct { int red; int grn; int blu; } RGB; int main (int argc, char *argv[]) { char s[100]; unsigned char c; int n; int r, g, b; int size; RGB pal[256]; char *infile, *outfile; FILE *fp, *fpi; struct stat statbuf; if (argc != 3) { fprintf (stderr, "Usage: csi2ppm infile outfile\n"); exit (-1); } infile = argv[1]; outfile = argv[2]; /* Load palette file */ if ((fp = fopen (COLOUR_PAL_FILE, "r")) == 0) { fprintf (stderr, "Can't find the colour pallet file"); exit (-1); } n = 0; while (feof (fp) == 0 && n < 256) { fgets (s, 99, fp); if (sscanf (s, "%d %d %d %d", &n, &r, &g, &b) == 4) { pal[n].red = r; pal[n].grn = g; pal[n].blu = b; n++; } } if (n != 256) { fprintf (stderr, "Not enough palette entries\n"); } fclose (fp); /* Get size of icon */ if (stat (infile, &statbuf) != 0) { fprintf (stderr, "Error getting size of input file: %s\n", infile); exit (-1); } size = statbuf.st_size; switch (size) { case 256: size = 1*16; break; case 1024: size = 2*16; break; case 2304: size = 3*16; break; case 4096: size = 4*16; break; default: fprintf (stderr, "Size of input file is wrong: %s\n", infile); exit (-1); } /* Read icon and write ppm */ fpi = fopen (infile, "r"); if (!fpi) { fprintf (stderr, "Error opening input file: %s\n", infile); exit (-1); } fp = fopen (outfile, "w"); if (!fp) { fprintf (stderr, "Error opening output file: %s\n", outfile); exit (-1); } fprintf (fp,"P3\n# Created by csi2ppm from lincity file %s\n", infile); // fprintf (fp,"%d %d\n255\n",size,size); fprintf (fp,"%d %d\n62\n",size,size); while (fread(&c,1,1,fpi)) { fprintf (fp, "%d %d %d\n", pal[c].red, pal[c].grn, pal[c].blu); } fclose (fpi); fclose (fp); } lincity-1.13.1/tools/csippm/csiicons.pl0000644000175000017500000000041210002571332014761 00000000000000#! /bin/perl (-d "ppmicons") || (`mkdir ppmicons`); for $iconfile (`ls icons`) { chomp($iconfile); $ppmfile = "$iconfile"; $ppmfile =~ s/\.csi$/\.ppm/; $command = "csi2ppm icons/$iconfile ppmicons/$ppmfile\n"; print $command; `$command`; } lincity-1.13.1/tools/csippm/parse_iconlist.pl0000644000175000017500000000126710002571332016176 00000000000000 open IL, "iconlist.txt"; $done = 0; $cur_size = 1; $old_ri = -1; $ri = -1; while () { if ($done) { print OL; next; } if (/^@/) { $done = 1; print OL; next; } if (/^#/) { if (/size ([^\s]*)/) { $old_size = $cur_size; $cur_size = $1; print "Set size to $cur_size\n"; } print OL; next; } ($fn,$this_ri,$junk_ci) = split; if ($junk_ci eq "") { print "skipping $_\n"; print OL; next; } if ($old_ri != $this_ri) { $ri = $ri + $old_size; $ci = 0; $old_ri = $this_ri; } else { $ci = $ci + $cur_size; } print OL "$fn $ri $ci\n"; $old_size = $cur_size; } close IL; close OL; lincity-1.13.1/tools/csippm/ppmicons.pl0000644000175000017500000000123010002571332014776 00000000000000 (-d "ppmicons") || die "No ppmicons directory"; $height = 85*16; $width = 100*16; $comp_fn = "ppm_comp.ppm"; $tmp_fn = "tmp.ppm"; ## $txt_fn = "ppm_list.txt"; $txt_fn = "iconlist.txt"; (-f $txt_fn) || die "No $txt_fn file"; `ppmmake rgb:0/0/0 $width $height > $comp_fn`; open PL, "<$txt_fn"; while () { chomp; if (/^@/) { last; } if (/^#/) { next; } ($fn,$ri,$ci) = split; $fn = "ppmicons/$fn.ppm"; if (!-f $fn) { print "skipping $fn\n"; next; } $ri = $ri * 16; $ci = $ci * 16; print "pasting $fn\n"; print `pnmpaste -replace $fn $ci $ri $comp_fn > $tmp_fn`; `copy $tmp_fn $comp_fn`; } close PL; lincity-1.13.1/tools/build.txt0000644000175000017500000000742707757304501013213 00000000000000 About automake/autoconf ----------------------- Both of these seem to work with "config.sh" Tool versions (linux): Automake 1.7.2 Autoconf 2.57 Gettext 0.11.2 Tool versions (cygwin): Automake 1.7.3 Autoconf 2.57 Gettext 0.11.5 How to un-dosify the distribution --------------------------------- dos2unix rename_unix.pl chmod 755 rename_unix.pl cd .. tools/rename_unix.pl How to make a final version --------------------------- Preliminaries: 1.1) For point version, update version number in: configure.ac confw32.h 1.2) For full version, also update version number in: README lincity.rc 2) Update CHANGES file 3) Tag in CVS cvs rtag -r HEAD lincity-1_12-pre55 lincity Make the UNIX tarball: 6) make dist 7) Done! Make the Win package (version 1.11): 5) Build release version on Win 6) Reboot into Linux 7) Run perl rename.pl 8) Make copy of entire directory (we're gonna delete the source) 9) cd to the new directory 10) Copy Release/Lincity.exe . 11) make distclean 11.1) Delete lincity.ncb and lincity.aps 11.2) Delete the Release and Debug directories 12) Run tarsrc.sh (this script might need fixing) 13) Make sure that the opening files are *not* gzip'ped open.tga bad_times.scn good_times.scn 14) Copy ../source.tgz into lincity directory 15) zip -r lincity109.zip lincity109 16) Done! Make the Win package (version 1.12, w/ catalan): 5) Build release version on Win 6) Build the catalan message file: c:\gsharp\pkg\gettext\gettext.win32.msvcrt\bin\msgfmt ca.po -o ca.gmo 8) Make a new copy of the lincity directory 9) cd to the newly created copy of the lincity directory 10) copy Release\Lincity.exe . 10.1) Copy msgfmt.exe over copy c:\gsharp\pkg\gettext\gettext.win32.msvcrt\bin\msgfmt.exe . 10.2) Copy gnu_gettext.dll over copy c:\gsharp\pkg\gettext\gettext.win32.msvcrt\deploy\gnu_gettext.dll . 10.3) Copy catalan message file to the right place tools\copy_lc_messages.bat 11) run tools\zip_source.bat 12) run tools\unzip_files.bat 13) run tools\delete_cruft.bat 13.1) Look around for other cruft files 14) rename the directory (e.g. to lincity112pre52) 15) zip -r lincity112pre52.zip lincity112pre52 16) Done! Make the Win package (version 1.12pre53, w/o catalan): 5) Build release version on Win 8) Make a new copy of the lincity directory 9) cd to the newly created copy of the lincity directory 10) copy Release\Lincity.exe . 10.1) Copy msgfmt.exe over copy c:\gsharp\pkg\gettext\gettext.win32.msvcrt\bin\msgfmt.exe . 10.2) Copy gnu_gettext.dll over copy c:\gsharp\pkg\gettext\gettext.win32.msvcrt\deploy\gnu_gettext.dll . 11) run tools\zip_source.bat 12) run tools\unzip_files.bat 13) run tools\delete_cruft.bat 13.1) Look around for other cruft files 14) rename the directory (e.g. to lincity112pre53) 15) zip -r lincity112pre53.zip lincity112pre53 16) Done! Make the Win package (version 1.12.0): 5) Build release version on Win 8) Make a new copy of the lincity directory 9) cd to the newly created copy of the lincity directory 10) copy Release\Lincity.exe . 10.1) Copy msgfmt.exe over copy gettext-w32\msgfmt.exe . 10.2) Copy gnu_gettext.dll over copy gettext-w32\gnu_gettext.dll . 11) run tools\zip_source.bat 12) run tools\unzip_files.bat 13) run tools\delete_cruft.bat 13.1) Look around for other cruft files 14) rename the directory (e.g. to lincity112pre53) 15) zip -r lincity112pre53.zip lincity112pre53 16) Done! lincity-1.13.1/tools/copy_lc_messages.bat0000744000175000017500000000017507635175610015356 00000000000000mkdir locale mkdir locale\ca mkdir locale\ca\LC_MESSAGES copy po\ca.gmo locale\ca\LC_MESSAGES\lincity.mo copy po\lincity.pot lincity-1.13.1/tools/delete_cruft.bat0000744000175000017500000000171407757304501014502 00000000000000deltree /y CVS erase .cvsignore erase ABOUT-NLS erase Makefile* erase *.h erase *.c erase *.m4 deltree /y archive erase *.in erase *.sh erase configure.* erase *-sh erase *.6 erase *.ico erase *.ico erase *.rc erase *~ erase missing erase mkinstalldirs deltree /y help\cvs deltree /y icons\cvs deltree /y intl deltree /y messages\cvs deltree /y messages\ca rem deltree /y messages\ca\cvs deltree /y old.Makefiles deltree /y opening\cvs deltree /y po erase *.mak deltree /y lib deltree /y debug erase *.ncb erase *.mdp erase *.plg erase *.dsp deltree /y SAVED_GAMES erase *.opt deltree /y release erase *.diff erase *.dsw deltree /y m4 erase depcomp erase config.guess erase config.sub erase debug.txt erase *.out deltree /y autom4te.cache erase *.ini erase *.aps erase *.junk erase lincity erase xlincity deltree /y locale deltree /y gettext-w32 rem ------------------------------------------------- rem This one must be last, because it ends batch file deltree /y tools lincity-1.13.1/tools/findpc.sh0000744000175000017500000000002007617102431013122 00000000000000grep -l *.[ch] lincity-1.13.1/tools/gimp.pal0000644000175000017500000001101610002571332012753 00000000000000GIMP Palette # Lincity -- GIMP Palette file 0 0 0 Untitled 65 0 0 Untitled 131 0 0 Untitled 197 0 0 Untitled 0 131 0 Untitled 65 131 0 Untitled 131 131 0 Untitled 197 131 0 Untitled 0 0 65 Untitled 65 0 65 Untitled 131 0 65 Untitled 197 0 65 Untitled 0 131 65 Untitled 65 131 65 Untitled 131 131 65 Untitled 197 131 65 Untitled 0 0 131 Untitled 65 0 131 Untitled 131 0 131 Untitled 197 0 131 Untitled 0 131 131 Untitled 65 131 131 Untitled 131 131 131 Untitled 197 131 131 Untitled 0 0 197 Untitled 65 0 197 Untitled 131 0 197 Untitled 197 0 197 Untitled 0 131 197 Untitled 65 131 197 Untitled 131 131 197 Untitled 197 131 197 Untitled 168 74 45 Untitled 209 115 86 Untitled 226 102 82 Untitled 127 53 32 Untitled 32 0 0 Untitled 41 0 0 Untitled 49 0 0 Untitled 57 0 0 Untitled 65 0 0 Untitled 74 0 0 Untitled 82 0 0 Untitled 90 0 0 Untitled 98 0 0 Untitled 106 0 0 Untitled 115 0 0 Untitled 123 0 0 Untitled 131 0 0 Untitled 139 0 0 Untitled 148 0 0 Untitled 156 0 0 Untitled 164 0 0 Untitled 172 0 0 Untitled 180 0 0 Untitled 189 0 0 Untitled 197 0 0 Untitled 205 0 0 Untitled 213 0 0 Untitled 222 0 0 Untitled 230 0 0 Untitled 238 0 0 Untitled 246 0 0 Untitled 255 0 0 Untitled 4 197 143 Untitled 4 143 98 Untitled 0 16 0 Untitled 0 24 0 Untitled 0 32 0 Untitled 0 41 0 Untitled 0 49 0 Untitled 0 57 0 Untitled 0 65 0 Untitled 0 74 0 Untitled 0 82 0 Untitled 0 90 0 Untitled 0 98 0 Untitled 0 106 0 Untitled 0 115 0 Untitled 0 123 0 Untitled 0 131 0 Untitled 0 139 0 Untitled 0 148 0 Untitled 0 156 0 Untitled 0 164 0 Untitled 0 172 0 Untitled 0 180 0 Untitled 0 189 0 Untitled 0 197 0 Untitled 0 205 0 Untitled 0 213 0 Untitled 0 222 0 Untitled 0 230 0 Untitled 0 238 0 Untitled 0 246 0 Untitled 0 255 0 Untitled 0 0 0 Untitled 8 8 0 Untitled 16 16 0 Untitled 24 24 0 Untitled 32 32 0 Untitled 41 41 0 Untitled 49 49 0 Untitled 57 57 0 Untitled 65 65 0 Untitled 74 74 0 Untitled 82 82 0 Untitled 90 90 0 Untitled 98 98 0 Untitled 106 106 0 Untitled 115 115 0 Untitled 123 123 0 Untitled 131 131 0 Untitled 139 139 0 Untitled 148 148 0 Untitled 156 156 0 Untitled 164 164 0 Untitled 172 172 0 Untitled 180 180 0 Untitled 189 189 0 Untitled 197 197 0 Untitled 205 205 0 Untitled 213 213 0 Untitled 222 222 0 Untitled 230 230 0 Untitled 238 238 0 Untitled 246 246 0 Untitled 255 255 0 Untitled 0 0 0 Untitled 0 0 8 Untitled 0 0 16 Untitled 0 0 24 Untitled 0 0 32 Untitled 0 0 41 Untitled 0 0 49 Untitled 0 0 57 Untitled 0 0 65 Untitled 0 0 74 Untitled 0 0 82 Untitled 0 0 90 Untitled 0 0 98 Untitled 0 0 106 Untitled 0 0 115 Untitled 0 0 123 Untitled 0 0 131 Untitled 0 0 139 Untitled 0 0 148 Untitled 0 0 156 Untitled 0 0 164 Untitled 0 0 172 Untitled 0 0 180 Untitled 0 0 189 Untitled 0 0 197 Untitled 0 0 205 Untitled 0 0 213 Untitled 0 0 222 Untitled 0 0 230 Untitled 0 0 238 Untitled 0 0 246 Untitled 0 0 255 Untitled 0 0 0 Untitled 8 0 8 Untitled 16 0 16 Untitled 24 0 24 Untitled 32 0 32 Untitled 41 0 41 Untitled 49 0 49 Untitled 57 0 57 Untitled 65 0 65 Untitled 74 0 74 Untitled 82 0 82 Untitled 90 0 90 Untitled 98 0 98 Untitled 106 0 106 Untitled 115 0 115 Untitled 123 0 123 Untitled 131 0 131 Untitled 139 0 139 Untitled 148 0 148 Untitled 156 0 156 Untitled 164 0 164 Untitled 172 0 172 Untitled 180 0 180 Untitled 189 0 189 Untitled 197 0 197 Untitled 205 0 205 Untitled 213 0 213 Untitled 222 0 222 Untitled 230 0 230 Untitled 238 0 238 Untitled 246 0 246 Untitled 255 0 255 Untitled 0 0 0 Untitled 0 8 8 Untitled 0 16 16 Untitled 0 24 24 Untitled 0 32 32 Untitled 0 41 41 Untitled 0 49 49 Untitled 0 57 57 Untitled 0 65 65 Untitled 0 74 74 Untitled 0 82 82 Untitled 0 90 90 Untitled 0 98 98 Untitled 0 106 106 Untitled 0 115 115 Untitled 0 123 123 Untitled 0 131 131 Untitled 0 139 139 Untitled 0 148 148 Untitled 0 156 156 Untitled 0 164 164 Untitled 0 172 172 Untitled 0 180 180 Untitled 0 189 189 Untitled 0 197 197 Untitled 0 205 205 Untitled 0 213 213 Untitled 0 222 222 Untitled 0 230 230 Untitled 0 238 238 Untitled 0 246 246 Untitled 0 255 255 Untitled 131 131 164 Untitled 102 102 131 Untitled 230 230 119 Untitled 24 24 24 Untitled 32 32 32 Untitled 41 41 41 Untitled 49 49 49 Untitled 57 57 57 Untitled 65 65 65 Untitled 74 74 74 Untitled 82 82 82 Untitled 90 90 90 Untitled 98 98 98 Untitled 106 106 106 Untitled 115 115 115 Untitled 123 123 123 Untitled 131 131 131 Untitled 139 139 139 Untitled 148 148 148 Untitled 156 156 156 Untitled 164 164 164 Untitled 172 172 172 Untitled 180 180 180 Untitled 189 189 189 Untitled 197 197 197 Untitled 205 205 205 Untitled 213 213 213 Untitled 222 222 222 Untitled 230 230 230 Untitled 238 238 238 Untitled 246 246 246 Untitled 255 255 255 Untitled lincity-1.13.1/tools/i18n.txt0000644000175000017500000000175707340322076012666 00000000000000 Current status -------------- Version 1.11 is partly translatable. Just substitute the files in "messages" and "help" with your translations. You'll also have to substitute the fonts from version 1.12 so that accented characters are visible. Version 1.12 has better translation support. Strings which are embedded in the code are marked using gettext. It also contains the necessary ISO-8859-1 font. It supports multiple languages on the same installation by changing environment variables. Finally, there is a Catalan translation for v 1.12 which you can use as an example. Getting the catalan version to work on v 1.12 --------------------------------------------- Do a configure, make and make install. Then set LANGUAGE environment variable to "ca", and run. Only the messages will be in Catalan (since that is the only part of the translation that is done), but at least you can see the translated "Not enough tech" message if you try to build a high tech item like a rocket ship. lincity-1.13.1/tools/indent.sh0000744000175000017500000000136307340322076013155 00000000000000#! /bin/sh ## Unfortunately, indent doesn't do what I want, which is to respect spacing ## after commas in function declarations. tmp_file="indent.tmp" if test -z "$1" -o -n "$2"; then echo Usage: indent.sh filename exit 1 fi if test "$1" = "--help" -o "$1" = "-h"; then echo Usage: indent.sh filename exit 0 fi if test ! -f "$1"; then echo File \"$1\" not found exit 1 fi if test -f "$tmp_file"; then echo Scratch file \"$tmp_file\" exists! Please investigate. # exit 1 fi options=" -nbad -bap -bbo -nbc -br -brs -c33 -cd33 -ncdb -ce -ci8 -cli0 -cp33 -cs -d0 -di1 -nfc1 -nfca -hnl -i4 -ip0 -l78 -lp -lc78 -npcs -nprs -npsl -nsc -nsob -nss -ts8 -v" indent -st $options $1 > $tmp_file lincity-1.13.1/tools/lincity.lsm0000644000175000017500000000107607771651015013536 00000000000000Begin4 Title: Lincity Version: 1.12.0 Entered-date: 2003-12-18 Description: A city/country simulation game Keywords: game SVGALIB X11 windows city simulation Author: ijp@floot.demon.co.uk (Ian J Peters) Maintained-by: gregsharp@geocities.com (Gregory C Sharp) immunizer@sourceforge.net (Corey Keasling) Primary-site: http://prdownloads.sourceforge.net/lincity 772216 lincity-1.12.0.tar.gz Alternate-site: http://www.ibiblio.org/pub/Linux/games/strategy/ Original-site: Platforms: Linux svgalib-1.3.0 (or greater), X11, Win32. Copying-policy: GPL 2.0 End lincity-1.13.1/tools/pc2u.sh0000744000175000017500000000066607340322076012552 00000000000000#! /bin/sh tmp_file=".pc2u.tmp" if test -z "$1" -o -n "$2"; then echo Usage: pc2u.sh filename exit 1 fi if test "$1" = "--help" -o "$1" = "-h"; then echo Usage: pc2u.sh filename exit 0 fi if test ! -f "$1"; then echo File \"$1\" not found exit 1 fi if test -f "$tmp_file"; then echo Scratch file \"$tmp_file\" exists! Please investigate. exit 1 fi tr -d '\r' < $1 > $tmp_file rm $1 mv $tmp_file $1 lincity-1.13.1/tools/rename.pl0000744000175000017500000000050307340322076013137 00000000000000#! /usr/bin/perl my $file; my $tmp_file = "foo.out"; # foreach $file (`ls [A-Z]*\.c [A-Z]*\.h`) { foreach $file (`ls *\.c *\.h`) { chomp($file); my $newname = $file; $newname =~ tr/[A-Z]/[a-z]/; print $file . "-->" . $newname . "\n"; `tr -d \\\\r < $file > $tmp_file`; `mv $tmp_file $newname`; } lincity-1.13.1/tools/rename_unix.pl0000644000175000017500000000362307757056274014227 00000000000000#! /usr/bin/perl @upcase_patlist = ('changes', 'Changes', 'copying', 'Copying', 'copyright', 'Copyright', 'cvs', 'CVS', 'faq', 'Faq', 'readme', 'Readme', 'todo', 'Todo', 'intl/version', 'po/linguas', ); ## THESE AREN'T HANDLED YET ## > lincity/intl/VERSION ## > lincity/po/POTFILES ## > lincity/po/LINGUAS @unixify_patlist = ('*.c', '*.h', '*.6', '*.ac', '*.am', '*.in', '*.sh', '*.rc', '*.m4', '*.pal', 'depcomp', 'missing', 'install-sh', 'mkinstalldirs', 'configure', 'config.sub', 'config.guess', 'README*', 'Make*', 'help/*.hlp', 'messages/*.mes', 'opening/do_image', 'opening/open.pov', 'opening/text*', 'po/LINGUAS', 'po/POT*', 'po/*.sed', 'po/*.sin', 'tools/*.c', 'tools/*.pl', 'tools/*.bat', 'tools/*.sh', 'tools/*.pal', 'tools/*.txt', 'tools/fontcvt/*.pl', 'tools/fontcvt/console8x8/*.bdf', 'tools/fontcvt/public9x15/*.bdf', ); for $pat (@upcase_patlist) { for $file (`ls -d $pat 2> /dev/null`) { chomp($file); if ($file =~ m|/|) { $newdir = $file; $newdir =~ s|/[^/]*$||; $newfn = $file; $newfn =~ s|.*/||; $newfn =~ tr/[a-z]/[A-Z]/; $newname = "${newdir}/${newfn}"; } else { $newfn = $file; $newfn =~ tr/[a-z]/[A-Z]/; $newname = ${newfn}; } $cmd = "mv $file $newname"; print "$cmd\n"; print `$cmd\n`; } } for $pat (@unixify_patlist) { for $file (`ls $pat`) { chomp($file); if ($file =~ m/~$/) { $cmd = "rm $file"; } else { ## Note -- need to save the mode? $mode = (stat($file))[2]; $mode = $mode & 07777; $mode = sprintf("%o",$mode); $cmd = "dos2unix $file;chmod $mode $file"; } print "$cmd\n"; print `$cmd\n`; } } lincity-1.13.1/tools/tarsrc.sh0000744000175000017500000000043607340322076013172 00000000000000#!/bin/sh rm ../source.tgz filelist="\ *make* *Make* Lincity.mak *.mdp \ README.aix README.irix README.sco \ README.INSTALL README.freebsd README.profiling \ *.man \ tools* \ *.h *.cxx *.ico *.rc" tar czvf ../source.tgz $filelist rm -r $filelist lincity-1.13.1/tools/tiles.txt0000644000175000017500000000200607653766143013231 00000000000000 Lincity tile specifications (version 1.11 and 1.12). All items are square, with size 1, 2, 3 or 4. The tiles marked "lrud" means that there are separate sprites for left/right/up/down connectivity. Name size lrud animated =================================================================== grass 1 no fire 1 yes park 1 no water 1 yes no power line 1 yes yes road 1 yes no track 1 yes no rail 1 yes no blacksmith 2 yes cricket ground 2 yes fire station 2 yes hospital 2 no market 2 yes mill 2 yes monument 2 yes pottery 2 yes old windmill 2 yes new windmill 2 yes recycling center 2 no school 2 no shanty town 2 no power substation 2 yes light industry 3 yes port 3 no residence (6 varieties) 3 no (planned) university 3 no coal mine 4 yes commune 4 yes farm 4 yes heavy industry 4 yes ore mine 4 yes rocket pad 4 yes tip (dump) 4 yes coal power 4 yes solar power 4 no lincity-1.13.1/tools/unzip_files.bat0000744000175000017500000000031107612354275014357 00000000000000gzip -d opening\open.tga.gz move opening\bad_times.scn opening\bad_times.scn.gz gzip -d opening\bad_times.scn.gz move opening\good_times.scn opening\good_times.scn.gz gzip -d opening\good_times.scn.gz lincity-1.13.1/tools/zip_source.bat0000744000175000017500000000020507757304501014211 00000000000000erase lincity_source_code.zip zip -r lincity_source_code.zip *.c *.h *.rc *.ico gettext-w32\*.h gettext-w32\*.lib gettext-w32\*.def lincity-1.13.1/tools/fontcvt/0000777000175000017500000000000010073426331013077 500000000000000lincity-1.13.1/tools/fontcvt/console8x8/0000777000175000017500000000000010073426331015111 500000000000000lincity-1.13.1/tools/fontcvt/console8x8/iso01a-16x16.bdf0000644000175000017500000012173007340322102017357 00000000000000STARTFONT 2.1 COMMENT This font was automatically resized by bdfresize-1.4 COMMENT mag_x = 2/1, mag_y = 2/1, blackness = 4 COMMENT Font converted from PSF to BDF. FONT iso01a-8x8.psf SIZE 16 72 72 FONTBOUNDINGBOX 16 16 0 -4 STARTPROPERTIES 9 POINT_SIZE 160 PIXEL_SIZE 16 RESOLUTION_X 72 RESOLUTION_Y 72 FONT_ASCENT 14 FONT_DESCENT 2 AVERAGE_WIDTH 0 SPACING "C" _XMBDFED_INFO "Edited with xmbdfed 4.3." ENDPROPERTIES CHARS 256 STARTCHAR char0 ENCODING 0 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char1 ENCODING 1 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFC 3FFC C003 C003 CC33 CC33 C003 C003 CFF3 CFF3 C3C3 C3C3 C003 C003 3FFC 3FFC ENDCHAR STARTCHAR char2 ENCODING 2 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFC 3FFC FFFF FFFF F3CF F3CF FFFF FFFF F00F F00F FC3F FC3F FFFF FFFF 3FFC 3FFC ENDCHAR STARTCHAR char3 ENCODING 3 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3CF0 3CF0 FFFC FFFC FFFC FFFC FFFC FFFC 3FF0 3FF0 0FC0 0FC0 0300 0300 0000 0000 ENDCHAR STARTCHAR char4 ENCODING 4 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0300 0300 0FC0 0FC0 3FF0 3FF0 FFFC FFFC 3FF0 3FF0 0FC0 0FC0 0300 0300 0000 0000 ENDCHAR STARTCHAR char5 ENCODING 5 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3FF0 3FF0 0FC0 0FC0 FFFC FFFC FFFC FFFC 3FF0 3FF0 0FC0 0FC0 3FF0 3FF0 ENDCHAR STARTCHAR char6 ENCODING 6 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0300 0300 0300 0300 0FC0 0FC0 3FF0 3FF0 FFFC FFFC 3FF0 3FF0 0FC0 0FC0 3FF0 3FF0 ENDCHAR STARTCHAR char7 ENCODING 7 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 03C0 03C0 0FF0 0FF0 0FF0 0FF0 03C0 03C0 0000 0000 0000 0000 ENDCHAR STARTCHAR char8 ENCODING 8 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFF FFFF FFFF FFFF FC3F FC3F F00F F00F F00F F00F FC3F FC3F FFFF FFFF FFFF FFFF ENDCHAR STARTCHAR char9 ENCODING 9 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0FF0 0FF0 3C3C 3C3C 300C 300C 300C 300C 3C3C 3C3C 0FF0 0FF0 0000 0000 ENDCHAR STARTCHAR char10 ENCODING 10 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFF FFFF F00F F00F C3C3 C3C3 CFF3 CFF3 CFF3 CFF3 C3C3 C3C3 F00F F00F FFFF FFFF ENDCHAR STARTCHAR char11 ENCODING 11 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 00FF 00FF 003F 003F 00FF 00FF 3FF3 3FF3 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 ENDCHAR STARTCHAR char12 ENCODING 12 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FF0 0FF0 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 0FF0 0FF0 03C0 03C0 3FFC 3FFC 03C0 03C0 ENDCHAR STARTCHAR char13 ENCODING 13 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FFF 0FFF 0F0F 0F0F 0FFF 0FFF 0F00 0F00 0F00 0F00 3F00 3F00 FF00 FF00 FC00 FC00 ENDCHAR STARTCHAR char14 ENCODING 14 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFF 3FFF 3C0F 3C0F 3FFF 3FFF 3C0F 3C0F 3C0F 3C0F 3C3F 3C3F FC3C FC3C F000 F000 ENDCHAR STARTCHAR char15 ENCODING 15 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP C3C3 C3C3 33CC 33CC 0FF0 0FF0 FC3F FC3F FC3F FC3F 0FF0 0FF0 33CC 33CC C3C3 C3C3 ENDCHAR STARTCHAR char16 ENCODING 16 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP C000 C000 FC00 FC00 FFC0 FFC0 FFFC FFFC FFC0 FFC0 FC00 FC00 C000 C000 0000 0000 ENDCHAR STARTCHAR char17 ENCODING 17 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 000C 000C 00FC 00FC 0FFC 0FFC FFFC FFFC 0FFC 0FFC 00FC 00FC 000C 000C 0000 0000 ENDCHAR STARTCHAR char18 ENCODING 18 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0FF0 0FF0 3FFC 3FFC 03C0 03C0 03C0 03C0 3FFC 3FFC 0FF0 0FF0 03C0 03C0 ENDCHAR STARTCHAR char19 ENCODING 19 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 0000 0000 3C3C 3C3C 0000 0000 ENDCHAR STARTCHAR char20 ENCODING 20 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFF 3FFF F3CF F3CF F3CF F3CF 3FCF 3FCF 03CF 03CF 03CF 03CF 03CF 03CF 0000 0000 ENDCHAR STARTCHAR char21 ENCODING 21 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FFC 0FFC 3C0F 3C0F 0FC0 0FC0 3CF0 3CF0 3CF0 3CF0 0FC0 0FC0 F0F0 F0F0 3FC0 3FC0 ENDCHAR STARTCHAR char22 ENCODING 22 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 3FFC 3FFC 3FFC 3FFC 3FFC 3FFC 0000 0000 ENDCHAR STARTCHAR char23 ENCODING 23 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0FF0 0FF0 3FFC 3FFC 03C0 03C0 3FFC 3FFC 0FF0 0FF0 03C0 03C0 FFFF FFFF ENDCHAR STARTCHAR char24 ENCODING 24 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0FF0 0FF0 3FFC 3FFC 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char25 ENCODING 25 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 3FFC 3FFC 0FF0 0FF0 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char26 ENCODING 26 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 03C0 03C0 00F0 00F0 FFFC FFFC 00F0 00F0 03C0 03C0 0000 0000 0000 0000 ENDCHAR STARTCHAR char27 ENCODING 27 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F00 0F00 3C00 3C00 FFFC FFFC 3C00 3C00 0F00 0F00 0000 0000 0000 0000 ENDCHAR STARTCHAR char28 ENCODING 28 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F000 F000 F000 F000 F000 F000 FFFC FFFC 0000 0000 0000 0000 ENDCHAR STARTCHAR char29 ENCODING 29 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0C30 0C30 3C3C 3C3C FFFF FFFF 3C3C 3C3C 0C30 0C30 0000 0000 0000 0000 ENDCHAR STARTCHAR char30 ENCODING 30 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 03C0 03C0 0FF0 0FF0 3FFC 3FFC FFFF FFFF FFFF FFFF 0000 0000 0000 0000 ENDCHAR STARTCHAR char31 ENCODING 31 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 FFFF FFFF FFFF FFFF 3FFC 3FFC 0FF0 0FF0 03C0 03C0 0000 0000 0000 0000 ENDCHAR STARTCHAR char32 ENCODING 32 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char33 ENCODING 33 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 3FC0 3FC0 3FC0 3FC0 0F00 0F00 0F00 0F00 0000 0000 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char34 ENCODING 34 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3CF0 3CF0 3CF0 3CF0 3CF0 3CF0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char35 ENCODING 35 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3CF0 3CF0 3CF0 3CF0 FFFC FFFC 3CF0 3CF0 FFFC FFFC 3CF0 3CF0 3CF0 3CF0 0000 0000 ENDCHAR STARTCHAR char36 ENCODING 36 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 3FF0 3FF0 F000 F000 3FC0 3FC0 00F0 00F0 FFC0 FFC0 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char37 ENCODING 37 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 F03C F03C F0F0 F0F0 03C0 03C0 0F00 0F00 3C3C 3C3C F03C F03C 0000 0000 ENDCHAR STARTCHAR char38 ENCODING 38 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3CF0 3CF0 0FC0 0FC0 3F3C 3F3C F3F0 F3F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char39 ENCODING 39 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 3C00 3C00 F000 F000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char40 ENCODING 40 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3C00 3C00 3C00 3C00 3C00 3C00 0F00 0F00 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char41 ENCODING 41 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 03C0 03C0 03C0 03C0 03C0 03C0 0F00 0F00 3C00 3C00 0000 0000 ENDCHAR STARTCHAR char42 ENCODING 42 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 3C3C 3C3C 0FF0 0FF0 FFFF FFFF 0FF0 0FF0 3C3C 3C3C 0000 0000 0000 0000 ENDCHAR STARTCHAR char43 ENCODING 43 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F00 0F00 0F00 0F00 FFF0 FFF0 0F00 0F00 0F00 0F00 0000 0000 0000 0000 ENDCHAR STARTCHAR char44 ENCODING 44 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0F00 0F00 0F00 0F00 3C00 3C00 ENDCHAR STARTCHAR char45 ENCODING 45 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 FFF0 FFF0 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char46 ENCODING 46 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0F00 0F00 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char47 ENCODING 47 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 003C 003C 00F0 00F0 03C0 03C0 0F00 0F00 3C00 3C00 F000 F000 C000 C000 0000 0000 ENDCHAR STARTCHAR char48 ENCODING 48 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FF0 3FF0 F03C F03C F0FC F0FC F3FC F3FC FF3C FF3C FC3C FC3C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char49 ENCODING 49 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 3F00 3F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char50 ENCODING 50 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 00F0 00F0 0FC0 0FC0 3C00 3C00 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char51 ENCODING 51 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 00F0 00F0 0FC0 0FC0 00F0 00F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char52 ENCODING 52 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03F0 03F0 0FF0 0FF0 3CF0 3CF0 F0F0 F0F0 FFFC FFFC 00F0 00F0 03FC 03FC 0000 0000 ENDCHAR STARTCHAR char53 ENCODING 53 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 F000 F000 FFC0 FFC0 00F0 00F0 00F0 00F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char54 ENCODING 54 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3C00 3C00 F000 F000 FFC0 FFC0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char55 ENCODING 55 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 F0F0 F0F0 00F0 00F0 03C0 03C0 0F00 0F00 0F00 0F00 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char56 ENCODING 56 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char57 ENCODING 57 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 03C0 03C0 3F00 3F00 0000 0000 ENDCHAR STARTCHAR char58 ENCODING 58 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F00 0F00 0F00 0F00 0000 0000 0000 0000 0F00 0F00 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char59 ENCODING 59 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F00 0F00 0F00 0F00 0000 0000 0000 0000 0F00 0F00 0F00 0F00 3C00 3C00 ENDCHAR STARTCHAR char60 ENCODING 60 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3C00 3C00 F000 F000 3C00 3C00 0F00 0F00 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char61 ENCODING 61 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 FFF0 FFF0 0000 0000 0000 0000 FFF0 FFF0 0000 0000 0000 0000 ENDCHAR STARTCHAR char62 ENCODING 62 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 03C0 03C0 00F0 00F0 03C0 03C0 0F00 0F00 3C00 3C00 0000 0000 ENDCHAR STARTCHAR char63 ENCODING 63 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 00F0 00F0 03C0 03C0 0F00 0F00 0000 0000 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char64 ENCODING 64 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FF0 3FF0 F03C F03C F3FC F3FC F3FC F3FC F3FC F3FC F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char65 ENCODING 65 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char66 ENCODING 66 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 3C3C 3C3C 3C3C 3C3C 3FF0 3FF0 3C3C 3C3C 3C3C 3C3C FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char67 ENCODING 67 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FF0 0FF0 3C3C 3C3C F000 F000 F000 F000 F000 F000 3C3C 3C3C 0FF0 0FF0 0000 0000 ENDCHAR STARTCHAR char68 ENCODING 68 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFC0 FFC0 3CF0 3CF0 3C3C 3C3C 3C3C 3C3C 3C3C 3C3C 3CF0 3CF0 FFC0 FFC0 0000 0000 ENDCHAR STARTCHAR char69 ENCODING 69 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFC FFFC 3C0C 3C0C 3CC0 3CC0 3FC0 3FC0 3CC0 3CC0 3C0C 3C0C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char70 ENCODING 70 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFC FFFC 3C0C 3C0C 3CC0 3CC0 3FC0 3FC0 3CC0 3CC0 3C00 3C00 FF00 FF00 0000 0000 ENDCHAR STARTCHAR char71 ENCODING 71 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FF0 0FF0 3C3C 3C3C F000 F000 F000 F000 F0FC F0FC 3C3C 3C3C 0FFC 0FFC 0000 0000 ENDCHAR STARTCHAR char72 ENCODING 72 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char73 ENCODING 73 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char74 ENCODING 74 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03FC 03FC 00F0 00F0 00F0 00F0 00F0 00F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char75 ENCODING 75 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC3C FC3C 3C3C 3C3C 3CF0 3CF0 3FC0 3FC0 3CF0 3CF0 3C3C 3C3C FC3C FC3C 0000 0000 ENDCHAR STARTCHAR char76 ENCODING 76 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FF00 FF00 3C00 3C00 3C00 3C00 3C00 3C00 3C0C 3C0C 3C3C 3C3C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char77 ENCODING 77 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C FCFC FCFC FFFC FFFC FFFC FFFC F33C F33C F03C F03C F03C F03C 0000 0000 ENDCHAR STARTCHAR char78 ENCODING 78 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C FC3C FC3C FF3C FF3C F3FC F3FC F0FC F0FC F03C F03C F03C F03C 0000 0000 ENDCHAR STARTCHAR char79 ENCODING 79 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3CF0 3CF0 F03C F03C F03C F03C F03C F03C 3CF0 3CF0 0FC0 0FC0 0000 0000 ENDCHAR STARTCHAR char80 ENCODING 80 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 3C3C 3C3C 3C3C 3C3C 3FF0 3FF0 3C00 3C00 3C00 3C00 FF00 FF00 0000 0000 ENDCHAR STARTCHAR char81 ENCODING 81 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F3F0 F3F0 3FC0 3FC0 03F0 03F0 0000 0000 ENDCHAR STARTCHAR char82 ENCODING 82 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 3C3C 3C3C 3C3C 3C3C 3FF0 3FF0 3CF0 3CF0 3C3C 3C3C FC3C FC3C 0000 0000 ENDCHAR STARTCHAR char83 ENCODING 83 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 FC00 FC00 3F00 3F00 03F0 03F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char84 ENCODING 84 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFF0 FFF0 CF30 CF30 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char85 ENCODING 85 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char86 ENCODING 86 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char87 ENCODING 87 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C F03C F03C F03C F03C F33C F33C FFFC FFFC FCFC FCFC F03C F03C 0000 0000 ENDCHAR STARTCHAR char88 ENCODING 88 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C F03C F03C 3CF0 3CF0 0FC0 0FC0 0FC0 0FC0 3CF0 3CF0 F03C F03C 0000 0000 ENDCHAR STARTCHAR char89 ENCODING 89 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char90 ENCODING 90 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFC FFFC F03C F03C C0F0 C0F0 03C0 03C0 0F0C 0F0C 3C3C 3C3C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char91 ENCODING 91 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 3C00 3C00 3C00 3C00 3C00 3C00 3C00 3C00 3C00 3C00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char92 ENCODING 92 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F000 F000 3C00 3C00 0F00 0F00 03C0 03C0 00F0 00F0 003C 003C 000C 000C 0000 0000 ENDCHAR STARTCHAR char93 ENCODING 93 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char94 ENCODING 94 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0300 0300 0FC0 0FC0 3CF0 3CF0 F03C F03C 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char95 ENCODING 95 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 FFFF FFFF ENDCHAR STARTCHAR char96 ENCODING 96 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 0F00 0F00 03C0 03C0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char97 ENCODING 97 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char98 ENCODING 98 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC00 FC00 3C00 3C00 3C00 3C00 3FF0 3FF0 3C3C 3C3C 3C3C 3C3C F3F0 F3F0 0000 0000 ENDCHAR STARTCHAR char99 ENCODING 99 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3FC0 3FC0 F0F0 F0F0 F000 F000 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char100 ENCODING 100 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03F0 03F0 00F0 00F0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char101 ENCODING 101 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char102 ENCODING 102 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3CF0 3CF0 3C00 3C00 FF00 FF00 3C00 3C00 3C00 3C00 FF00 FF00 0000 0000 ENDCHAR STARTCHAR char103 ENCODING 103 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3F3C 3F3C F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 FFC0 FFC0 ENDCHAR STARTCHAR char104 ENCODING 104 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC00 FC00 3C00 3C00 3CF0 3CF0 3F3C 3F3C 3C3C 3C3C 3C3C 3C3C FC3C FC3C 0000 0000 ENDCHAR STARTCHAR char105 ENCODING 105 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 0000 0000 3F00 3F00 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char106 ENCODING 106 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 00F0 00F0 0000 0000 00F0 00F0 00F0 00F0 00F0 00F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 ENDCHAR STARTCHAR char107 ENCODING 107 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC00 FC00 3C00 3C00 3C3C 3C3C 3CF0 3CF0 3FC0 3FC0 3CF0 3CF0 FC3C FC3C 0000 0000 ENDCHAR STARTCHAR char108 ENCODING 108 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3F00 3F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char109 ENCODING 109 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F0F0 F0F0 FFFC FFFC FFFC FFFC F33C F33C F03C F03C 0000 0000 ENDCHAR STARTCHAR char110 ENCODING 110 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 FFC0 FFC0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char111 ENCODING 111 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3FC0 3FC0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char112 ENCODING 112 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F3F0 F3F0 3C3C 3C3C 3C3C 3C3C 3FF0 3FF0 3C00 3C00 FF00 FF00 ENDCHAR STARTCHAR char113 ENCODING 113 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3F3C 3F3C F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 03FC 03FC ENDCHAR STARTCHAR char114 ENCODING 114 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F3F0 F3F0 3F3C 3F3C 3C3C 3C3C 3C00 3C00 FF00 FF00 0000 0000 ENDCHAR STARTCHAR char115 ENCODING 115 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 3FF0 3FF0 F000 F000 3FC0 3FC0 00F0 00F0 FFC0 FFC0 0000 0000 ENDCHAR STARTCHAR char116 ENCODING 116 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0300 0300 0F00 0F00 3FF0 3FF0 0F00 0F00 0F00 0F00 0F30 0F30 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char117 ENCODING 117 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char118 ENCODING 118 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char119 ENCODING 119 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F03C F03C F33C F33C FFFC FFFC FFFC FFFC 3CF0 3CF0 0000 0000 ENDCHAR STARTCHAR char120 ENCODING 120 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F03C F03C 3CF0 3CF0 0FC0 0FC0 3CF0 3CF0 F03C F03C 0000 0000 ENDCHAR STARTCHAR char121 ENCODING 121 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 FFC0 FFC0 ENDCHAR STARTCHAR char122 ENCODING 122 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 FFF0 FFF0 C3C0 C3C0 0F00 0F00 3C30 3C30 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char123 ENCODING 123 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03F0 03F0 0F00 0F00 0F00 0F00 FC00 FC00 0F00 0F00 0F00 0F00 03F0 03F0 0000 0000 ENDCHAR STARTCHAR char124 ENCODING 124 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 0000 0000 03C0 03C0 03C0 03C0 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char125 ENCODING 125 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC00 FC00 0F00 0F00 0F00 0F00 03F0 03F0 0F00 0F00 0F00 0F00 FC00 FC00 0000 0000 ENDCHAR STARTCHAR char126 ENCODING 126 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3F3C 3F3C F3F0 F3F0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char127 ENCODING 127 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0300 0300 0FC0 0FC0 3CF0 3CF0 F03C F03C F03C F03C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char128 ENCODING 128 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char129 ENCODING 129 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0FF0 0FF0 3FFC 3FFC FFFF FFFF 3FFC 3FFC 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char130 ENCODING 130 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP CCCC CCCC 3333 3333 3333 3333 CCCC CCCC CCCC CCCC 3333 3333 3333 3333 CCCC CCCC ENDCHAR STARTCHAR char131 ENCODING 131 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3030 3030 3030 3030 3030 3030 3030 3030 03FF 03FF 0030 0030 0030 0030 0030 0030 ENDCHAR STARTCHAR char132 ENCODING 132 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FF0 3FF0 3000 3000 3000 3000 3000 3000 03FF 03FF 0300 0300 0300 0300 0300 0300 ENDCHAR STARTCHAR char133 ENCODING 133 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3030 3030 3030 3030 0FC0 0FC0 03FC 03FC 0303 0303 0330 0330 030F 030F ENDCHAR STARTCHAR char134 ENCODING 134 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3000 3000 3000 3000 3000 3000 3FF0 3FF0 03FF 03FF 0300 0300 0300 0300 0300 0300 ENDCHAR STARTCHAR char135 ENCODING 135 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3CF0 3CF0 0FC0 0FC0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char136 ENCODING 136 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 3FFC 3FFC 0000 0000 ENDCHAR STARTCHAR char137 ENCODING 137 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3030 3030 3C30 3C30 30F0 30F0 3030 3030 0300 0300 0300 0300 0300 0300 03FF 03FF ENDCHAR STARTCHAR char138 ENCODING 138 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3030 3030 3030 3030 0CC0 0CC0 0300 0300 03FF 03FF 0030 0030 0030 0030 0030 0030 ENDCHAR STARTCHAR char139 ENCODING 139 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 FFC0 FFC0 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char140 ENCODING 140 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 FFC0 FFC0 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char141 ENCODING 141 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 03FF 03FF 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char142 ENCODING 142 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03FF 03FF 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char143 ENCODING 143 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 FFFF FFFF 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char144 ENCODING 144 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char145 ENCODING 145 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char146 ENCODING 146 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 FFFF FFFF 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char147 ENCODING 147 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 FFFF FFFF 0000 0000 ENDCHAR STARTCHAR char148 ENCODING 148 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char149 ENCODING 149 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03FF 03FF 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char150 ENCODING 150 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 FFC0 FFC0 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char151 ENCODING 151 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 FFFF FFFF 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char152 ENCODING 152 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 FFFF FFFF 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char153 ENCODING 153 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 03C0 ENDCHAR STARTCHAR char154 ENCODING 154 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 00F0 00F0 0F00 0F00 3C00 3C00 03C0 03C0 00F0 00F0 3FFC 3FFC 0000 0000 ENDCHAR STARTCHAR char155 ENCODING 155 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F00 0F00 00F0 00F0 003C 003C 03C0 03C0 0F00 0F00 3FFC 3FFC 0000 0000 ENDCHAR STARTCHAR char156 ENCODING 156 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 000F 000F 0FFC 0FFC 0F3C 0F3C 0F3C 0F3C 3CF0 3CF0 0000 0000 ENDCHAR STARTCHAR char157 ENCODING 157 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0030 0030 3FFC 3FFC 0300 0300 3FFC 3FFC 3000 3000 0000 0000 ENDCHAR STARTCHAR char158 ENCODING 158 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 03F0 03F0 0F00 0F00 0F00 0F00 0F00 0F00 0F00 0F00 3FFC 3FFC 0000 0000 ENDCHAR STARTCHAR char159 ENCODING 159 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 03C0 03C0 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char160 ENCODING 160 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char161 ENCODING 161 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 0000 0000 0F00 0F00 0F00 0F00 3FC0 3FC0 3FC0 3FC0 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char162 ENCODING 162 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0300 0300 3FF0 3FF0 F000 F000 F000 F000 3FF0 3FF0 0300 0300 ENDCHAR STARTCHAR char163 ENCODING 163 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0FC0 0FC0 3C00 3C00 3C00 3C00 FF00 FF00 3C00 3C00 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char164 ENCODING 164 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 F00F F00F 0FF0 0FF0 3C3C 3C3C 3C3C 3C3C 0FF0 0FF0 F00F F00F 0000 0000 ENDCHAR STARTCHAR char165 ENCODING 165 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0F00 0F00 FFF0 FFF0 0F00 0F00 0000 0000 ENDCHAR STARTCHAR char166 ENCODING 166 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 03C0 03C0 03C0 03C0 0000 0000 03C0 03C0 03C0 03C0 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char167 ENCODING 167 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFC 3FFC F000 F000 3FF0 3FF0 F03C F03C 3FF0 3FF0 003C 003C FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char168 ENCODING 168 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char169 ENCODING 169 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FF0 3FF0 C00C C00C CFCC CFCC CC0C CC0C CFCC CFCC C00C C00C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char170 ENCODING 170 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03F0 03F0 003C 003C 03FC 03FC 0C0C 0C0C 03FF 03FF 0FFF 0FFF 0000 0000 0000 0000 ENDCHAR STARTCHAR char171 ENCODING 171 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0F0F 0F0F 3C3C 3C3C F0F0 F0F0 3C3C 3C3C 0F0F 0F0F 0000 0000 0000 0000 ENDCHAR STARTCHAR char172 ENCODING 172 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 FFFC FFFC 003C 003C 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char173 ENCODING 173 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char174 ENCODING 174 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FF0 3FF0 C00C C00C CFCC CFCC CF0C CF0C CCCC CCCC C00C C00C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char175 ENCODING 175 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FFFC FFFC 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char176 ENCODING 176 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3CF0 3CF0 0FC0 0FC0 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char177 ENCODING 177 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0300 0300 3FF0 3FF0 0300 0300 0000 0000 3FF0 3FF0 0000 0000 0000 0000 ENDCHAR STARTCHAR char178 ENCODING 178 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03F0 03F0 0F3C 0F3C 003C 003C 03C0 03C0 0FFC 0FFC 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char179 ENCODING 179 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03FC 03FC 000C 000C 00FC 00FC 000C 000C 03FC 03FC 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char180 ENCODING 180 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char181 ENCODING 181 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C F000 F000 ENDCHAR STARTCHAR char182 ENCODING 182 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FFC 3FFC F0CC F0CC F0CC F0CC 3FFC 3FFC 00CC 00CC 00CC 00CC 00CC 00CC 0000 0000 ENDCHAR STARTCHAR char183 ENCODING 183 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 03C0 03C0 0000 0000 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char184 ENCODING 184 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 03C0 03C0 0F00 0F00 ENDCHAR STARTCHAR char185 ENCODING 185 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 003C 003C 00FC 00FC 003C 003C 003C 003C 003C 003C 0000 0000 0000 0000 0000 0000 ENDCHAR STARTCHAR char186 ENCODING 186 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 00FC 00FC 0303 0303 0303 0303 0303 0303 00FC 00FC 03FF 03FF 0000 0000 0000 0000 ENDCHAR STARTCHAR char187 ENCODING 187 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 F0F0 F0F0 3C3C 3C3C 0F0F 0F0F 3C3C 3C3C F0F0 F0F0 0000 0000 0000 0000 ENDCHAR STARTCHAR char188 ENCODING 188 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 FC00 FC00 3C3C 3C3C 3CF0 3CF0 0F0F 0F0F 3C3F 3C3F 00FF 00FF 000F 000F ENDCHAR STARTCHAR char189 ENCODING 189 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 FC00 FC00 3C3C 3C3C 3CF0 3CF0 0F3C 0F3C 3CCC 3CCC 0030 0030 00FC 00FC ENDCHAR STARTCHAR char190 ENCODING 190 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FF00 FF00 0C00 0C00 C33C C33C 3CF0 3CF0 0F0F 0F0F 3C3F 3C3F 00FF 00FF 000F 000F ENDCHAR STARTCHAR char191 ENCODING 191 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 0000 0000 0F00 0F00 3C00 3C00 F000 F000 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char192 ENCODING 192 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 00F0 00F0 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char193 ENCODING 193 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 F000 F000 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char194 ENCODING 194 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 C030 C030 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char195 ENCODING 195 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char196 ENCODING 196 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char197 ENCODING 197 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 30C0 30C0 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char198 ENCODING 198 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FFC 0FFC 3FC0 3FC0 C3C0 C3C0 C3F0 C3F0 FFC0 FFC0 C3C0 C3C0 C3FC C3FC 0000 0000 ENDCHAR STARTCHAR char199 ENCODING 199 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FF0 0FF0 3C3C 3C3C F000 F000 F000 F000 F000 F000 3C3C 3C3C 03F0 03F0 0F00 0F00 ENDCHAR STARTCHAR char200 ENCODING 200 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 03C0 03C0 FFFC FFFC 3C0C 3C0C 3FC0 3FC0 3C0C 3C0C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char201 ENCODING 201 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 FFFC FFFC 3C0C 3C0C 3FC0 3FC0 3C0C 3C0C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char202 ENCODING 202 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3030 3030 FFFC FFFC 3C0C 3C0C 3FC0 3FC0 3C0C 3C0C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char203 ENCODING 203 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C 0000 0000 FFFC FFFC 3C0C 3C0C 3FC0 3FC0 3C0C 3C0C FFFC FFFC 0000 0000 ENDCHAR STARTCHAR char204 ENCODING 204 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 3FC0 3FC0 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char205 ENCODING 205 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3FC0 3FC0 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char206 ENCODING 206 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 C030 C030 3FC0 3FC0 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char207 ENCODING 207 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 3FC0 3FC0 0F00 0F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char208 ENCODING 208 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 3CF0 3CF0 3C3C 3C3C FF3C FF3C 3C3C 3C3C 3CF0 3CF0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char209 ENCODING 209 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 FC3C FC3C FF3C FF3C F3FC F3FC F0FC F0FC F03C F03C 0000 0000 ENDCHAR STARTCHAR char210 ENCODING 210 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 03C0 03C0 3FF0 3FF0 F03C F03C F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char211 ENCODING 211 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3FF0 3FF0 F03C F03C F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char212 ENCODING 212 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3030 3030 3FF0 3FF0 F03C F03C F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char213 ENCODING 213 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 3FF0 3FF0 F03C F03C F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char214 ENCODING 214 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C 0000 0000 3FF0 3FF0 F03C F03C F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char215 ENCODING 215 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 F03C F03C 3CF0 3CF0 0FC0 0FC0 0FC0 0FC0 3CF0 3CF0 F03C F03C 0000 0000 ENDCHAR STARTCHAR char216 ENCODING 216 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 003C 003C 3FF0 3FF0 F0FC F0FC C3CC C3CC CF0C CF0C FC3C FC3C 3FC0 3FC0 F000 F000 ENDCHAR STARTCHAR char217 ENCODING 217 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char218 ENCODING 218 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char219 ENCODING 219 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 C030 C030 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char220 ENCODING 220 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 FFF0 FFF0 0000 0000 ENDCHAR STARTCHAR char221 ENCODING 221 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 F0F0 F0F0 F0F0 F0F0 3FC0 3FC0 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char222 ENCODING 222 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 3FC0 3FC0 3CF0 3CF0 3FC0 3FC0 3C00 3C00 3C00 3C00 3C00 3C00 0000 0000 ENDCHAR STARTCHAR char223 ENCODING 223 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 F0F0 F0F0 F030 F030 F3F0 F3F0 F03C F03C F03C F03C F3F0 F3F0 F000 F000 ENDCHAR STARTCHAR char224 ENCODING 224 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 03C0 03C0 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char225 ENCODING 225 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char226 ENCODING 226 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 C030 C030 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char227 ENCODING 227 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char228 ENCODING 228 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 3FC0 3FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char229 ENCODING 229 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 30C0 30C0 0FC0 0FC0 00F0 00F0 3FF0 3FF0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char230 ENCODING 230 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 FCF0 FCF0 0F0C 0F0C 3FFC 3FFC CF00 CF00 3CFC 3CFC 0000 0000 ENDCHAR STARTCHAR char231 ENCODING 231 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 0FF0 0FF0 3C3C 3C3C F000 F000 3C3C 3C3C 03F0 03F0 0F00 0F00 ENDCHAR STARTCHAR char232 ENCODING 232 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 03C0 03C0 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char233 ENCODING 233 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char234 ENCODING 234 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3FC0 3FC0 C030 C030 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char235 ENCODING 235 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 3FC0 3FC0 F0F0 F0F0 FFF0 FFF0 F000 F000 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char236 ENCODING 236 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 0000 0000 3F00 3F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char237 ENCODING 237 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 0000 0000 3F00 3F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char238 ENCODING 238 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3F00 3F00 C0C0 C0C0 0000 0000 3F00 3F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char239 ENCODING 239 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 0000 0000 3F00 3F00 0F00 0F00 0F00 0F00 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char240 ENCODING 240 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3CF0 3CF0 0FC0 0FC0 3CF0 3CF0 00F0 00F0 3CF0 3CF0 F0F0 F0F0 3FC0 3FC0 0000 0000 ENDCHAR STARTCHAR char241 ENCODING 241 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 FFC0 FFC0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 0000 0000 ENDCHAR STARTCHAR char242 ENCODING 242 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 0000 0000 3FF0 3FF0 F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char243 ENCODING 243 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 0000 0000 3FF0 3FF0 F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char244 ENCODING 244 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0FC0 0FC0 3030 3030 0000 0000 3FF0 3FF0 F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char245 ENCODING 245 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C3C 3C3C C3C0 C3C0 0000 0000 3FF0 3FF0 F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char246 ENCODING 246 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F03C F03C 0000 0000 0000 0000 3FF0 3FF0 F03C F03C F03C F03C 3FF0 3FF0 0000 0000 ENDCHAR STARTCHAR char247 ENCODING 247 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 03C0 03C0 0000 0000 3FFC 3FFC 0000 0000 03C0 03C0 0000 0000 ENDCHAR STARTCHAR char248 ENCODING 248 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0000 0000 0000 0000 003C 003C 3FF0 3FF0 F3FC F3FC FF3C FF3C 3FF0 3FF0 F000 F000 ENDCHAR STARTCHAR char249 ENCODING 249 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 3C00 3C00 0F00 0F00 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char250 ENCODING 250 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char251 ENCODING 251 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 0F00 0F00 30C0 30C0 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char252 ENCODING 252 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3F3C 3F3C 0000 0000 ENDCHAR STARTCHAR char253 ENCODING 253 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP 03C0 03C0 0F00 0F00 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 FFC0 FFC0 ENDCHAR STARTCHAR char254 ENCODING 254 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP FC00 FC00 3FC0 3FC0 3CF0 3CF0 3C3C 3C3C 3CF0 3CF0 3FC0 3FC0 FC00 FC00 0000 0000 ENDCHAR STARTCHAR char255 ENCODING 255 SWIDTH 0 0 DWIDTH 0 0 BBX 16 16 0 -4 BITMAP F0F0 F0F0 0000 0000 F0F0 F0F0 F0F0 F0F0 F0F0 F0F0 3FF0 3FF0 00F0 00F0 FFC0 FFC0 ENDCHAR ENDFONT lincity-1.13.1/tools/fontcvt/console8x8/iso01a-8x8.bdf0000644000175000017500000006454307340322104017233 00000000000000STARTFONT 2.1 COMMENT Font converted from PSF to BDF. FONT iso01a-8x8.psf SIZE 8 72 72 FONTBOUNDINGBOX 8 8 0 -2 STARTPROPERTIES 9 POINT_SIZE 80 PIXEL_SIZE 8 RESOLUTION_X 72 RESOLUTION_Y 72 FONT_ASCENT 7 FONT_DESCENT 1 AVERAGE_WIDTH 0 SPACING "C" _XMBDFED_INFO "Edited with xmbdfed 4.3." ENDPROPERTIES CHARS 256 STARTCHAR char0 ENCODING 0 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char1 ENCODING 1 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7E 81 A5 81 BD 99 81 7E ENDCHAR STARTCHAR char2 ENCODING 2 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7E FF DB FF C3 E7 FF 7E ENDCHAR STARTCHAR char3 ENCODING 3 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 6C FE FE FE 7C 38 10 00 ENDCHAR STARTCHAR char4 ENCODING 4 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 10 38 7C FE 7C 38 10 00 ENDCHAR STARTCHAR char5 ENCODING 5 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 7C 38 FE FE 7C 38 7C ENDCHAR STARTCHAR char6 ENCODING 6 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 10 10 38 7C FE 7C 38 7C ENDCHAR STARTCHAR char7 ENCODING 7 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 18 3C 3C 18 00 00 ENDCHAR STARTCHAR char8 ENCODING 8 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FF FF E7 C3 C3 E7 FF FF ENDCHAR STARTCHAR char9 ENCODING 9 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 3C 66 42 42 66 3C 00 ENDCHAR STARTCHAR char10 ENCODING 10 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FF C3 99 BD BD 99 C3 FF ENDCHAR STARTCHAR char11 ENCODING 11 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 0F 07 0F 7D CC CC CC 78 ENDCHAR STARTCHAR char12 ENCODING 12 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3C 66 66 66 3C 18 7E 18 ENDCHAR STARTCHAR char13 ENCODING 13 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3F 33 3F 30 30 70 F0 E0 ENDCHAR STARTCHAR char14 ENCODING 14 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7F 63 7F 63 63 67 E6 C0 ENDCHAR STARTCHAR char15 ENCODING 15 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 99 5A 3C E7 E7 3C 5A 99 ENDCHAR STARTCHAR char16 ENCODING 16 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 80 E0 F8 FE F8 E0 80 00 ENDCHAR STARTCHAR char17 ENCODING 17 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 02 0E 3E FE 3E 0E 02 00 ENDCHAR STARTCHAR char18 ENCODING 18 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 3C 7E 18 18 7E 3C 18 ENDCHAR STARTCHAR char19 ENCODING 19 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 66 66 66 66 00 66 00 ENDCHAR STARTCHAR char20 ENCODING 20 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7F DB DB 7B 1B 1B 1B 00 ENDCHAR STARTCHAR char21 ENCODING 21 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3E 63 38 6C 6C 38 CC 78 ENDCHAR STARTCHAR char22 ENCODING 22 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 7E 7E 7E 00 ENDCHAR STARTCHAR char23 ENCODING 23 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 3C 7E 18 7E 3C 18 FF ENDCHAR STARTCHAR char24 ENCODING 24 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 3C 7E 18 18 18 18 00 ENDCHAR STARTCHAR char25 ENCODING 25 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 7E 3C 18 00 ENDCHAR STARTCHAR char26 ENCODING 26 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 18 0C FE 0C 18 00 00 ENDCHAR STARTCHAR char27 ENCODING 27 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 30 60 FE 60 30 00 00 ENDCHAR STARTCHAR char28 ENCODING 28 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 C0 C0 C0 FE 00 00 ENDCHAR STARTCHAR char29 ENCODING 29 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 24 66 FF 66 24 00 00 ENDCHAR STARTCHAR char30 ENCODING 30 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 18 3C 7E FF FF 00 00 ENDCHAR STARTCHAR char31 ENCODING 31 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 FF FF 7E 3C 18 00 00 ENDCHAR STARTCHAR char32 ENCODING 32 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char33 ENCODING 33 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 78 78 30 30 00 30 00 ENDCHAR STARTCHAR char34 ENCODING 34 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 6C 6C 6C 00 00 00 00 00 ENDCHAR STARTCHAR char35 ENCODING 35 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 6C 6C FE 6C FE 6C 6C 00 ENDCHAR STARTCHAR char36 ENCODING 36 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 7C C0 78 0C F8 30 00 ENDCHAR STARTCHAR char37 ENCODING 37 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 C6 CC 18 30 66 C6 00 ENDCHAR STARTCHAR char38 ENCODING 38 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 6C 38 76 DC CC 76 00 ENDCHAR STARTCHAR char39 ENCODING 39 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 60 C0 00 00 00 00 00 ENDCHAR STARTCHAR char40 ENCODING 40 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 60 60 60 30 18 00 ENDCHAR STARTCHAR char41 ENCODING 41 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 18 18 18 30 60 00 ENDCHAR STARTCHAR char42 ENCODING 42 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 66 3C FF 3C 66 00 00 ENDCHAR STARTCHAR char43 ENCODING 43 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 30 30 FC 30 30 00 00 ENDCHAR STARTCHAR char44 ENCODING 44 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 30 30 60 ENDCHAR STARTCHAR char45 ENCODING 45 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 FC 00 00 00 00 ENDCHAR STARTCHAR char46 ENCODING 46 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 30 30 00 ENDCHAR STARTCHAR char47 ENCODING 47 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 06 0C 18 30 60 C0 80 00 ENDCHAR STARTCHAR char48 ENCODING 48 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7C C6 CE DE F6 E6 7C 00 ENDCHAR STARTCHAR char49 ENCODING 49 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 70 30 30 30 30 FC 00 ENDCHAR STARTCHAR char50 ENCODING 50 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC 0C 38 60 CC FC 00 ENDCHAR STARTCHAR char51 ENCODING 51 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC 0C 38 0C CC 78 00 ENDCHAR STARTCHAR char52 ENCODING 52 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1C 3C 6C CC FE 0C 1E 00 ENDCHAR STARTCHAR char53 ENCODING 53 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC C0 F8 0C 0C CC 78 00 ENDCHAR STARTCHAR char54 ENCODING 54 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 60 C0 F8 CC CC 78 00 ENDCHAR STARTCHAR char55 ENCODING 55 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC CC 0C 18 30 30 30 00 ENDCHAR STARTCHAR char56 ENCODING 56 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC CC 78 CC CC 78 00 ENDCHAR STARTCHAR char57 ENCODING 57 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC CC 7C 0C 18 70 00 ENDCHAR STARTCHAR char58 ENCODING 58 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 30 30 00 00 30 30 00 ENDCHAR STARTCHAR char59 ENCODING 59 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 30 30 00 00 30 30 60 ENDCHAR STARTCHAR char60 ENCODING 60 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 60 C0 60 30 18 00 ENDCHAR STARTCHAR char61 ENCODING 61 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 FC 00 00 FC 00 00 ENDCHAR STARTCHAR char62 ENCODING 62 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 18 0C 18 30 60 00 ENDCHAR STARTCHAR char63 ENCODING 63 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC 0C 18 30 00 30 00 ENDCHAR STARTCHAR char64 ENCODING 64 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7C C6 DE DE DE C0 78 00 ENDCHAR STARTCHAR char65 ENCODING 65 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 78 CC CC FC CC CC 00 ENDCHAR STARTCHAR char66 ENCODING 66 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC 66 66 7C 66 66 FC 00 ENDCHAR STARTCHAR char67 ENCODING 67 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3C 66 C0 C0 C0 66 3C 00 ENDCHAR STARTCHAR char68 ENCODING 68 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP F8 6C 66 66 66 6C F8 00 ENDCHAR STARTCHAR char69 ENCODING 69 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FE 62 68 78 68 62 FE 00 ENDCHAR STARTCHAR char70 ENCODING 70 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FE 62 68 78 68 60 F0 00 ENDCHAR STARTCHAR char71 ENCODING 71 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3C 66 C0 C0 CE 66 3E 00 ENDCHAR STARTCHAR char72 ENCODING 72 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC CC CC FC CC CC CC 00 ENDCHAR STARTCHAR char73 ENCODING 73 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 30 30 30 30 30 78 00 ENDCHAR STARTCHAR char74 ENCODING 74 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1E 0C 0C 0C CC CC 78 00 ENDCHAR STARTCHAR char75 ENCODING 75 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E6 66 6C 78 6C 66 E6 00 ENDCHAR STARTCHAR char76 ENCODING 76 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP F0 60 60 60 62 66 FE 00 ENDCHAR STARTCHAR char77 ENCODING 77 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 EE FE FE D6 C6 C6 00 ENDCHAR STARTCHAR char78 ENCODING 78 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 E6 F6 DE CE C6 C6 00 ENDCHAR STARTCHAR char79 ENCODING 79 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 6C C6 C6 C6 6C 38 00 ENDCHAR STARTCHAR char80 ENCODING 80 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC 66 66 7C 60 60 F0 00 ENDCHAR STARTCHAR char81 ENCODING 81 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC CC CC DC 78 1C 00 ENDCHAR STARTCHAR char82 ENCODING 82 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC 66 66 7C 6C 66 E6 00 ENDCHAR STARTCHAR char83 ENCODING 83 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC E0 70 1C CC 78 00 ENDCHAR STARTCHAR char84 ENCODING 84 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FC B4 30 30 30 30 78 00 ENDCHAR STARTCHAR char85 ENCODING 85 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC CC CC CC CC CC FC 00 ENDCHAR STARTCHAR char86 ENCODING 86 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC CC CC CC CC 78 30 00 ENDCHAR STARTCHAR char87 ENCODING 87 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 C6 C6 D6 FE EE C6 00 ENDCHAR STARTCHAR char88 ENCODING 88 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 C6 6C 38 38 6C C6 00 ENDCHAR STARTCHAR char89 ENCODING 89 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC CC CC 78 30 30 78 00 ENDCHAR STARTCHAR char90 ENCODING 90 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FE C6 8C 18 32 66 FE 00 ENDCHAR STARTCHAR char91 ENCODING 91 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 60 60 60 60 60 78 00 ENDCHAR STARTCHAR char92 ENCODING 92 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C0 60 30 18 0C 06 02 00 ENDCHAR STARTCHAR char93 ENCODING 93 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 18 18 18 18 18 78 00 ENDCHAR STARTCHAR char94 ENCODING 94 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 10 38 6C C6 00 00 00 00 ENDCHAR STARTCHAR char95 ENCODING 95 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 FF ENDCHAR STARTCHAR char96 ENCODING 96 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 30 18 00 00 00 00 00 ENDCHAR STARTCHAR char97 ENCODING 97 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char98 ENCODING 98 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E0 60 60 7C 66 66 DC 00 ENDCHAR STARTCHAR char99 ENCODING 99 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 78 CC C0 CC 78 00 ENDCHAR STARTCHAR char100 ENCODING 100 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1C 0C 0C 7C CC CC 76 00 ENDCHAR STARTCHAR char101 ENCODING 101 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 78 CC FC C0 78 00 ENDCHAR STARTCHAR char102 ENCODING 102 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 6C 60 F0 60 60 F0 00 ENDCHAR STARTCHAR char103 ENCODING 103 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 76 CC CC 7C 0C F8 ENDCHAR STARTCHAR char104 ENCODING 104 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E0 60 6C 76 66 66 E6 00 ENDCHAR STARTCHAR char105 ENCODING 105 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 00 70 30 30 30 78 00 ENDCHAR STARTCHAR char106 ENCODING 106 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 0C 00 0C 0C 0C CC CC 78 ENDCHAR STARTCHAR char107 ENCODING 107 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E0 60 66 6C 78 6C E6 00 ENDCHAR STARTCHAR char108 ENCODING 108 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 70 30 30 30 30 30 78 00 ENDCHAR STARTCHAR char109 ENCODING 109 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 CC FE FE D6 C6 00 ENDCHAR STARTCHAR char110 ENCODING 110 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 F8 CC CC CC CC 00 ENDCHAR STARTCHAR char111 ENCODING 111 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 78 CC CC CC 78 00 ENDCHAR STARTCHAR char112 ENCODING 112 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 DC 66 66 7C 60 F0 ENDCHAR STARTCHAR char113 ENCODING 113 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 76 CC CC 7C 0C 1E ENDCHAR STARTCHAR char114 ENCODING 114 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 DC 76 66 60 F0 00 ENDCHAR STARTCHAR char115 ENCODING 115 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 7C C0 78 0C F8 00 ENDCHAR STARTCHAR char116 ENCODING 116 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 10 30 7C 30 30 34 18 00 ENDCHAR STARTCHAR char117 ENCODING 117 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 CC CC CC CC 76 00 ENDCHAR STARTCHAR char118 ENCODING 118 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 CC CC CC 78 30 00 ENDCHAR STARTCHAR char119 ENCODING 119 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 C6 D6 FE FE 6C 00 ENDCHAR STARTCHAR char120 ENCODING 120 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 C6 6C 38 6C C6 00 ENDCHAR STARTCHAR char121 ENCODING 121 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 CC CC CC 7C 0C F8 ENDCHAR STARTCHAR char122 ENCODING 122 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 FC 98 30 64 FC 00 ENDCHAR STARTCHAR char123 ENCODING 123 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1C 30 30 E0 30 30 1C 00 ENDCHAR STARTCHAR char124 ENCODING 124 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 00 18 18 18 00 ENDCHAR STARTCHAR char125 ENCODING 125 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E0 30 30 1C 30 30 E0 00 ENDCHAR STARTCHAR char126 ENCODING 126 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 76 DC 00 00 00 00 00 00 ENDCHAR STARTCHAR char127 ENCODING 127 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 10 38 6C C6 C6 FE 00 ENDCHAR STARTCHAR char128 ENCODING 128 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char129 ENCODING 129 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 3C 7E FF 7E 18 00 ENDCHAR STARTCHAR char130 ENCODING 130 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP AA 55 55 AA AA 55 55 AA ENDCHAR STARTCHAR char131 ENCODING 131 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 44 44 44 44 1F 04 04 04 ENDCHAR STARTCHAR char132 ENCODING 132 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7C 40 40 40 1F 10 10 10 ENDCHAR STARTCHAR char133 ENCODING 133 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 44 44 38 1E 11 14 13 ENDCHAR STARTCHAR char134 ENCODING 134 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 40 40 40 7C 1F 10 10 10 ENDCHAR STARTCHAR char135 ENCODING 135 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 6C 38 00 00 00 00 00 ENDCHAR STARTCHAR char136 ENCODING 136 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 18 18 18 18 7E 00 ENDCHAR STARTCHAR char137 ENCODING 137 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 44 64 4C 44 10 10 10 1F ENDCHAR STARTCHAR char138 ENCODING 138 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 44 44 28 10 1F 04 04 04 ENDCHAR STARTCHAR char139 ENCODING 139 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 F8 00 00 00 ENDCHAR STARTCHAR char140 ENCODING 140 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 F8 18 18 18 ENDCHAR STARTCHAR char141 ENCODING 141 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 1F 18 18 18 ENDCHAR STARTCHAR char142 ENCODING 142 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 1F 00 00 00 ENDCHAR STARTCHAR char143 ENCODING 143 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 FF 18 18 18 ENDCHAR STARTCHAR char144 ENCODING 144 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char145 ENCODING 145 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char146 ENCODING 146 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 FF 00 00 00 ENDCHAR STARTCHAR char147 ENCODING 147 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 FF 00 ENDCHAR STARTCHAR char148 ENCODING 148 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char149 ENCODING 149 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 1F 18 18 18 ENDCHAR STARTCHAR char150 ENCODING 150 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 F8 18 18 18 ENDCHAR STARTCHAR char151 ENCODING 151 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 FF 00 00 00 ENDCHAR STARTCHAR char152 ENCODING 152 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 FF 18 18 18 ENDCHAR STARTCHAR char153 ENCODING 153 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 18 18 18 18 18 ENDCHAR STARTCHAR char154 ENCODING 154 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 0C 30 60 18 0C 7E 00 ENDCHAR STARTCHAR char155 ENCODING 155 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 30 0C 06 18 30 7E 00 ENDCHAR STARTCHAR char156 ENCODING 156 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 03 3E 36 36 6C 00 ENDCHAR STARTCHAR char157 ENCODING 157 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 04 7E 10 7E 40 00 ENDCHAR STARTCHAR char158 ENCODING 158 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 1C 30 30 30 30 7E 00 ENDCHAR STARTCHAR char159 ENCODING 159 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 18 00 00 00 00 ENDCHAR STARTCHAR char160 ENCODING 160 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char161 ENCODING 161 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 00 30 30 78 78 30 00 ENDCHAR STARTCHAR char162 ENCODING 162 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 10 7C C0 C0 7C 10 ENDCHAR STARTCHAR char163 ENCODING 163 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 38 60 60 F0 60 FC 00 ENDCHAR STARTCHAR char164 ENCODING 164 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 C3 3C 66 66 3C C3 00 ENDCHAR STARTCHAR char165 ENCODING 165 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 CC CC 78 30 FC 30 00 ENDCHAR STARTCHAR char166 ENCODING 166 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 18 18 00 18 18 18 00 ENDCHAR STARTCHAR char167 ENCODING 167 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7E C0 7C C6 7C 06 FC 00 ENDCHAR STARTCHAR char168 ENCODING 168 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char169 ENCODING 169 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7C 82 BA A2 BA 82 7C 00 ENDCHAR STARTCHAR char170 ENCODING 170 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1C 06 1E 22 1F 3F 00 00 ENDCHAR STARTCHAR char171 ENCODING 171 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 33 66 CC 66 33 00 00 ENDCHAR STARTCHAR char172 ENCODING 172 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 FE 06 00 00 00 00 00 ENDCHAR STARTCHAR char173 ENCODING 173 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char174 ENCODING 174 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7C 82 BA B2 AA 82 7C 00 ENDCHAR STARTCHAR char175 ENCODING 175 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP FE 00 00 00 00 00 00 00 ENDCHAR STARTCHAR char176 ENCODING 176 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 6C 38 00 00 00 00 00 ENDCHAR STARTCHAR char177 ENCODING 177 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 10 7C 10 00 7C 00 00 ENDCHAR STARTCHAR char178 ENCODING 178 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1C 36 06 18 3E 00 00 00 ENDCHAR STARTCHAR char179 ENCODING 179 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 1E 02 0E 02 1E 00 00 00 ENDCHAR STARTCHAR char180 ENCODING 180 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 00 00 00 00 00 00 ENDCHAR STARTCHAR char181 ENCODING 181 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 CC CC CC CC 76 C0 ENDCHAR STARTCHAR char182 ENCODING 182 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 7E CA CA 7E 0A 0A 0A 00 ENDCHAR STARTCHAR char183 ENCODING 183 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 18 00 00 00 00 ENDCHAR STARTCHAR char184 ENCODING 184 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 00 00 00 00 18 30 ENDCHAR STARTCHAR char185 ENCODING 185 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 06 0E 06 06 06 00 00 00 ENDCHAR STARTCHAR char186 ENCODING 186 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 0E 11 11 11 0E 1F 00 00 ENDCHAR STARTCHAR char187 ENCODING 187 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 CC 66 33 66 CC 00 00 ENDCHAR STARTCHAR char188 ENCODING 188 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 E0 66 6C 33 67 0F 03 ENDCHAR STARTCHAR char189 ENCODING 189 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 E0 66 6C 36 6A 04 0E ENDCHAR STARTCHAR char190 ENCODING 190 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP F0 20 96 6C 33 67 0F 03 ENDCHAR STARTCHAR char191 ENCODING 191 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 00 30 60 C0 CC 78 00 ENDCHAR STARTCHAR char192 ENCODING 192 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 0C 30 78 CC FC CC 00 ENDCHAR STARTCHAR char193 ENCODING 193 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 C0 30 78 CC FC CC 00 ENDCHAR STARTCHAR char194 ENCODING 194 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 84 30 78 CC FC CC 00 ENDCHAR STARTCHAR char195 ENCODING 195 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 30 78 CC FC CC 00 ENDCHAR STARTCHAR char196 ENCODING 196 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 30 78 CC FC CC 00 ENDCHAR STARTCHAR char197 ENCODING 197 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 48 30 78 CC FC CC 00 ENDCHAR STARTCHAR char198 ENCODING 198 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3E 78 98 9C F8 98 9E 00 ENDCHAR STARTCHAR char199 ENCODING 199 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 3C 66 C0 C0 C0 66 1C 30 ENDCHAR STARTCHAR char200 ENCODING 200 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 18 FE 62 78 62 FE 00 ENDCHAR STARTCHAR char201 ENCODING 201 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 FE 62 78 62 FE 00 ENDCHAR STARTCHAR char202 ENCODING 202 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 44 FE 62 78 62 FE 00 ENDCHAR STARTCHAR char203 ENCODING 203 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 00 FE 62 78 62 FE 00 ENDCHAR STARTCHAR char204 ENCODING 204 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 78 30 30 30 78 00 ENDCHAR STARTCHAR char205 ENCODING 205 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 78 30 30 30 78 00 ENDCHAR STARTCHAR char206 ENCODING 206 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 84 78 30 30 30 78 00 ENDCHAR STARTCHAR char207 ENCODING 207 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 78 30 30 30 78 00 ENDCHAR STARTCHAR char208 ENCODING 208 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 6C 66 F6 66 6C 78 00 ENDCHAR STARTCHAR char209 ENCODING 209 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 E6 F6 DE CE C6 00 ENDCHAR STARTCHAR char210 ENCODING 210 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 18 7C C6 C6 C6 7C 00 ENDCHAR STARTCHAR char211 ENCODING 211 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 7C C6 C6 C6 7C 00 ENDCHAR STARTCHAR char212 ENCODING 212 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 44 7C C6 C6 C6 7C 00 ENDCHAR STARTCHAR char213 ENCODING 213 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 7C C6 C6 C6 7C 00 ENDCHAR STARTCHAR char214 ENCODING 214 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 00 7C C6 C6 C6 7C 00 ENDCHAR STARTCHAR char215 ENCODING 215 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 C6 6C 38 38 6C C6 00 ENDCHAR STARTCHAR char216 ENCODING 216 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 06 7C CE 9A B2 E6 78 C0 ENDCHAR STARTCHAR char217 ENCODING 217 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 CC CC CC CC FC 00 ENDCHAR STARTCHAR char218 ENCODING 218 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 CC CC CC CC FC 00 ENDCHAR STARTCHAR char219 ENCODING 219 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 84 CC CC CC CC FC 00 ENDCHAR STARTCHAR char220 ENCODING 220 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 CC CC CC CC FC 00 ENDCHAR STARTCHAR char221 ENCODING 221 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 CC CC 78 30 78 00 ENDCHAR STARTCHAR char222 ENCODING 222 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 78 6C 78 60 60 60 00 ENDCHAR STARTCHAR char223 ENCODING 223 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 CC C4 DC C6 C6 DC C0 ENDCHAR STARTCHAR char224 ENCODING 224 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 18 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char225 ENCODING 225 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char226 ENCODING 226 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 84 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char227 ENCODING 227 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char228 ENCODING 228 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 78 0C 7C CC 76 00 ENDCHAR STARTCHAR char229 ENCODING 229 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 48 38 0C 7C CC 76 00 ENDCHAR STARTCHAR char230 ENCODING 230 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 EC 32 7E B0 6E 00 ENDCHAR STARTCHAR char231 ENCODING 231 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 3C 66 C0 66 1C 30 ENDCHAR STARTCHAR char232 ENCODING 232 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 18 78 CC FC C0 78 00 ENDCHAR STARTCHAR char233 ENCODING 233 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 78 CC FC C0 78 00 ENDCHAR STARTCHAR char234 ENCODING 234 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 78 84 78 CC FC C0 78 00 ENDCHAR STARTCHAR char235 ENCODING 235 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 78 CC FC C0 78 00 ENDCHAR STARTCHAR char236 ENCODING 236 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 00 70 30 30 78 00 ENDCHAR STARTCHAR char237 ENCODING 237 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 00 70 30 30 78 00 ENDCHAR STARTCHAR char238 ENCODING 238 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 70 88 00 70 30 30 78 00 ENDCHAR STARTCHAR char239 ENCODING 239 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 00 70 30 30 78 00 ENDCHAR STARTCHAR char240 ENCODING 240 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 6C 38 6C 0C 6C CC 78 00 ENDCHAR STARTCHAR char241 ENCODING 241 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 F8 CC CC CC CC 00 ENDCHAR STARTCHAR char242 ENCODING 242 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 00 7C C6 C6 7C 00 ENDCHAR STARTCHAR char243 ENCODING 243 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 00 7C C6 C6 7C 00 ENDCHAR STARTCHAR char244 ENCODING 244 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 38 44 00 7C C6 C6 7C 00 ENDCHAR STARTCHAR char245 ENCODING 245 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 66 98 00 7C C6 C6 7C 00 ENDCHAR STARTCHAR char246 ENCODING 246 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP C6 00 00 7C C6 C6 7C 00 ENDCHAR STARTCHAR char247 ENCODING 247 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 18 00 7E 00 18 00 ENDCHAR STARTCHAR char248 ENCODING 248 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 00 00 06 7C DE F6 7C C0 ENDCHAR STARTCHAR char249 ENCODING 249 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 60 30 00 CC CC CC 76 00 ENDCHAR STARTCHAR char250 ENCODING 250 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 00 CC CC CC 76 00 ENDCHAR STARTCHAR char251 ENCODING 251 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 30 48 00 CC CC CC 76 00 ENDCHAR STARTCHAR char252 ENCODING 252 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 00 CC CC CC 76 00 ENDCHAR STARTCHAR char253 ENCODING 253 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP 18 30 CC CC CC 7C 0C F8 ENDCHAR STARTCHAR char254 ENCODING 254 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP E0 78 6C 66 6C 78 E0 00 ENDCHAR STARTCHAR char255 ENCODING 255 SWIDTH 0 0 DWIDTH 0 0 BBX 8 8 0 -2 BITMAP CC 00 CC CC CC 7C 0C F8 ENDCHAR ENDFONT lincity-1.13.1/tools/fontcvt/console8x8/iso01a-8x8.psf0000644000175000017500000000400407340322104017252 000000000000006~½™~~˙Û˙ç˙~lŝŝŝ|88|ŝ|88|8ŝŝ|8|8|ŝ|8|<<˙˙çç˙˙ŝ><~~<ffffffÛÛ{>c8ll8Ìx~~~<~~<˙<~~< ŝ 0`ŝ`0ÀÀÀŝ$f˙f$<~˙˙˙˙~<0xx000lllllŝlŝll0|Àx ĝ0ĈÌ0fĈ8l8vÜÌv``À0```0`00`f<˙ÌÌÌüÌÌÌx00000x ÌÌxĉflxlfĉ```bfŝĈîŝŝÖĈĈĈĉöŜÎĈĈ8lĈĈĈl8üff|``xÌÌÌÜxüff|lfĉxÌàpÌxü´0000xÌÌÌÌÌÌüÌÌÌÌÌx0ĈĈĈÖŝîĈĈĈl88lĈÌÌÌx00xŝĈŒ2fŝx`````xÀ`0 xx8lĈ˙00x |Ìvà``|ffÜxÌÀÌx |ÌÌvxÌüÀx8l```vÌÌ| ĝà`lvffĉ0p000x ÌÌxà`flxlĉp00000xÌŝŝÖĈĝÌÌÌÌxÌÌÌxÜff|`vÌÌ| Üvf`|Àx ĝ0|004ÌÌÌÌvÌÌÌx0ĈÖŝŝlĈl8lĈÌÌÌ| ĝü˜0dü00à00à0000àvÜ8lĈĈŝ<~˙~ŞUUŞŞUUŞDDDD|@@@8DD8@@@|8l8~DdLDDD(ĝĝ˙˙˙ĝ˙˙ 0` ~0 0~>66l~~@0000~000xx0|ÀÀ|8```ü0ÌÌÌÌvÀ~ÊÊ~ 0Ìf3fÌ`àfl3g`àfl6j –l3g00`ÀÌx 0xÌüÌ`À0xÌüÌx„0xÌüÌf˜0xÌüÌÌ0xÌüÌ0H0xÌüÌ>x˜œĝ˜ž€À€< 0 `€€Œj €€€î DDDDUŞUŞUŞUŞŬwŬwŬwŬw˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙°ˆP 0~~p ~~ ŝ0ŝ`~~ÀüüÀ<~~< ˙ 0pŝp0<~~<$f˙f$6fŝ`0À|nlll<66lŝlŝl0|Àx ĝ0ĈÌ0fĈ8l:~Ìv  000 0 0l8ŝ8l~ ŝ 0`À|ĈĈÖĈĈ|x~|ĈŒ8`Âŝ|Ĉ<Ĉ| $vgafile (face name $facename)\n"; open (BDF, "<$bdffile") || die "Error: cannot open $bdffile for read\n"; open (OUTC, ">$vgafile.c") || die "Error: cannot open $vgafile for write\n"; open (OUTRAW, ">$vgafile.raw") || die "Error: cannot open $vgafile.raw for write\n"; open (OUTFNT, "+>$vgafile.fnt") || die "Error: cannot open $vgafile.fnt for write\n"; $fontidx ++; ########################### # Parse the BDF header ########################### my $comment = ""; while () { chomp; /^COMMENT/ && do { $comment .= " * $'\n"; next; }; /^FONTBOUNDINGBOX\s*([0-9\-]*)\s*([0-9\-]*)\s*([0-9\-]*)\s*([0-9\-]*)\s*$/ && do { $fbbw = $1; $fbbh = $2; $fbboffx = $3; $fbboffy = $4; next; }; /^FONT\s+/ && do { $fontname = " $'"; next; }; /^CHARS\s+/ && do { $num_chars = "$'"; last; }; } ########################### # Write VGA "C" format header ########################### my $header = <> 3; $bitsoffset = $headersize; $faceoffset = $bitsoffset + 256*$fbbh*$rowsize; $size = $headersize + 256*$fbbh*$rowsize + length($facename) + 1; printf (OUTFNT "%c%c", 0, 3); # dfVersion printf (OUTFNT "%c%c%c%c", # dfSize $size % 256, ($size >> 8) % 256, ($size >> 16) % 256, $size >> 24); printf (OUTFNT "%60s", # dfCopyright "Public domain font(?)\0"); printf (OUTFNT "%c%c", 0, 0); # dfType printf (OUTFNT "%c%c", hex '3c', 0); # dfPoints printf (OUTFNT "%c%c", $fbbh, 0); # dfVertRes printf (OUTFNT "%c%c", $fbbw, 0); # dfHorizRes printf (OUTFNT "%c%c", 6, 0); # dfAscent printf (OUTFNT "%c%c", 0, 0); # dfInternalLeading printf (OUTFNT "%c%c", 0, 0); # dfExternalLeading printf (OUTFNT "%c", 0); # dfItalic printf (OUTFNT "%c", 0); # dfUnderline printf (OUTFNT "%c", 0); # dfStrikeOut printf (OUTFNT "%c%c", hex '90', 1); # dfWeight printf (OUTFNT "%c", 255); # dfCharSet (255 is OEM) printf (OUTFNT "%c%c", $fbbw, 0); # dfPixWidth printf (OUTFNT "%c%c", $fbbh, 0); # dfPixHeight printf (OUTFNT "%c", 0); # dfPitchAndFamily printf (OUTFNT "%c%c", $fbbw, 0); # dfAvgWidth printf (OUTFNT "%c%c", $fbbw, 0); # dfMaxWidth printf (OUTFNT "%c", 1); # dfFirstChar printf (OUTFNT "%c", 255); # dfLastChar printf (OUTFNT "%c", hex '1f'); # dfDefaultChar printf (OUTFNT "%c", hex '1f'); # dfBreakChar printf (OUTFNT "%c%c", # dfWidthBytes (256??) $rowsize % 256, ($rowsize >> 8) % 256); # 0, 1); # 255, 1); printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # dfDevice printf (OUTFNT "%c%c%c%c", # dfFace $faceoffset % 256, ($faceoffset >> 8) % 256, ($faceoffset >> 16) % 256, $faceoffset >> 24); printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # dfBitsPointer printf (OUTFNT "%c%c%c%c", # dfBitsOffset $bitsoffset % 256, ($bitsoffset >> 8) % 256, ($bitsoffset >> 16) % 256, $bitsoffset >> 24); printf (OUTFNT "%c", 0); # dfReserved printf (OUTFNT "%c%c%c%c", 1, 0, 0, 0); # dfFlags printf (OUTFNT "%c%c", 0, 0); # dfAspace printf (OUTFNT "%c%c", 0, 0); # dfBspace printf (OUTFNT "%c%c", 0, 0); # dfCspace printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # dfColorPointer printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # dfReserved1 printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # ... printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # ... printf (OUTFNT "%c%c%c%c", 0, 0, 0, 0); # ... foreach $c (0..255) { # (includes "extra" entry) $charoffset = $bitsoffset + $c*$fbbh*$rowsize; printf (OUTFNT "%c%c", $fbbw, 0); # dfCharTable.width printf (OUTFNT "%c%c%c%c", # dfCharTable.offset $charoffset % 256, ($charoffset >> 8) % 256, ($charoffset >> 16) % 256, $charoffset >> 24); } ########################### # Parse the BDF fonts ########################### $current_char = 0; $dwidth = 0; $bitmap = 0; while () { chomp; /^STARTCHAR\s*/ && do { $charname = $'; next; }; /^ENCODING\s*/ && do { $encoding = $'; if ($encoding < $current_char) { die "Error. Fonts are out of order in BDF file"; } # Dump out empty characters if missing in bdf file while ($current_char < $encoding) { printf OUTC "/* 0x%02x (UNKNOWN) */\n", $current_char; for (1..$fbbh) { for (1..int(($fbbw+7)/8)) { print OUTC "0x00,"; printf OUTRAW "%c", 0; printf OUTFNT "%c", 0; } } print OUTC "\n"; $current_char++; } $current_char++; printf OUTC "/* 0x%02x (%s) */\n", $encoding, $charname; next; }; /^DWIDTH\s*([0-9]*)/ && do { $dwidth = $1; next; }; /^BBX\s*([0-9\-]*)\s*([0-9\-]*)\s*([0-9\-]*)\s*([0-9\-]*)\s*$/ && do { $bbw = $1; $bbh = $2; $bboffx = $3; $bboffy = $4; $left_pad = $bboffx - $fbboffx; $right_pad = $fbbw - $bbw - $left_pad; $bottom_pad = $bboffy - $fbboffy; $top_pad = $fbbh - $bbh - $bottom_pad; # -- workaround a bug in bdfresize -- if ($top_pad < 0) { $bottom_pad += $top_pad; $top_pad = 0; } for (1..$top_pad) { $pos = tell OUTFNT; foreach $i (1..int(($fbbw+7)/8)) { print OUTC "0x00,"; printf OUTRAW "%c", 0; seek OUTFNT, $pos+($i-1)*$fbbh, 0; printf OUTFNT "%c", 0; } seek OUTFNT, $pos+1, 0; } next; }; /^BITMAP/ && do { $in_bitmap = 1; next; }; /^ENDCHAR/ && do { $in_bitmap = 0; foreach $i (1..$bottom_pad) { $pos = tell OUTFNT; for (1..int(($fbbw+7)/8)) { print OUTC "0x00,"; printf OUTRAW "%c", 0; seek OUTFNT, $pos+($i-1)*$fbbh, 0; printf OUTFNT "%c", 0; } seek OUTFNT, $pos+1, 0; } seek OUTFNT, $fbbh*($rowsize-1), 1; # We don't want character with encoding "0" for .fnt if ($encoding == 0) { seek OUTFNT, -($fbbh*$rowsize), 1; } print OUTC "\n"; next; }; /^ENDFONT/ && do { last; }; if ($in_bitmap) { $bitmap = hex $_; if ($dwidth > 8 && length($_) == 2) { $bitmap <<= 8; } $bitmap >>= $left_pad; if ($dwidth <= 8) { $bitmap > 255 && die "Too much"; printf OUTC "0x%02x,", $bitmap; printf OUTRAW "%c", $bitmap; printf OUTFNT "%c", $bitmap; } elsif ($dwidth <= 16) { printf OUTC "0x%02x,", $bitmap / 0x100; printf OUTC "0x%02x,", $bitmap % 0x100; printf OUTRAW "%c", $bitmap / 0x100; printf OUTRAW "%c", $bitmap % 0x100; printf OUTFNT "%c", $bitmap / 0x100; $pos = tell OUTFNT; seek OUTFNT, $pos+($fbbh-1), 0; printf OUTFNT "%c", $bitmap % 0x100; seek OUTFNT, $pos, 0; } else { die "Sorry, characters wider than 16 are not supported.\n"; } } } ########################### # Write VGA "C" footer ########################### print OUTC "}\n"; ########################### # Write MS .FNT footer ########################### for (1..$fbbh) { for (1..int(($fbbw+7)/8)) { printf OUTFNT "%c", 0; } } printf (OUTFNT "%s\0", $facename); # ########################### # Close files and done! ########################### close BDF; close OUTC; close OUTRAW; close OUTFNT; } ########################### # MAIN ########################### $infile = shift; $outfile = shift; (defined $outfile) || die "Usage: fontcvt.pl bdf-file out-file\n" . " (creates out-file.c, out-file.raw, and outfile.fnt)\n"; &convert_font("$infile","$outfile"); lincity-1.13.1/tools/fontcvt/fontgrep.pl0000644000175000017500000000212607340322077015202 00000000000000eval '(exit $?0)' && eval 'exec perl5 -S $0 ${1+"$@"}' & eval 'exec perl5 -S $0 $argv:q' if $running_under_some_shell; ############################################################################## ## fontgrep.pl ############################################################################## ## Searches for fonts on the server that are marked "public domain", ## or of size 8x8, or... ############################################################################## ## Author: Gregory C. Sharp ## This code is in the public domain. ############################################################################## foreach $font (`xlsfonts`) { chomp($font); # Uncomment this one to search for public domain fonts $grepout=`fstobdf -s unix/:-1 -fn \"$font\" 2> /dev/null | head -n 100 | grep COMMENT | grep -i public`; # Uncomment this one to search for 8x8 fonts # $grepout=`fstobdf -s unix/:-1 -fn \"$font\" 2> /dev/null | head -n 400 | grep 'FONTBOUNDINGBOX 8 8'`; if ($grepout) { print "$font\n"; print "$grepout"; `fstobdf -s unix/:-1 -fn \"$font\" > $font.bdf`; } } lincity-1.13.1/tools/fontcvt/public9x15/0000777000175000017500000000000010073426331015004 500000000000000lincity-1.13.1/tools/fontcvt/public9x15/9x15bold.bdf0000644000175000017500000006141607340322113016750 00000000000000STARTFONT 2.1 COMMENT COMMENT Public domain font. Share and enjoy. COMMENT COMMENT WARNING: This bdf file was generated from a font server using COMMENT fstobdf. The resulting font is subject to the same copyright, COMMENT license, and trademark restrictions as the original font. The COMMENT authors and distributors of fstobdf disclaim all liability for COMMENT misuse of the program or its output. COMMENT FONT -Misc-Fixed-Bold-R-Normal--15-140-75-75-C-90-ISO8859-1 SIZE 14 75 75 FONTBOUNDINGBOX 9 15 0 -3 STARTPROPERTIES 24 FONTNAME_REGISTRY "" FOUNDRY "Misc" FAMILY_NAME "Fixed" WEIGHT_NAME "Bold" SLANT "R" SETWIDTH_NAME "Normal" ADD_STYLE_NAME "" PIXEL_SIZE 15 POINT_SIZE 140 RESOLUTION_X 75 RESOLUTION_Y 75 SPACING "C" AVERAGE_WIDTH 90 CHARSET_REGISTRY "ISO8859" CHARSET_ENCODING "1" COPYRIGHT "Public domain font. Share and enjoy." FONT "-Misc-Fixed-Bold-R-Normal--15-140-75-75-C-90-ISO8859-1" WEIGHT 10 RESOLUTION 103 X_HEIGHT 12 QUAD_WIDTH 9 DEFAULT_CHAR 0 FONT_ASCENT 12 FONT_DESCENT 3 ENDPROPERTIES CHARS 224 STARTCHAR C000 ENCODING 0 SWIDTH 617 0 DWIDTH 9 0 BBX 0 0 0 0 BITMAP ENDCHAR STARTCHAR C001 ENCODING 1 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 18 3c 7e ff 7e 3c 18 ENDCHAR STARTCHAR C002 ENCODING 2 SWIDTH 617 0 DWIDTH 9 0 BBX 8 14 1 -3 BITMAP aa 55 aa 55 aa 55 aa 55 aa 55 aa 55 aa 55 ENDCHAR STARTCHAR C003 ENCODING 3 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP cc cc fc cc cc 00 3f 0c 0c 0c 0c ENDCHAR STARTCHAR C004 ENCODING 4 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP f8 c0 f0 c0 c0 00 1f 18 1e 18 18 ENDCHAR STARTCHAR C005 ENCODING 5 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP 7c c4 c0 c4 7c 00 3e 33 3e 33 33 ENDCHAR STARTCHAR C006 ENCODING 6 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP c0 c0 c0 c0 f8 00 1f 18 1e 18 18 ENDCHAR STARTCHAR C007 ENCODING 7 SWIDTH 617 0 DWIDTH 9 0 BBX 6 4 2 6 BITMAP 78 cc cc 78 ENDCHAR STARTCHAR C010 ENCODING 8 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -1 BITMAP 18 18 18 ff ff 18 18 18 00 ff ff ENDCHAR STARTCHAR C011 ENCODING 9 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP cc ec fc dc cc 00 18 18 18 18 1f ENDCHAR STARTCHAR C012 ENCODING 10 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 -2 BITMAP cc cc cc 78 30 00 3f 0c 0c 0c 0c ENDCHAR STARTCHAR C013 ENCODING 11 SWIDTH 617 0 DWIDTH 9 0 BBX 6 9 0 3 BITMAP 0c 0c 0c 0c 0c 0c 0c fc fc ENDCHAR STARTCHAR C014 ENCODING 12 SWIDTH 617 0 DWIDTH 9 0 BBX 6 8 0 -3 BITMAP fc fc 0c 0c 0c 0c 0c 0c ENDCHAR STARTCHAR C015 ENCODING 13 SWIDTH 617 0 DWIDTH 9 0 BBX 5 8 4 -3 BITMAP f8 f8 c0 c0 c0 c0 c0 c0 ENDCHAR STARTCHAR C016 ENCODING 14 SWIDTH 617 0 DWIDTH 9 0 BBX 5 9 4 3 BITMAP c0 c0 c0 c0 c0 c0 c0 f8 f8 ENDCHAR STARTCHAR C017 ENCODING 15 SWIDTH 617 0 DWIDTH 9 0 BBX 9 15 0 -3 BITMAP 0c00 0c00 0c00 0c00 0c00 0c00 0c00 ff80 ff80 0c00 0c00 0c00 0c00 0c00 0c00 ENDCHAR STARTCHAR C020 ENCODING 16 SWIDTH 617 0 DWIDTH 9 0 BBX 9 2 0 7 BITMAP ff80 ff80 ENDCHAR STARTCHAR C021 ENCODING 17 SWIDTH 617 0 DWIDTH 9 0 BBX 9 2 0 5 BITMAP ff80 ff80 ENDCHAR STARTCHAR C022 ENCODING 18 SWIDTH 617 0 DWIDTH 9 0 BBX 9 2 0 3 BITMAP ff80 ff80 ENDCHAR STARTCHAR C023 ENCODING 19 SWIDTH 617 0 DWIDTH 9 0 BBX 9 2 0 1 BITMAP ff80 ff80 ENDCHAR STARTCHAR C024 ENCODING 20 SWIDTH 617 0 DWIDTH 9 0 BBX 9 2 0 -1 BITMAP ff80 ff80 ENDCHAR STARTCHAR C025 ENCODING 21 SWIDTH 617 0 DWIDTH 9 0 BBX 5 15 4 -3 BITMAP c0 c0 c0 c0 c0 c0 c0 f8 f8 c0 c0 c0 c0 c0 c0 ENDCHAR STARTCHAR C026 ENCODING 22 SWIDTH 617 0 DWIDTH 9 0 BBX 6 15 0 -3 BITMAP 0c 0c 0c 0c 0c 0c 0c fc fc 0c 0c 0c 0c 0c 0c ENDCHAR STARTCHAR C027 ENCODING 23 SWIDTH 617 0 DWIDTH 9 0 BBX 9 9 0 3 BITMAP 0c00 0c00 0c00 0c00 0c00 0c00 0c00 ff80 ff80 ENDCHAR STARTCHAR C030 ENCODING 24 SWIDTH 617 0 DWIDTH 9 0 BBX 9 8 0 -3 BITMAP ff80 ff80 0c00 0c00 0c00 0c00 0c00 0c00 ENDCHAR STARTCHAR C031 ENCODING 25 SWIDTH 617 0 DWIDTH 9 0 BBX 2 15 4 -3 BITMAP c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 ENDCHAR STARTCHAR C032 ENCODING 26 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -1 BITMAP 07 1c 70 c0 70 1c 07 00 ff ff ENDCHAR STARTCHAR C033 ENCODING 27 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -1 BITMAP e0 38 0e 03 0e 38 e0 00 ff ff ENDCHAR STARTCHAR C034 ENCODING 28 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP ff ff 26 26 26 66 e6 ENDCHAR STARTCHAR C035 ENCODING 29 SWIDTH 617 0 DWIDTH 9 0 BBX 8 9 1 0 BITMAP 03 06 ff ff 18 ff ff 60 c0 ENDCHAR STARTCHAR C036 ENCODING 30 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -1 BITMAP 1e 33 30 30 7e 30 30 f8 bf e0 ENDCHAR STARTCHAR C037 ENCODING 31 SWIDTH 617 0 DWIDTH 9 0 BBX 2 2 4 3 BITMAP c0 c0 ENDCHAR STARTCHAR space ENCODING 32 SWIDTH 617 0 DWIDTH 9 0 BBX 0 0 0 0 BITMAP ENDCHAR STARTCHAR exclam ENCODING 33 SWIDTH 617 0 DWIDTH 9 0 BBX 2 10 4 0 BITMAP c0 c0 c0 c0 c0 c0 c0 c0 00 c0 ENDCHAR STARTCHAR quotedbl ENCODING 34 SWIDTH 617 0 DWIDTH 9 0 BBX 5 3 3 7 BITMAP d8 d8 d8 ENDCHAR STARTCHAR numbersign ENCODING 35 SWIDTH 617 0 DWIDTH 9 0 BBX 7 8 1 1 BITMAP 6c 6c fe 6c 6c fe 6c 6c ENDCHAR STARTCHAR dollar ENCODING 36 SWIDTH 617 0 DWIDTH 9 0 BBX 7 11 2 -1 BITMAP 10 7c d6 d0 f0 7c 1e 16 d6 7c 10 ENDCHAR STARTCHAR percent ENCODING 37 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 43 e6 e6 4c 18 18 32 67 67 c2 ENDCHAR STARTCHAR ampersand ENCODING 38 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 38 6c 6c 78 30 79 cf c6 ce 7b ENDCHAR STARTCHAR apostrophe ENCODING 39 SWIDTH 617 0 DWIDTH 9 0 BBX 4 3 3 7 BITMAP 70 70 c0 ENDCHAR STARTCHAR parenleft ENCODING 40 SWIDTH 617 0 DWIDTH 9 0 BBX 5 12 2 -1 BITMAP 18 30 60 60 c0 c0 c0 c0 60 60 30 18 ENDCHAR STARTCHAR parenright ENCODING 41 SWIDTH 617 0 DWIDTH 9 0 BBX 5 12 2 -1 BITMAP c0 60 30 30 18 18 18 18 30 30 60 c0 ENDCHAR STARTCHAR asterisk ENCODING 42 SWIDTH 617 0 DWIDTH 9 0 BBX 7 5 1 2 BITMAP 6c 38 fe 38 6c ENDCHAR STARTCHAR plus ENCODING 43 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 1 BITMAP 18 18 18 ff 18 18 18 ENDCHAR STARTCHAR comma ENCODING 44 SWIDTH 617 0 DWIDTH 9 0 BBX 5 3 2 -1 BITMAP 78 70 c0 ENDCHAR STARTCHAR minus ENCODING 45 SWIDTH 617 0 DWIDTH 9 0 BBX 8 1 1 4 BITMAP ff ENDCHAR STARTCHAR period ENCODING 46 SWIDTH 617 0 DWIDTH 9 0 BBX 4 3 3 -1 BITMAP 60 f0 60 ENDCHAR STARTCHAR slash ENCODING 47 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 03 06 06 0c 18 18 30 60 60 c0 ENDCHAR STARTCHAR 0 ENCODING 48 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 18 3c 66 c3 c3 c3 c3 66 3c 18 ENDCHAR STARTCHAR 1 ENCODING 49 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP 30 70 f0 30 30 30 30 30 30 fc ENDCHAR STARTCHAR 2 ENCODING 50 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 03 06 0c 18 30 60 ff ENDCHAR STARTCHAR 3 ENCODING 51 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 7c c6 03 06 1c 06 03 03 c6 7c ENDCHAR STARTCHAR 4 ENCODING 52 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 06 0e 1e 36 66 c6 ff 06 06 06 ENDCHAR STARTCHAR 5 ENCODING 53 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP fe c0 c0 dc e6 03 03 c3 66 3c ENDCHAR STARTCHAR 6 ENCODING 54 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c2 c0 dc e6 c3 c3 66 3c ENDCHAR STARTCHAR 7 ENCODING 55 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP ff 03 03 06 0c 18 30 60 c0 c0 ENDCHAR STARTCHAR 8 ENCODING 56 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 66 3c 66 c3 c3 66 3c ENDCHAR STARTCHAR 9 ENCODING 57 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 c3 67 3b 03 43 66 3c ENDCHAR STARTCHAR colon ENCODING 58 SWIDTH 617 0 DWIDTH 9 0 BBX 4 8 3 -1 BITMAP 60 f0 60 00 00 60 f0 60 ENDCHAR STARTCHAR semicolon ENCODING 59 SWIDTH 617 0 DWIDTH 9 0 BBX 5 8 2 -1 BITMAP 30 78 30 00 00 78 70 c0 ENDCHAR STARTCHAR less ENCODING 60 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP 0c 18 30 60 c0 c0 60 30 18 0c ENDCHAR STARTCHAR equal ENCODING 61 SWIDTH 617 0 DWIDTH 9 0 BBX 8 4 1 2 BITMAP ff 00 00 ff ENDCHAR STARTCHAR greater ENCODING 62 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 1 0 BITMAP c0 60 30 18 0c 0c 18 30 60 c0 ENDCHAR STARTCHAR question ENCODING 63 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 2 0 BITMAP 7c c6 c6 06 0c 18 30 00 30 30 ENDCHAR STARTCHAR at ENCODING 64 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 cf db db ce c0 63 3e ENDCHAR STARTCHAR A ENCODING 65 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 18 3c 66 c3 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR B ENCODING 66 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP fc c6 c3 c6 fc c6 c3 c3 c6 fc ENDCHAR STARTCHAR C ENCODING 67 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3e 63 c1 c0 c0 c0 c0 c1 63 3e ENDCHAR STARTCHAR D ENCODING 68 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP fc c6 c3 c3 c3 c3 c3 c3 c6 fc ENDCHAR STARTCHAR E ENCODING 69 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 0 BITMAP fe c0 c0 c0 fc c0 c0 c0 c0 fe ENDCHAR STARTCHAR F ENCODING 70 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP ff c0 c0 c0 fc c0 c0 c0 c0 c0 ENDCHAR STARTCHAR G ENCODING 71 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3e 63 c0 c0 c0 c7 c3 c3 63 3e ENDCHAR STARTCHAR H ENCODING 72 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 c3 c3 ff c3 c3 c3 c3 c3 ENDCHAR STARTCHAR I ENCODING 73 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP fc 30 30 30 30 30 30 30 30 fc ENDCHAR STARTCHAR J ENCODING 74 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP 3c 0c 0c 0c 0c 0c 0c 8c d8 70 ENDCHAR STARTCHAR K ENCODING 75 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c6 cc d8 f0 f0 d8 cc c6 c3 ENDCHAR STARTCHAR L ENCODING 76 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 0 BITMAP c0 c0 c0 c0 c0 c0 c0 c0 c0 fe ENDCHAR STARTCHAR M ENCODING 77 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 e7 ff db db db c3 c3 c3 c3 ENDCHAR STARTCHAR N ENCODING 78 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 e3 f3 f3 db db cf c7 c7 c3 ENDCHAR STARTCHAR O ENCODING 79 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR P ENCODING 80 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP fe c3 c3 c3 fe c0 c0 c0 c0 c0 ENDCHAR STARTCHAR Q ENCODING 81 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 3c 66 c3 c3 c3 c3 db cf 66 3d ENDCHAR STARTCHAR R ENCODING 82 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP fe c3 c3 c3 fe f8 cc c6 c3 c3 ENDCHAR STARTCHAR S ENCODING 83 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 7e c3 c0 c0 7e 03 03 03 c3 7e ENDCHAR STARTCHAR T ENCODING 84 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP ff 18 18 18 18 18 18 18 18 18 ENDCHAR STARTCHAR U ENCODING 85 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR V ENCODING 86 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 c3 66 66 66 3c 3c 18 18 ENDCHAR STARTCHAR W ENCODING 87 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 c3 c3 db db db ff e7 c3 ENDCHAR STARTCHAR X ENCODING 88 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 66 3c 18 18 3c 66 c3 c3 ENDCHAR STARTCHAR Y ENCODING 89 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 66 3c 18 18 18 18 18 18 ENDCHAR STARTCHAR Z ENCODING 90 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 0 BITMAP fe 06 06 0c 18 30 60 c0 c0 fe ENDCHAR STARTCHAR bracketleft ENCODING 91 SWIDTH 617 0 DWIDTH 9 0 BBX 5 10 2 0 BITMAP f8 c0 c0 c0 c0 c0 c0 c0 c0 f8 ENDCHAR STARTCHAR backslash ENCODING 92 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c0 60 60 30 18 18 0c 06 06 03 ENDCHAR STARTCHAR bracketright ENCODING 93 SWIDTH 617 0 DWIDTH 9 0 BBX 5 10 2 0 BITMAP f8 18 18 18 18 18 18 18 18 f8 ENDCHAR STARTCHAR asciicircum ENCODING 94 SWIDTH 617 0 DWIDTH 9 0 BBX 6 4 2 6 BITMAP 30 78 cc 84 ENDCHAR STARTCHAR underscore ENCODING 95 SWIDTH 617 0 DWIDTH 9 0 BBX 8 1 1 -1 BITMAP ff ENDCHAR STARTCHAR grave ENCODING 96 SWIDTH 617 0 DWIDTH 9 0 BBX 4 3 3 7 BITMAP e0 e0 30 ENDCHAR STARTCHAR a ENCODING 97 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 3e 63 03 7f c3 c7 7b ENDCHAR STARTCHAR b ENCODING 98 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c0 c0 c0 dc e6 c3 c3 c3 e6 dc ENDCHAR STARTCHAR c ENCODING 99 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 3e 63 c0 c0 c0 63 3e ENDCHAR STARTCHAR d ENCODING 100 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 03 03 03 3b 67 c3 c3 c3 67 3b ENDCHAR STARTCHAR e ENCODING 101 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 3c 66 c3 ff c0 63 3e ENDCHAR STARTCHAR f ENCODING 102 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 1e 33 33 30 30 fc 30 30 30 30 ENDCHAR STARTCHAR g ENCODING 103 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -3 BITMAP 7d c7 c6 c6 7c c0 7e c3 c3 7e ENDCHAR STARTCHAR h ENCODING 104 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c0 c0 c0 dc e6 c3 c3 c3 c3 c3 ENDCHAR STARTCHAR i ENCODING 105 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP 30 30 00 70 30 30 30 30 30 fc ENDCHAR STARTCHAR j ENCODING 106 SWIDTH 617 0 DWIDTH 9 0 BBX 7 13 1 -3 BITMAP 06 06 00 1e 06 06 06 06 06 c6 c6 c6 7c ENDCHAR STARTCHAR k ENCODING 107 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 2 0 BITMAP c0 c0 c0 cc d8 f0 f0 d8 cc c6 ENDCHAR STARTCHAR l ENCODING 108 SWIDTH 617 0 DWIDTH 9 0 BBX 6 10 2 0 BITMAP 70 30 30 30 30 30 30 30 30 fc ENDCHAR STARTCHAR m ENCODING 109 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP b6 db db db db db db ENDCHAR STARTCHAR n ENCODING 110 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP dc e6 c3 c3 c3 c3 c3 ENDCHAR STARTCHAR o ENCODING 111 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR p ENCODING 112 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -3 BITMAP dc e6 c3 c3 c3 e6 dc c0 c0 c0 ENDCHAR STARTCHAR q ENCODING 113 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -3 BITMAP 3b 67 c3 c3 c3 67 3b 03 03 03 ENDCHAR STARTCHAR r ENCODING 114 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP de 73 60 60 60 60 60 ENDCHAR STARTCHAR s ENCODING 115 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 7e c3 c0 7e 03 c3 7e ENDCHAR STARTCHAR t ENCODING 116 SWIDTH 617 0 DWIDTH 9 0 BBX 8 9 1 0 BITMAP 30 30 fc 30 30 30 30 33 1e ENDCHAR STARTCHAR u ENCODING 117 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP c3 c3 c3 c3 c3 67 3b ENDCHAR STARTCHAR v ENCODING 118 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP c3 c3 66 66 3c 3c 18 ENDCHAR STARTCHAR w ENCODING 119 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP c3 c3 db db db ff 66 ENDCHAR STARTCHAR x ENCODING 120 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP c3 66 3c 18 3c 66 c3 ENDCHAR STARTCHAR y ENCODING 121 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -3 BITMAP c3 c3 c3 c3 c3 67 3b 03 c6 7c ENDCHAR STARTCHAR z ENCODING 122 SWIDTH 617 0 DWIDTH 9 0 BBX 6 7 2 0 BITMAP fc 0c 18 30 60 c0 fc ENDCHAR STARTCHAR braceleft ENCODING 123 SWIDTH 617 0 DWIDTH 9 0 BBX 5 10 2 0 BITMAP 38 60 60 60 c0 c0 60 60 60 38 ENDCHAR STARTCHAR bar ENCODING 124 SWIDTH 617 0 DWIDTH 9 0 BBX 2 10 4 0 BITMAP c0 c0 c0 c0 c0 c0 c0 c0 c0 c0 ENDCHAR STARTCHAR braceright ENCODING 125 SWIDTH 617 0 DWIDTH 9 0 BBX 5 10 2 0 BITMAP e0 30 30 30 18 18 30 30 30 e0 ENDCHAR STARTCHAR asciitilde ENCODING 126 SWIDTH 617 0 DWIDTH 9 0 BBX 8 3 1 7 BITMAP 73 db ce ENDCHAR STARTCHAR C177 ENCODING 127 SWIDTH 617 0 DWIDTH 9 0 BBX 0 0 0 0 BITMAP ENDCHAR STARTCHAR nobreakspace ENCODING 160 SWIDTH 617 0 DWIDTH 9 0 BBX 0 0 0 0 BITMAP ENDCHAR STARTCHAR exclamdown ENCODING 161 SWIDTH 617 0 DWIDTH 9 0 BBX 2 10 5 0 BITMAP c0 00 c0 c0 c0 c0 c0 c0 c0 c0 ENDCHAR STARTCHAR cent ENCODING 162 SWIDTH 617 0 DWIDTH 9 0 BBX 7 8 1 0 BITMAP 04 7c ce d0 d0 e6 7c 40 ENDCHAR STARTCHAR sterling ENCODING 163 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -1 BITMAP 1e 33 30 30 7c 30 30 f8 bf e0 ENDCHAR STARTCHAR currency ENCODING 164 SWIDTH 617 0 DWIDTH 9 0 BBX 7 7 2 2 BITMAP c6 fe 6c 44 6c fe c6 ENDCHAR STARTCHAR yen ENCODING 165 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP c3 c3 66 3c 7e 18 7e 18 18 18 ENDCHAR STARTCHAR brokenbar ENCODING 166 SWIDTH 617 0 DWIDTH 9 0 BBX 2 11 5 -1 BITMAP c0 c0 c0 c0 c0 00 00 c0 c0 c0 c0 ENDCHAR STARTCHAR section ENCODING 167 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 -1 BITMAP 78 cc c0 78 cc cc cc 78 0c cc 78 ENDCHAR STARTCHAR diaeresis ENCODING 168 SWIDTH 617 0 DWIDTH 9 0 BBX 6 2 2 9 BITMAP cc cc ENDCHAR STARTCHAR copyright ENCODING 169 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 3c 7e c3 bd a5 a1 a5 bd c3 7e 3c ENDCHAR STARTCHAR ordfeminine ENCODING 170 SWIDTH 617 0 DWIDTH 9 0 BBX 5 7 3 3 BITMAP f0 18 f8 98 f8 00 f8 ENDCHAR STARTCHAR guillemotleft ENCODING 171 SWIDTH 617 0 DWIDTH 9 0 BBX 8 8 1 1 BITMAP 1b 36 6c d8 d8 6c 36 1b ENDCHAR STARTCHAR notsign ENCODING 172 SWIDTH 617 0 DWIDTH 9 0 BBX 7 5 1 2 BITMAP fe fe 06 06 06 ENDCHAR STARTCHAR hyphen ENCODING 173 SWIDTH 617 0 DWIDTH 9 0 BBX 6 2 2 4 BITMAP fc fc ENDCHAR STARTCHAR registered ENCODING 174 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 3c 7e c3 bd a5 bd a9 ad c3 7e 3c ENDCHAR STARTCHAR macron ENCODING 175 SWIDTH 617 0 DWIDTH 9 0 BBX 6 2 2 9 BITMAP fc fc ENDCHAR STARTCHAR degree ENCODING 176 SWIDTH 617 0 DWIDTH 9 0 BBX 6 4 3 6 BITMAP 78 cc cc 78 ENDCHAR STARTCHAR plusminus ENCODING 177 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 18 18 18 ff ff 18 18 18 ff ff ENDCHAR STARTCHAR twosuperior ENCODING 178 SWIDTH 617 0 DWIDTH 9 0 BBX 5 7 1 4 BITMAP 70 98 18 30 60 c0 f8 ENDCHAR STARTCHAR threesuperior ENCODING 179 SWIDTH 617 0 DWIDTH 9 0 BBX 5 7 1 4 BITMAP 70 98 18 30 18 98 70 ENDCHAR STARTCHAR acute ENCODING 180 SWIDTH 617 0 DWIDTH 9 0 BBX 3 2 4 9 BITMAP 60 c0 ENDCHAR STARTCHAR mu ENCODING 181 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 -3 BITMAP c6 c6 c6 c6 c6 ee fa c0 c0 c0 ENDCHAR STARTCHAR paragraph ENCODING 182 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 0 BITMAP 7e fe f6 f6 f6 76 36 36 36 36 ENDCHAR STARTCHAR periodcentered ENCODING 183 SWIDTH 617 0 DWIDTH 9 0 BBX 3 3 4 3 BITMAP 40 e0 40 ENDCHAR STARTCHAR cedilla ENCODING 184 SWIDTH 617 0 DWIDTH 9 0 BBX 5 3 2 -3 BITMAP 18 d8 70 ENDCHAR STARTCHAR onesuperior ENCODING 185 SWIDTH 617 0 DWIDTH 9 0 BBX 4 7 1 4 BITMAP 60 e0 60 60 60 60 f0 ENDCHAR STARTCHAR masculine ENCODING 186 SWIDTH 617 0 DWIDTH 9 0 BBX 5 6 2 5 BITMAP 70 d8 d8 70 00 f8 ENDCHAR STARTCHAR guillemotright ENCODING 187 SWIDTH 617 0 DWIDTH 9 0 BBX 8 8 1 1 BITMAP d8 6c 36 1b 1b 36 6c d8 ENDCHAR STARTCHAR onequarter ENCODING 188 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 e0 60 60 61 63 f7 0f 1b 1f 03 ENDCHAR STARTCHAR onehalf ENCODING 189 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 e0 60 60 6e 73 f3 06 0c 18 1f ENDCHAR STARTCHAR threequarters ENCODING 190 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 70 98 18 30 19 9b 77 0f 1b 1f 03 ENDCHAR STARTCHAR questiondown ENCODING 191 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 2 0 BITMAP 18 18 00 18 30 60 c0 c6 c6 7c ENDCHAR STARTCHAR Agrave ENCODING 192 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 60 30 18 00 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR Aacute ENCODING 193 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 06 0c 18 00 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR Acircumflex ENCODING 194 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 18 3c 66 00 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR Atilde ENCODING 195 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 32 7e 4c 00 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR Adiaeresis ENCODING 196 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR Aring ENCODING 197 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 18 24 24 18 3c 66 c3 c3 ff c3 c3 c3 ENDCHAR STARTCHAR AE ENCODING 198 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 1f 3c 6c 6c cc ff cc cc cc cf ENDCHAR STARTCHAR Ccedilla ENCODING 199 SWIDTH 617 0 DWIDTH 9 0 BBX 8 13 1 -3 BITMAP 3e 63 c1 c0 c0 c0 c0 c1 63 3e 0c 6c 38 ENDCHAR STARTCHAR Egrave ENCODING 200 SWIDTH 617 0 DWIDTH 9 0 BBX 7 12 1 0 BITMAP 60 30 18 00 fe c0 c0 fc c0 c0 c0 fe ENDCHAR STARTCHAR Eacute ENCODING 201 SWIDTH 617 0 DWIDTH 9 0 BBX 7 12 1 0 BITMAP 0c 18 30 00 fe c0 c0 fc c0 c0 c0 fe ENDCHAR STARTCHAR Ecircumflex ENCODING 202 SWIDTH 617 0 DWIDTH 9 0 BBX 7 12 1 0 BITMAP 18 3c 66 00 fe c0 c0 fc c0 c0 c0 fe ENDCHAR STARTCHAR Ediaeresis ENCODING 203 SWIDTH 617 0 DWIDTH 9 0 BBX 7 11 1 0 BITMAP 66 66 00 fe c0 c0 fc c0 c0 c0 fe ENDCHAR STARTCHAR Igrave ENCODING 204 SWIDTH 617 0 DWIDTH 9 0 BBX 6 12 2 0 BITMAP c0 60 30 00 fc 30 30 30 30 30 30 fc ENDCHAR STARTCHAR Iacute ENCODING 205 SWIDTH 617 0 DWIDTH 9 0 BBX 6 12 2 0 BITMAP 18 30 60 00 fc 30 30 30 30 30 30 fc ENDCHAR STARTCHAR Icircumflex ENCODING 206 SWIDTH 617 0 DWIDTH 9 0 BBX 6 12 2 0 BITMAP 30 78 cc 00 fc 30 30 30 30 30 30 fc ENDCHAR STARTCHAR Idiaeresis ENCODING 207 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 0 BITMAP cc cc 00 fc 30 30 30 30 30 30 fc ENDCHAR STARTCHAR ETH ENCODING 208 SWIDTH 617 0 DWIDTH 9 0 BBX 9 10 0 0 BITMAP 7e00 6300 6180 6180 f980 f980 6180 6180 6300 7e00 ENDCHAR STARTCHAR Ntilde ENCODING 209 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 32 7e 4c 00 c3 e3 f3 fb df cf c7 c3 ENDCHAR STARTCHAR Ograve ENCODING 210 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 60 30 18 00 3c 66 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Oacute ENCODING 211 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 06 0c 18 00 3c 66 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Ocircumflex ENCODING 212 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 18 3c 66 00 3c 66 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Otilde ENCODING 213 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 32 7e 4c 00 3c 66 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Odiaeresis ENCODING 214 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 3c 66 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR multiply ENCODING 215 SWIDTH 617 0 DWIDTH 9 0 BBX 7 8 1 0 BITMAP 82 c6 6c 38 38 6c c6 82 ENDCHAR STARTCHAR Ooblique ENCODING 216 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 -1 BITMAP 01 3f 66 c7 cb cb d3 d3 e3 66 fc 80 ENDCHAR STARTCHAR Ugrave ENCODING 217 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 60 30 18 00 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Uacute ENCODING 218 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 06 0c 18 00 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Ucircumflex ENCODING 219 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 18 3c 66 00 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Udiaeresis ENCODING 220 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 c3 c3 c3 c3 c3 c3 66 3c ENDCHAR STARTCHAR Yacute ENCODING 221 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 06 0c 18 00 c3 66 3c 18 18 18 18 18 ENDCHAR STARTCHAR THORN ENCODING 222 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 2 0 BITMAP f0 60 7c 66 66 66 7c 60 60 f0 ENDCHAR STARTCHAR ssharp ENCODING 223 SWIDTH 617 0 DWIDTH 9 0 BBX 7 10 1 0 BITMAP 3c 66 c6 cc d8 cc c6 c6 c6 dc ENDCHAR STARTCHAR agrave ENCODING 224 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 30 18 00 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR aacute ENCODING 225 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 0c 18 30 00 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR acircumflex ENCODING 226 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 18 3c 66 00 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR atilde ENCODING 227 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 32 7e 4c 00 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR adiaeresis ENCODING 228 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 00 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR aring ENCODING 229 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 18 24 24 18 3e 43 03 7f c3 c7 7b ENDCHAR STARTCHAR ae ENCODING 230 SWIDTH 617 0 DWIDTH 9 0 BBX 8 7 1 0 BITMAP 76 9b 1b 7e d8 d9 6e ENDCHAR STARTCHAR ccedilla ENCODING 231 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 -3 BITMAP 3e 63 c0 c0 c0 63 3e 0c 6c 38 ENDCHAR STARTCHAR egrave ENCODING 232 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 30 18 00 3c 66 c3 ff c0 63 3e ENDCHAR STARTCHAR eacute ENCODING 233 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 0c 18 30 00 3c 66 c3 ff c0 63 3e ENDCHAR STARTCHAR ecircumflex ENCODING 234 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 18 3c 66 00 3c 66 c3 ff c0 63 3e ENDCHAR STARTCHAR ediaeresis ENCODING 235 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 00 3c 66 c3 ff c0 63 3e ENDCHAR STARTCHAR igrave ENCODING 236 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 0 BITMAP c0 60 30 00 70 30 30 30 30 30 fc ENDCHAR STARTCHAR iacute ENCODING 237 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 0 BITMAP 18 30 60 00 70 30 30 30 30 30 fc ENDCHAR STARTCHAR icircumflex ENCODING 238 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 0 BITMAP 30 78 cc 00 70 30 30 30 30 30 fc ENDCHAR STARTCHAR idiaeresis ENCODING 239 SWIDTH 617 0 DWIDTH 9 0 BBX 6 11 2 0 BITMAP cc cc 00 00 70 30 30 30 30 30 fc ENDCHAR STARTCHAR eth ENCODING 240 SWIDTH 617 0 DWIDTH 9 0 BBX 8 12 1 0 BITMAP 88 d8 70 70 d8 8c 3e 67 c3 c3 66 3c ENDCHAR STARTCHAR ntilde ENCODING 241 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 32 7e 4c 00 dc e6 c3 c3 c3 c3 c3 ENDCHAR STARTCHAR ograve ENCODING 242 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 30 18 00 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR oacute ENCODING 243 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 0c 18 30 00 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR ocircumflex ENCODING 244 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 18 3c 66 00 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR otilde ENCODING 245 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 32 7e 4c 00 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR odiaeresis ENCODING 246 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 00 3c 66 c3 c3 c3 66 3c ENDCHAR STARTCHAR division ENCODING 247 SWIDTH 617 0 DWIDTH 9 0 BBX 8 10 1 0 BITMAP 18 18 00 00 ff ff 00 00 18 18 ENDCHAR STARTCHAR oslash ENCODING 248 SWIDTH 617 0 DWIDTH 9 0 BBX 8 9 1 -1 BITMAP 01 3f 66 cf db f3 66 fc 80 ENDCHAR STARTCHAR ugrave ENCODING 249 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 60 30 18 00 c3 c3 c3 c3 c3 67 3b ENDCHAR STARTCHAR uacute ENCODING 250 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 0c 18 30 00 c3 c3 c3 c3 c3 67 3b ENDCHAR STARTCHAR ucircumflex ENCODING 251 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 18 3c 66 00 c3 c3 c3 c3 c3 67 3b ENDCHAR STARTCHAR udiaeresis ENCODING 252 SWIDTH 617 0 DWIDTH 9 0 BBX 8 11 1 0 BITMAP 66 66 00 00 c3 c3 c3 c3 c3 67 3b ENDCHAR STARTCHAR yacute ENCODING 253 SWIDTH 617 0 DWIDTH 9 0 BBX 8 14 1 -3 BITMAP 0c 18 30 00 c3 c3 c3 c3 c3 67 3b 03 c6 7c ENDCHAR STARTCHAR thorn ENCODING 254 SWIDTH 617 0 DWIDTH 9 0 BBX 6 7 2 0 BITMAP e0 78 6c 78 60 60 e0 ENDCHAR STARTCHAR ydiaeresis ENCODING 255 SWIDTH 617 0 DWIDTH 9 0 BBX 8 14 1 -3 BITMAP 66 66 00 00 c3 c3 c3 c3 c3 67 3b 03 c6 7c ENDCHAR ENDFONT lincity-1.13.1/colour.pal0000644000175000017500000001322007340321734012173 00000000000000 This is the colour palette file. The first number is the colour. The second, third and fourth are R G abd B respectively. Lines that don't have 4 numbers as the first four fields are ignored. Anything after the 4 numbers is ignored. 0 0 0 0 pre-0.79 1 16 0 0 pre-0.79 2 32 0 0 pre-0.79 3 48 0 0 pre-0.79 4 0 32 0 pre-0.79 5 16 32 0 pre-0.79 6 32 32 0 pre-0.79 7 48 32 0 pre-0.79 8 0 0 16 pre-0.79 9 16 0 16 pre-0.79 10 32 0 16 pre-0.79 11 48 0 16 pre-0.79 12 0 32 16 pre-0.79 13 16 32 16 pre-0.79 14 32 32 16 pre-0.79 15 48 32 16 pre-0.79 16 0 0 32 pre-0.79 17 16 0 32 pre-0.79 18 32 0 32 pre-0.79 19 48 0 32 pre-0.79 20 0 32 32 pre-0.79 21 16 32 32 pre-0.79 22 32 32 32 pre-0.79 23 48 32 32 pre-0.79 24 0 0 48 pre-0.79 25 16 0 48 pre-0.79 26 32 0 48 pre-0.79 27 48 0 48 pre-0.79 28 0 32 48 pre-0.79 29 16 32 48 pre-0.79 30 32 32 48 pre-0.79 31 48 32 48 pre-0.79 32 41 18 11 pre-0.79 brown 33 51 28 21 pre-0.79 light brown 34 55 25 20 pre-0.79 another brown 35 31 13 8 pre-0.79 dark brown 36 8 0 0 pre-0.79 37 10 0 0 pre-0.79 38 12 0 0 pre-0.79 39 14 0 0 pre-0.79 40 16 0 0 pre-0.79 41 18 0 0 pre-0.79 42 20 0 0 pre-0.79 43 22 0 0 pre-0.79 44 24 0 0 pre-0.79 45 26 0 0 pre-0.79 46 28 0 0 pre-0.79 47 30 0 0 pre-0.79 48 32 0 0 pre-0.79 49 34 0 0 pre-0.79 50 36 0 0 pre-0.79 51 38 0 0 pre-0.79 52 40 0 0 pre-0.79 53 42 0 0 pre-0.79 54 44 0 0 pre-0.79 55 46 0 0 pre-0.79 56 48 0 0 pre-0.79 57 50 0 0 pre-0.79 58 52 0 0 pre-0.79 59 54 0 0 pre-0.79 60 56 0 0 pre-0.79 61 58 0 0 pre-0.79 62 60 0 0 pre-0.79 63 62 0 0 pre-0.79 64 1 48 35 pre-0.79 green/blue 65 1 35 24 pre-0.79 green/blue darker 66 0 4 0 pre-0.79 67 0 6 0 pre-0.79 68 0 8 0 pre-0.79 69 0 10 0 pre-0.79 70 0 12 0 pre-0.79 71 0 14 0 pre-0.79 72 0 16 0 pre-0.79 73 0 18 0 pre-0.79 74 0 20 0 pre-0.79 75 0 22 0 pre-0.79 76 0 24 0 pre-0.79 77 0 26 0 pre-0.79 78 0 28 0 pre-0.79 79 0 30 0 pre-0.79 80 0 32 0 pre-0.79 81 0 34 0 pre-0.79 82 0 36 0 pre-0.79 83 0 38 0 pre-0.79 84 0 40 0 pre-0.79 85 0 42 0 pre-0.79 86 0 44 0 pre-0.79 87 0 46 0 pre-0.79 88 0 48 0 pre-0.79 89 0 50 0 pre-0.79 90 0 52 0 pre-0.79 91 0 54 0 pre-0.79 92 0 56 0 pre-0.79 93 0 58 0 pre-0.79 94 0 60 0 pre-0.79 95 0 62 0 pre-0.79 96 0 0 0 pre-0.79 97 2 2 0 pre-0.79 98 4 4 0 pre-0.79 99 6 6 0 pre-0.79 100 8 8 0 pre-0.79 101 10 10 0 pre-0.79 102 12 12 0 pre-0.79 103 14 14 0 pre-0.79 104 16 16 0 pre-0.79 105 18 18 0 pre-0.79 106 20 20 0 pre-0.79 107 22 22 0 pre-0.79 108 24 24 0 pre-0.79 109 26 26 0 pre-0.79 110 28 28 0 pre-0.79 111 30 30 0 pre-0.79 112 32 32 0 pre-0.79 113 34 34 0 pre-0.79 114 36 36 0 pre-0.79 115 38 38 0 pre-0.79 116 40 40 0 pre-0.79 117 42 42 0 pre-0.79 118 44 44 0 pre-0.79 119 46 46 0 pre-0.79 120 48 48 0 pre-0.79 121 50 50 0 pre-0.79 122 52 52 0 pre-0.79 123 54 54 0 pre-0.79 124 56 56 0 pre-0.79 125 58 58 0 pre-0.79 126 60 60 0 pre-0.79 127 62 62 0 pre-0.79 128 0 0 0 pre-0.79 129 0 0 2 pre-0.79 130 0 0 4 pre-0.79 131 0 0 6 pre-0.79 132 0 0 8 pre-0.79 133 0 0 10 pre-0.79 134 0 0 12 pre-0.79 135 0 0 14 pre-0.79 136 0 0 16 pre-0.79 137 0 0 18 pre-0.79 138 0 0 20 pre-0.79 139 0 0 22 pre-0.79 140 0 0 24 pre-0.79 141 0 0 26 pre-0.79 142 0 0 28 pre-0.79 143 0 0 30 pre-0.79 144 0 0 32 pre-0.79 145 0 0 34 pre-0.79 146 0 0 36 pre-0.79 147 0 0 38 pre-0.79 148 0 0 40 pre-0.79 149 0 0 42 pre-0.79 150 0 0 44 pre-0.79 151 0 0 46 pre-0.79 152 0 0 48 pre-0.79 153 0 0 50 pre-0.79 154 0 0 52 pre-0.79 155 0 0 54 pre-0.79 156 0 0 56 pre-0.79 157 0 0 58 pre-0.79 158 0 0 60 pre-0.79 159 0 0 62 pre-0.79 160 0 0 0 pre-0.79 161 2 0 2 pre-0.79 162 4 0 4 pre-0.79 163 6 0 6 pre-0.79 164 8 0 8 pre-0.79 165 10 0 10 pre-0.79 166 12 0 12 pre-0.79 167 14 0 14 pre-0.79 168 16 0 16 pre-0.79 169 18 0 18 pre-0.79 170 20 0 20 pre-0.79 171 22 0 22 pre-0.79 172 24 0 24 pre-0.79 173 26 0 26 pre-0.79 174 28 0 28 pre-0.79 175 30 0 30 pre-0.79 176 32 0 32 pre-0.79 177 34 0 34 pre-0.79 178 36 0 36 pre-0.79 179 38 0 38 pre-0.79 180 40 0 40 pre-0.79 181 42 0 42 pre-0.79 182 44 0 44 pre-0.79 183 46 0 46 pre-0.79 184 48 0 48 pre-0.79 185 50 0 50 pre-0.79 186 52 0 52 pre-0.79 187 54 0 54 pre-0.79 188 56 0 56 pre-0.79 189 58 0 58 pre-0.79 190 60 0 60 pre-0.79 191 62 0 62 pre-0.79 192 0 0 0 pre-0.79 193 0 2 2 pre-0.79 194 0 4 4 pre-0.79 195 0 6 6 pre-0.79 196 0 8 8 pre-0.79 197 0 10 10 pre-0.79 198 0 12 12 pre-0.79 199 0 14 14 pre-0.79 200 0 16 16 pre-0.79 201 0 18 18 pre-0.79 202 0 20 20 pre-0.79 203 0 22 22 pre-0.79 204 0 24 24 pre-0.79 205 0 26 26 pre-0.79 206 0 28 28 pre-0.79 207 0 30 30 pre-0.79 208 0 32 32 pre-0.79 209 0 34 34 pre-0.79 210 0 36 36 pre-0.79 211 0 38 38 pre-0.79 212 0 40 40 pre-0.79 213 0 42 42 pre-0.79 214 0 44 44 pre-0.79 215 0 46 46 pre-0.79 216 0 48 48 pre-0.79 217 0 50 50 pre-0.79 218 0 52 52 pre-0.79 219 0 54 54 pre-0.79 220 0 56 56 pre-0.79 221 0 58 58 pre-0.79 222 0 60 60 pre-0.79 223 0 62 62 pre-0.79 224 32 32 40 pre-0.79 blue/grey 225 25 25 32 pre-0.79 blue/grey darker 226 56 56 29 pre-0.79 goldenrod 227 6 6 6 pre-0.79 228 8 8 8 pre-0.79 229 10 10 10 pre-0.79 230 12 12 12 pre-0.79 231 14 14 14 pre-0.79 232 16 16 16 pre-0.79 233 18 18 18 pre-0.79 234 20 20 20 pre-0.79 235 22 22 22 pre-0.79 236 24 24 24 pre-0.79 237 26 26 26 pre-0.79 238 28 28 28 pre-0.79 239 30 30 30 pre-0.79 240 32 32 32 pre-0.79 241 34 34 34 pre-0.79 242 36 36 36 pre-0.79 243 38 38 38 pre-0.79 244 40 40 40 pre-0.79 245 42 42 42 pre-0.79 246 44 44 44 pre-0.79 247 46 46 46 pre-0.79 248 48 48 48 pre-0.79 249 50 50 50 pre-0.79 250 52 52 52 pre-0.79 251 54 54 54 pre-0.79 252 56 56 56 pre-0.79 253 58 58 58 pre-0.79 254 60 60 60 pre-0.79 255 62 62 62 pre-0.79 lincity-1.13.1/lcwin32.c0000644000175000017500000004066407663046254011644 00000000000000/* ---------------------------------------------------------------------- * * lcwin32.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include "lcconfig.h" #include #include #include #include #include "lcstring.h" #include "lcintl.h" #include "lin-city.h" #include "common.h" #include "lctypes.h" #include "pixmap.h" #include "screen.h" #define USE_WINDOWS_FONT 1 #undef USE_WINDOWS_FONT int AdjustX (int x) { x <<= pix_double; x += borderx; return x; } int AdjustY (int y) { y <<= pix_double; y += bordery; return y; } int UnAdjustX (int x) { x -= borderx; x >>= pix_double; return x; } int UnAdjustY (int y) { y -= bordery; y >>= pix_double; return y; } void HandleError (char *description, int degree) { MessageBox (NULL, description, _("ERROR"), MB_OK); if (degree == FATAL) { exit (-1); } } void setcustompalette (void) { char s[100]; unsigned int n, r, g, b; int i, flag[256]; FILE *inf; for (i = 0; i < 256; i++) flag[i] = 0; if ((inf = fopen (colour_pal_file, "r")) == 0) HandleError ("Can't find the colour pallet file", FATAL); while (feof (inf) == 0) { fgets (s, 99, inf); if (sscanf (s, "%u %u %u %u", &n, &r, &g, &b) == 4) { r = ((r * (1 - gamma_correct_red)) + (64 * sin ((float) r * M_PI / 128)) * gamma_correct_red); g = ((g * (1 - gamma_correct_green)) + (64 * sin ((float) g * M_PI / 128)) * gamma_correct_green); b = ((b * (1 - gamma_correct_blue)) + (64 * sin ((float) b * M_PI / 128)) * gamma_correct_blue); AddPaletteEntry (n, r, g, b); flag[n] = 1; } } fclose (inf); for (i = 0; i < 256; i++) { if (flag[i] == 0) { printf ("Colour %d not loaded\n", i); HandleError ("Can't continue", FATAL); } } UpdatePalette (); } COLORREF GetPaletteColorref (int col) { assert (col >= 0 || col <= 255); if (display.hasPalette) return PALETTEINDEX (col); else return display.colorrefPal[col]; } HBRUSH GetPaletteBrush (int col) { assert (col >= 0 || col <= 255); if (display.brushPal[col] == 0) display.brushPal[col] = CreateSolidBrush (GetPaletteColorref (col)); return display.brushPal[col]; } int CALLBACK EnumFontFamProc (ENUMLOGFONT FAR * lpelf, // pointer to logical-font data NEWTEXTMETRIC FAR * lpntm, // pointer to physical-font data int FontType, // type of font LPARAM lParam // address of application-defined data ) { int i = 0; // if (0 != strcmp (lpelf->elfLogFont.lfFaceName, "iso8859-1-16x16")) if (0 != strcmp (lpelf->elfLogFont.lfFaceName, "Lincity")) // if (0 != strcmp (lpelf->elfLogFont.lfFaceName, "Tester")) // if (0 != strcmp (lpelf->elfLogFont.lfFaceName, "iso8859-1-9x15")) // if (0 == strcmp (lpelf->elfLogFont.lfFaceName, "iso8859-1-8x8")) return 0; // GCS: I'm not sure if it's OK to just copy the pointer here. // This may cause problems, but let's give it a whirl. // *((LOGFONT**) lParam) = &(lpelf->elfLogFont); // GCS: No wait, I changed my mind. Copy the entire LOGFONT struct. *(LOGFONT *) lParam = lpelf->elfLogFont; return 1; } void init_windows_font (void) { #if defined (USE_WINDOWS_FONT) int rc; LOGFONT logfont; int fonts_added = AddFontResource (windowsfontfile); if (fonts_added != 1) { HandleError ("Can't open the font file", FATAL); } SendMessage (HWND_BROADCAST, WM_FONTCHANGE, 0, 0); ProcessPendingEvents (); // GCS: This typedef is for the typecast... // typedef int (FAR WINAPI *voidfnptr)(void); // KSH: Changed the typedef to get around VC 6 strict type enformcement #if defined (commentout) typedef int (FAR WINAPI * voidfnptr) (const struct tagLOGFONTA *, const struct tagTEXTMETRICA *, unsigned long, long); EnumFontFamilies (display.hdcMem, "Lincity", (voidfnptr) EnumFontFamProc, (LPARAM) & logfont); #endif // GCS: Hmm. There must be a way to get this to work on both compilers. // How about this? //EnumFontFamilies (display.hdcMem, "iso8859-1-16x16", (FONTENUMPROC) EnumFontFamProc, (LPARAM) & logfont); //rc = EnumFontFamilies (display.hdcMem, "iso8859-1-8x8", (FONTENUMPROC) EnumFontFamProc, (LPARAM) & logfont); rc = EnumFontFamilies (display.hdcMem, "Lincity", (FONTENUMPROC) EnumFontFamProc, (LPARAM) & logfont); display.hFont = CreateFontIndirect (&logfont); if (!display.hFont) { HandleError ("Error executing CreateFontIndirect", FATAL); } SelectObject (display.hdcMem, display.hFont); #endif /* defined (USE_WINDOWS_FONT) */ } void gl_setpalettecolor (long x, long r, long g, long b) { if (x >= 0 && x <= 255) { AddPaletteEntry (x, r, g, b); } } void Fgl_setfontcolors (int bg, int fg) { text_fg = fg; text_bg = bg; } void Fgl_setfont (int fw, int fh, void *fp) { open_font = fp; open_font_height = fh; } void Fgl_setpixel (int x, int y, int col) { int i; if (clipping_flag) if (x < xclip_x1 || x > xclip_x2 || y < xclip_y1 || y > xclip_y2) return; col &= 0xff; // Draw to pixmap buffer i = pixmap_index(x,y); pixmap[i] = (unsigned char) col; // Draw to DC if (display.useDIB) { BYTE *pixel = display.pBits; unsigned long row = display.pbminfo->bmiHeader.biHeight - (y + bordery); unsigned long rowlength = display.pbminfo->bmiHeader.biWidth; unsigned long mod = rowlength % sizeof (DWORD); if (mod) { rowlength += (sizeof (DWORD) - mod); } // Pad out to DWORD boundary pixel += row * rowlength + x + borderx; // Ptr arith w/ 4 bytes per pixel *pixel = col; } else { if (pix_double) { RECT rect; HBRUSH hbr, hbrOld; rect.left = AdjustX (x); rect.top = AdjustY (y); rect.right = AdjustX (x + 1); rect.bottom = AdjustY (y + 1); hbr = GetPaletteBrush (col); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); FillRect (display.hdcMem, &rect, hbr); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } else { SetPixel (display.hdcMem, x + borderx, y + bordery, GetPaletteColorref (col)); } } // It's too slow to write directly to screen or to queue update event // for every pixel. Instead, the caller will have to do this. } int Fgl_getpixel (int x, int y) { return pixmap_getpixel (x, y); } void Fgl_hline (int x1, int y1, int x2, int col) { int xor = 0; RECT rect; if (col == -1) { xor = 1; } col &= 0xff; pixmap_hline (x1, y1, x2, col); // Calculate extent of update rectangle rect.left = AdjustX (x1); rect.top = AdjustY (y1); rect.right = AdjustX (x2); // LineTo() does not include final pixel of line rect.bottom = AdjustY (y1 + 1); // Draw to DC if (display.useDIB) { HPEN hpen, hpenOld; HBITMAP hOldBitmapMem; int oldrop2; hpen = CreatePen (PS_SOLID, 0, GetPaletteColorref (col)); hpenOld = (HPEN) SelectObject (display.hdcMem, hpen); hOldBitmapMem = (HBITMAP) SelectObject (display.hdcMem, display.hDIB); MoveToEx (display.hdcMem, x1 + borderx, y1 + bordery, NULL); if (xor) oldrop2 = SetROP2 (display.hdcMem, R2_NOT); LineTo (display.hdcMem, x2 + borderx, y1 + bordery); if (xor) SetROP2 (display.hdcMem, oldrop2); display.hDIB = (HBITMAP) SelectObject (display.hdcMem, hOldBitmapMem); hpen = (HPEN) SelectObject (display.hdcMem, hpenOld); DeleteObject (hpen); } else { if (pix_double) { HBRUSH hbr, hbrOld; int oldrop2; hbr = GetPaletteBrush (col); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); if (xor) oldrop2 = SetROP2 (display.hdcMem, R2_NOT); FillRect (display.hdcMem, &rect, hbr); if (xor) SetROP2 (display.hdcMem, oldrop2); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } else { HPEN hpen, hpenOld; int oldrop2; hpen = CreatePen (PS_SOLID, 0, GetPaletteColorref (col)); hpenOld = (HPEN) SelectObject (display.hdcMem, hpen); MoveToEx (display.hdcMem, x1 + borderx, y1 + bordery, NULL); if (xor) oldrop2 = SetROP2 (display.hdcMem, R2_NOT); LineTo (display.hdcMem, x2 + borderx, y1 + bordery); if (xor) SetROP2 (display.hdcMem, oldrop2); hpen = (HPEN) SelectObject (display.hdcMem, hpenOld); DeleteObject (hpen); } } // Queue update event InvalidateRect (display.hWnd, &rect, FALSE); } void Fgl_line (int x1, int y1, int dummy, int y2, int col) /* vertical lines only. */ { RECT rect; col &= 0xff; pixmap_vline (x1, y1, y2, col); // Calculate extent of update rectangle rect.left = AdjustX (x1); rect.top = AdjustY (y1); rect.right = AdjustX (x1 + 1); rect.bottom = AdjustY (y2); // LineTo() does not include final pixel of line // Draw to DC if (display.useDIB) { HPEN hpen, hpenOld; HBITMAP hOldBitmapMem; hpen = CreatePen (PS_SOLID, 0, GetPaletteColorref (col)); hpenOld = (HPEN) SelectObject (display.hdcMem, hpen); hOldBitmapMem = (HBITMAP) SelectObject (display.hdcMem, display.hDIB); MoveToEx (display.hdcMem, x1 + borderx, y1 + bordery, NULL); LineTo (display.hdcMem, x1 + borderx, y2 + bordery); display.hDIB = (HBITMAP) SelectObject (display.hdcMem, hOldBitmapMem); hpen = (HPEN) SelectObject (display.hdcMem, hpenOld); DeleteObject (hpen); } else { if (pix_double) { HBRUSH hbr, hbrOld; hbr = GetPaletteBrush (col); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); FillRect (display.hdcMem, &rect, hbr); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } else { HPEN hpen, hpenOld; hpen = CreatePen (PS_SOLID, 0, GetPaletteColorref (col)); hpenOld = (HPEN) SelectObject (display.hdcMem, hpen); MoveToEx (display.hdcMem, AdjustX (x1), AdjustY (y1), NULL); LineTo (display.hdcMem, AdjustX (x1), AdjustY (y2)); hpen = (HPEN) SelectObject (display.hdcMem, hpenOld); DeleteObject (hpen); } } // Queue update event InvalidateRect (display.hWnd, &rect, FALSE); } void Fgl_write (int x, int y, char *s) { int i; RECT rect; #if defined (USE_WINDOWS_FONT) SIZE size; // Select background and foreground colors SetTextColor (display.hdcMem, GetPaletteColorref (text_fg)); SetBkColor (display.hdcMem, GetPaletteColorref (text_bg)); // Draw text to backing store ExtTextOut (display.hdcMem, AdjustX (x), AdjustY (y), 0, NULL, s, strlen (s), NULL); // Calculate size of text GetTextExtentPoint32 (display.hdcMem, s, strlen (s), &size); #endif // Draws to pixmap only when USE_WINDOWS_FONT is defined for (i = 0; i < (int) (strlen (s)); i++) my_x_putchar (x + i * 8, y, s[i]); // Queue update event #if defined (USE_WINDOWS_FONT) rect.left = AdjustX (x); rect.top = AdjustY (y); rect.right = AdjustX (x + size.cx); rect.bottom = AdjustY (y + size.cy); InvalidateRect (display.hWnd, &rect, FALSE); #else rect.left = AdjustX (x); rect.top = AdjustY (y); rect.right = AdjustX (x + i * 8); rect.bottom = AdjustY (y + 8); InvalidateRect (display.hWnd, &rect, FALSE); #endif } void open_write (int x, int y, char *s) { int i; RECT rect; for (i = 0; i < (int) (strlen (s)); i++) open_x_putchar (x + i * 8, y, s[i]); // Queue update event rect.left = AdjustX (x); rect.top = AdjustY (y); rect.right = AdjustX (x + i * 8); rect.bottom = AdjustY (y + open_font_height); InvalidateRect (display.hWnd, &rect, FALSE); } void my_x_putchar (int xx, int yy, unsigned char c) { int x, y, b; for (y = 0; y < 8; y++) { b = main_font[c * 8 + y]; for (x = 0; x < 8; x++) { if ((b & 0x80) == 0) { #if defined (USE_WINDOWS_FONT) pixmap_setpixel (xx + x, yy + y, text_bg); #else Fgl_setpixel (xx + x, yy + y, text_bg); #endif } else { #if defined (USE_WINDOWS_FONT) pixmap_setpixel (xx + x, yy + y, text_fg); #else Fgl_setpixel (xx + x, yy + y, text_fg); #endif } b = b << 1; } } } void open_x_putchar (int xx, int yy, unsigned char c) { int x, y, b; for (y = 0; y < open_font_height; y++) { b = open_font[c * open_font_height + y]; for (x = 0; x < 8; x++) { if ((b & 0x80) == 0) Fgl_setpixel (xx + x, yy + y, text_bg); else Fgl_setpixel (xx + x, yy + y, text_fg); b = b << 1; } } } void Fgl_fillbox (int x1, int y1, int w, int h, int col) { RECT rect; if (clipping_flag) { if (x1 < xclip_x1) x1 = xclip_x1; if (x1 + w > xclip_x2) w = xclip_x2 - x1; if (y1 < xclip_y1) y1 = xclip_y1; if (y1 + h > xclip_y2) h = xclip_y2 - y1; } col &= 0xff; pixmap_fillbox (x1, y1, w, h, col); // Draw to DC if (display.useDIB) { HBITMAP hOldBitmapMem; HBRUSH hbr, hbrOld; rect.left = x1 + borderx; rect.top = y1 + bordery; rect.right = x1 + borderx + w; rect.bottom = y1 + bordery + h; hbr = GetPaletteBrush (col); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); hOldBitmapMem = (HBITMAP) SelectObject (display.hdcMem, display.hDIB); FillRect (display.hdcMem, &rect, hbr); display.hDIB = (HBITMAP) SelectObject (display.hdcMem, hOldBitmapMem); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } else { HBRUSH hbr, hbrOld; rect.left = AdjustX (x1); rect.top = AdjustY (y1); rect.right = AdjustX (x1 + w); rect.bottom = AdjustY (y1 + h); hbr = GetPaletteBrush (col); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); FillRect (display.hdcMem, &rect, hbr); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } // Queue update event InvalidateRect (display.hWnd, &rect, FALSE); } void Fgl_putbox (int x1, int y1, int w, int h, void *buf) { unsigned char *b = (unsigned char *) buf; RECT rect; int x, y; for (y = y1; y < y1 + h; y++) for (x = x1; x < x1 + w; x++) Fgl_setpixel (x, y, *(b++)); // Queue update event rect.left = AdjustX (x1); rect.top = AdjustY (y1); rect.right = AdjustX (x1 + w); rect.bottom = AdjustY (y1 + h); InvalidateRect (display.hWnd, &rect, FALSE); // GCS: Don't update window here -- it causes farms to jump // around when panning main screen //UpdateWindow (display.hWnd); } void Fgl_getbox (int x1, int y1, int w, int h, void *buf) { unsigned char *b = (unsigned char *) buf; int x, y; for (y = y1; y < y1 + h; y++) for (x = x1; x < x1 + w; x++) *(b++) = (unsigned char) Fgl_getpixel (x, y); } void RefreshScreen () { InvalidateRect (display.hWnd, NULL, FALSE); ProcessNextEvent (); } void RefreshArea (int x1, int y1, int x2, int y2) // bounds of refresh area { RECT rect; rect.left = AdjustX (x1); rect.top = AdjustY (y1); rect.right = AdjustX (x2); rect.bottom = AdjustY (y2); InvalidateRect (display.hWnd, &rect, FALSE); UpdateWindow (display.hWnd); } void Fgl_enableclipping (void) { clipping_flag = 1; } void Fgl_setclippingwindow (int x1, int y1, int x2, int y2) { xclip_x1 = x1; xclip_y1 = y1; xclip_x2 = x2; xclip_y2 = y2; } void Fgl_disableclipping (void) { clipping_flag = 0; } void do_call_event (int wait) { if (wait) lc_usleep (1000); HandleMouse (); } void call_event (void) { do_call_event (0); } void call_wait_event (void) { do_call_event (1); } #ifdef USE_PIXMAPS void init_icon_pixmap (short type) { unsigned char *g; int x, y; HBITMAP hOldBitmapMem; int w, h; int grp; grp = get_group_of_type(type); if( grp >= 0) { w = main_groups[grp].size * 16; h = main_groups[grp].size * 16; w <<= pix_double; h <<= pix_double; icon_pixmap[type] = CreateCompatibleBitmap (display.hdcMem, w, h); hOldBitmapMem = (HBITMAP) SelectObject (display.hdcMem, icon_pixmap[type]); /* Copy bits to bitmap */ g = (unsigned char *) main_types[type].graphic; for (y = 0; y < main_groups[grp].size * 16; y++) { for (x = 0; x < main_groups[grp].size * 16; x++) { if (pix_double) { RECT rect; HBRUSH hbr, hbrOld; rect.left = x << 1; rect.top = y << 1; rect.right = (x + 1) << 1; rect.bottom = (y + 1) << 1; hbr = GetPaletteBrush (*g++); hbrOld = (HBRUSH) SelectObject (display.hdcMem, hbr); FillRect (display.hdcMem, &rect, hbr); hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } else { SetPixel (display.hdcMem, x, y, GetPaletteColorref (*g++)); } } } icon_pixmap[type] = (HBITMAP) SelectObject (display.hdcMem, hOldBitmapMem); } } #endif int lc_get_keystroke (void) { return GetKeystroke (); } void draw_border (void) { } void init_mouse (void) { } lincity-1.13.1/winmain.c0000644000175000017500000012335607757310566012031 00000000000000/* ---------------------------------------------------------------------- * * winmain.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #include #include #include #include #include #include "lcstring.h" #include "lin-city.h" #include "common.h" #include "generic.h" #include "mouse.h" #include "lchelp.h" #include "module_buttons.h" // Define this to use DIB's instead of DDB's // GCS: WIN32_USEDIB will no longer work, since I didn't update the // window resizing code for DIB's. //#define WIN32_USEDIB // Global Variables static char szClassNameWithMenu[] = APPNAME " (with menu)"; static char szClassNameWithoutMenu[] = APPNAME " (without menu)"; static char szAppName[] = APPNAME; // The name of this application static char szTitle[] = APPNAME; // The title bar text static HBRUSH hbrBackground = 0; int pending_mouse_event = 0; int pending_mouse_x = 0; int pending_mouse_y = 0; int pending_resize_event = 0; int pending_resize_w = 0; int pending_resize_h = 0; // Private Function Prototypes static ATOM MyRegisterClass (CONST WNDCLASS *); static BOOL InitApplication (HINSTANCE); static BOOL InitInstance (HINSTANCE, int); static LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); static LRESULT CALLBACK About (HWND, UINT, WPARAM, LPARAM); static BOOL CenterWindow (HWND, HWND); static void InitializeBackingStore (HWND); static BOOL CopyBackingStoreToScreen (HDC, HWND, LPPAINTSTRUCT); static void CreateDDB (HWND hWnd); static void CreateDIB (void); static void InitializePalette (void); static void DoSquareMouse (HDC hdc); static void ResizeBackingStore (HWND hWnd); static void ResizeDDB (HWND hWnd); //---------------------------------------------------------------------------- // FUNCTION: WinMain(HANDLE, HANDLE, LPSTR, int) // // PURPOSE: Entry point for the application. // // COMMENTS: // // This function initializes the application and processes the // message loop. //---------------------------------------------------------------------------- int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { char *args[] = {"wlincity"}; if (!hPrevInstance) { // Perform instance initialization: if (!InitApplication (hInstance)) { return (FALSE); } } // Perform application initialization, including creating the // Lin-City main window. if (!InitInstance (hInstance, nCmdShow)) { return (FALSE); } // Load keyboard accelerators (shortkut keys) display.hAccelTable = LoadAccelerators (hInstance, szAppName); // Take care of any outstanding messages ProcessPendingEvents (); // lincity_main() contains main message loop lincity_main (1, args); // Take care of any outstanding messages after main() finishes. ProcessPendingEvents (); return 0; lpCmdLine; // This prevents 'unused formal parameter' warnings } //---------------------------------------------------------------------------- // FUNCTION: MyRegisterClass(CONST WNDCLASS*) // // PURPOSE: Registers the window class. // // COMMENTS: // // This function and its usage is only necessary if you want this code // to be compatible with Win32 systems prior to the 'RegisterClassEx' // function that was added to Windows 95. It is important to call this function // so that the application will get 'well formed' small icons associated // with it. //---------------------------------------------------------------------------- ATOM MyRegisterClass (CONST WNDCLASS * lpwc) { HANDLE hMod; FARPROC proc; WNDCLASSEX wcex; hMod = GetModuleHandle ("USER32"); if (hMod != NULL) { #if defined (UNICODE) proc = GetProcAddress ((HMODULE) hMod, "RegisterClassExW"); #else /* */ proc = GetProcAddress ((HMODULE) hMod, "RegisterClassExA"); #endif /* */ if (proc != NULL) { // GCS: This typedef is for the typecast in the return stmt below typedef int (FAR WINAPI * my_FARPROC) (WNDCLASSEX *); wcex.style = lpwc->style; wcex.lpfnWndProc = lpwc->lpfnWndProc; wcex.cbClsExtra = lpwc->cbClsExtra; wcex.cbWndExtra = lpwc->cbWndExtra; wcex.hInstance = lpwc->hInstance; wcex.hIcon = lpwc->hIcon; wcex.hCursor = lpwc->hCursor; wcex.hbrBackground = lpwc->hbrBackground; wcex.lpszMenuName = lpwc->lpszMenuName; wcex.lpszClassName = lpwc->lpszClassName; // Added elements for Windows 95: wcex.cbSize = sizeof (WNDCLASSEX); wcex.hIconSm = LoadIcon (wcex.hInstance, "SMALL"); return (*((my_FARPROC) (proc))) (&wcex); } } return (RegisterClass (lpwc)); } //---------------------------------------------------------------------------- // FUNCTION: InitApplication(HANDLE) // // PURPOSE: Initializes window data and registers window classes // // COMMENTS: // We need two classes -- one which has a menu, one without a menu // (for full-screen). This is registered by calling RegisterClass // for Win 3.1/NT, or MyRegisterClass for Win 95. //---------------------------------------------------------------------------- BOOL InitApplication (HINSTANCE hInstance) { WNDCLASS wcWithMenu; WNDCLASS wcWithoutMenu; // If Lin City is already running, focus existing process. // Win32 always sets hPrevInstance to NULL, so check w/ FindWindow() HWND hwnd = FindWindow (szClassNameWithMenu, NULL); if (!hwnd) hwnd = FindWindow (szClassNameWithoutMenu, NULL); if (hwnd) { // We found another version of ourself. Lets defer to it: if (IsIconic (hwnd)) { ShowWindow (hwnd, SW_RESTORE); } SetForegroundWindow (hwnd); return FALSE; } // Create brush for background: Nasty Brown (Lin City color # 105) hbrBackground = CreateSolidBrush (RGB (0x4C, 0x4C, 0)); // Fill in WNDCLASS for class WITH MENU. wcWithMenu.style = 0; wcWithMenu.lpfnWndProc = (WNDPROC) WndProc; wcWithMenu.cbClsExtra = 0; wcWithMenu.cbWndExtra = 0; wcWithMenu.hInstance = hInstance; wcWithMenu.hIcon = LoadIcon (hInstance, szAppName); wcWithMenu.hCursor = LoadCursor (NULL, IDC_ARROW); wcWithMenu.hbrBackground = hbrBackground; // Windows95 has different recommended help menu format. #if defined (USE_WIN32_MENU) if (IS_WIN95) { wcWithMenu.lpszMenuName = "WIN95"; } else { wcWithMenu.lpszMenuName = szAppName; } wcWithMenu.lpszClassName = szClassNameWithMenu; #else wcWithMenu.lpszMenuName = ""; wcWithMenu.lpszClassName = szClassNameWithMenu; #endif // Fill in WNDCLASS for class WITHOUT MENU. wcWithoutMenu.style = 0; wcWithoutMenu.lpfnWndProc = (WNDPROC) WndProc; wcWithoutMenu.cbClsExtra = 0; wcWithoutMenu.cbWndExtra = 0; wcWithoutMenu.hInstance = hInstance; wcWithoutMenu.hIcon = LoadIcon (hInstance, szAppName); wcWithoutMenu.hCursor = LoadCursor (NULL, IDC_ARROW); wcWithoutMenu.hbrBackground = hbrBackground; wcWithoutMenu.lpszMenuName = ""; wcWithoutMenu.lpszClassName = szClassNameWithoutMenu; // Register the window classes and return success/failure code. if (IS_WIN95) { BOOL rv; rv = MyRegisterClass (&wcWithMenu); if (!rv) return rv; rv = MyRegisterClass (&wcWithoutMenu); return rv; } else { BOOL rv; rv = RegisterClass (&wcWithMenu); if (!rv) return rv; rv = RegisterClass (&wcWithoutMenu); return rv; } } //---------------------------------------------------------------------------- // CheckClientSize (int width, int height, int with_menus) // -- // Return 1 if the screen can support a client of this size //---------------------------------------------------------------------------- void CheckClientSize (int width, int height, int with_menus) { display.screenW = GetSystemMetrics (SM_CXSCREEN); display.screenH = GetSystemMetrics (SM_CYSCREEN); } //---------------------------------------------------------------------------- // FUNCTION: InitInstance(HANDLE, int) // // PURPOSE: Creates main window //---------------------------------------------------------------------------- BOOL InitInstance (HINSTANCE hInstance, int nCmdShow) { HDC hDCGlobal = GetDC (NULL); INT iRasterCaps; char *szClassName = 0; DWORD dwStyle; RECT client_size; // Determine graphics capabilities iRasterCaps = GetDeviceCaps (hDCGlobal, RASTERCAPS); if (iRasterCaps & RC_PALETTE) { display.hasPalette = TRUE; display.paletteSize = GetDeviceCaps (hDCGlobal, SIZEPALETTE); display.defaultPaletteSize = GetDeviceCaps (hDCGlobal, NUMCOLORS); } else { display.hasPalette = FALSE; } display.colorDepth = GetDeviceCaps (hDCGlobal, BITSPIXEL); ReleaseDC (NULL, hDCGlobal); // Decide whether to use DIB's or DDB's #if defined (WIN32_USEDIB) if (display.colorDepth == 8) // Only use DIB for 256 colors display.useDIB = TRUE; else display.useDIB = FALSE; #else /* */ display.useDIB = FALSE; #endif /* */ // Do some global initializations display.hInst = hInstance; display.fullscreen = FALSE; //display.fullscreen = TRUE; display.screenW = GetSystemMetrics (SM_CXSCREEN); display.screenH = GetSystemMetrics (SM_CYSCREEN); display.winFullscreenClientW = (INT) GetSystemMetrics (SM_CXFULLSCREEN); display.winFullscreenClientH = (INT) GetSystemMetrics (SM_CYFULLSCREEN); InitializePalette (); // Choose one of Lin City window types // a) no pix doubling, no border // b) no pix doubling, 30 pixel border // c) pix doubling, no border // GCS FIX: This doesn't work. I need to call AdjustWindowRect on these values (?) if ((display.screenW >= 2*WINWIDTH + 2*BORDERX) && (display.screenH >= 2*WINHEIGHT + 2*BORDERY)) { pix_double = 1; borderx = 1; bordery = 1; } else if ((display.screenW >= 2*WINWIDTH) && (display.screenH >= 2*WINHEIGHT)) { pix_double = 1; borderx = 0; bordery = 0; } else if ((display.screenW >= WINWIDTH + (2 * BORDERX)) &&(display.screenH >= WINHEIGHT + (2 * BORDERY))) { pix_double = 0; borderx = BORDERX; bordery = BORDERY; } else { pix_double = 0; borderx = 0; bordery = 0; } display.clientW = ((pix_double + 1) * WINWIDTH) + (2 * borderx); display.clientH = ((pix_double + 1) * WINHEIGHT) + (2 * bordery); // Choose one of three client window types // a) full screen // b) maximized window // c) regular window // Prefer regular over maximized over full screen dwStyle = WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_SIZEBOX; client_size.left = 0; client_size.top = 0; client_size.right = display.clientW; client_size.bottom = display.clientH; AdjustWindowRect (&client_size, dwStyle, TRUE); if (((client_size.right - client_size.left) <= display.screenW) &&((client_size.bottom - client_size.top) <= display.screenH)) { // Use regular (overlapped) window szClassName = szClassNameWithMenu; if (client_size.left < 0) { client_size.right -= client_size.left; client_size.left = CW_USEDEFAULT; } if (client_size.top < 0) { client_size.bottom -= client_size.top; client_size.top = CW_USEDEFAULT; } } else { // Check maximized by subtracting out the DLGFRAME size. // Note that the "obvious" method of calling AdjustWindowRect() // with style WS_MAXIMIZE doesn't work! int win_border_x = GetSystemMetrics (SM_CXDLGFRAME); int win_border_y = GetSystemMetrics (SM_CYDLGFRAME); if (((client_size.right - client_size.left - 2 * win_border_x) <= display.screenW) &&((client_size.bottom - client_size.top - 2 * win_border_y) <= display.screenH)) { // Use maximized window szClassName = szClassNameWithMenu; // dwStyle |= WS_MAXIMIZE; if (client_size.left < 0) { client_size.right -= client_size.left; client_size.left = CW_USEDEFAULT; } if (client_size.top < 0) { client_size.bottom -= client_size.top; client_size.top = CW_USEDEFAULT; } nCmdShow = SW_SHOWMAXIMIZED; } else { // Need fullsize window szClassName = szClassNameWithoutMenu; dwStyle = WS_POPUP; client_size.left = 0; client_size.top = 0; client_size.right = display.screenW; client_size.bottom = display.screenH; } } display.min_h = client_size.bottom - client_size.top; display.min_w = client_size.right - client_size.left; // Create the window display.hWnd = CreateWindow (szClassName, // Class name szTitle, // Caption dwStyle, // Style client_size.left, client_size.top, // Position client_size.right, client_size.bottom, // Size (HWND) NULL, // Parent window (no parent) (HMENU) NULL, // use class menu (HINSTANCE) hInstance, // handle to window instance (LPVOID) NULL // no params to pass on ); if (!display.hWnd) { return (FALSE); } // Display the window ShowWindow (display.hWnd, nCmdShow); UpdateWindow (display.hWnd); return (TRUE); } //---------------------------------------------------------------------------- // FUNCTION: ProcessNextEvent () // Wait for a message if necessary, // then process all messages. //---------------------------------------------------------------------------- void ProcessNextEvent (void) { MSG msg; if (GetMessage (&msg, NULL, 0, 0)) { if (!TranslateAccelerator (msg.hwnd, (HACCEL) display.hAccelTable, &msg)) { TranslateMessage (&msg); DispatchMessage (&msg); } } ProcessPendingEvents (); } //---------------------------------------------------------------------------- // FUNCTION: ProcessPendingEvents () // Process all outstanding messages. //---------------------------------------------------------------------------- void ProcessPendingEvents (void) { MSG msg; while (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) { if (!TranslateAccelerator (msg.hwnd, (HACCEL) display.hAccelTable, &msg)) { TranslateMessage (&msg); DispatchMessage (&msg); } } } //---------------------------------------------------------------------------- // FUNCTION: EnableWindowsMenuItems () // FUNCTION: DisableWindowsMenuItems () // Enable and Disable "Load" and "Save" items //---------------------------------------------------------------------------- void EnableWindowsMenuItems (void) { #if defined (USE_WIN32_MENU) HMENU hMenu = GetMenu (display.hWnd); EnableMenuItem (hMenu, IDM_OPEN, MF_BYCOMMAND | MF_ENABLED); EnableMenuItem (hMenu, IDM_SAVE, MF_BYCOMMAND | MF_ENABLED); EnableMenuItem (hMenu, IDM_HELPCONTENTS, MF_BYCOMMAND | MF_ENABLED); #endif } void DisableWindowsMenuItems (void) { #if defined (USE_WIN32_MENU) HMENU hMenu = GetMenu (display.hWnd); EnableMenuItem (hMenu, IDM_OPEN, MF_BYCOMMAND | MF_GRAYED); EnableMenuItem (hMenu, IDM_SAVE, MF_BYCOMMAND | MF_GRAYED); EnableMenuItem (hMenu, IDM_HELPCONTENTS, MF_BYCOMMAND | MF_GRAYED); #endif } //---------------------------------------------------------------------------- // FUNCTION: HandleMouse () //---------------------------------------------------------------------------- void HandleMouse () { MSG msg; /* Process queued events, ignoring mouse moves. */ while (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) { if (!TranslateAccelerator (msg.hwnd, (HACCEL) display.hAccelTable, &msg)) { pending_mouse_x = cs_mouse_x; pending_mouse_y = cs_mouse_y; pending_mouse_event = 0; pending_resize_event = 0; TranslateMessage (&msg); DispatchMessage (&msg); if (pending_mouse_event) cs_mouse_handler (pending_mouse_event, pending_mouse_x - cs_mouse_x, pending_mouse_y - cs_mouse_y); if (pending_resize_event) { /* Force resize, because I can't tell difference between size change and restoring a minimized window. Ideally, this would simply redraw. */ display.winW = 0; resize_geometry (pending_resize_w, pending_resize_h); } } } /* Now move the mouse if necessary. */ if (pending_mouse_x != cs_mouse_x || pending_mouse_y != cs_mouse_y) cs_mouse_handler (0, pending_mouse_x - cs_mouse_x, pending_mouse_y - cs_mouse_y); } //---------------------------------------------------------------------------- // FUNCTION: GetKeystroke () //---------------------------------------------------------------------------- char GetKeystroke () { char key; /* GCS 02/02/2003 I found out that sometimes the mouse events were getting lost here. */ HandleMouse (); // ProcessPendingEvents (); key = x_key_value; x_key_value = 0; return key; } //---------------------------------------------------------------------------- // FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // // PURPOSE: Processes messages for the main window. //---------------------------------------------------------------------------- LRESULT CALLBACK WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { #if defined (USE_WIN32_MENU) int wmId, wmEvent; #endif switch (message) { #if defined (USE_WIN32_MENU) case WM_COMMAND: { wmId = LOWORD (wParam); wmEvent = HIWORD (wParam); //Parse the menu selections: switch (wmId) { case IDM_OPEN: load_flag = 1; DisableWindowsMenuItems (); break; case IDM_SAVE: save_flag = 1; DisableWindowsMenuItems (); break; case IDM_EXIT: // GCS FIX: I'm still not quite satisfied with this... // x_key_value = 'q'; DestroyWindow (hWnd); break; case IDM_ABOUT: DialogBox (display.hInst, "AboutBox", hWnd, (DLGPROC) About); break; case IDM_HELPCONTENTS: help_flag = 1; DisableWindowsMenuItems (); activate_help ("index.hlp"); break; default: return (DefWindowProc (hWnd, message, wParam, lParam)); } } break; #endif case WM_KEYDOWN: { int nVirtKey = (int) wParam; x_key_shifted = (GetKeyState (VK_SHIFT) & 0x80000000) ? TRUE : FALSE; switch (nVirtKey) { case VK_LEFT: x_key_value = 1; break; case VK_DOWN: x_key_value = 2; break; case VK_UP: x_key_value = 3; break; case VK_RIGHT: x_key_value = 4; break; case VK_ESCAPE: x_key_value = 5; break; } } break; case WM_CHAR: { TCHAR chCharCode = (TCHAR) wParam; // character code LPARAM lKeyData = lParam; // key data if (chCharCode == 8) { // Fix backspace chCharCode = 127; } else if (chCharCode == VK_ESCAPE) { // Fix escape chCharCode = 5; } x_key_value = chCharCode; } break; // RightClick on windows non-client area case WM_NCRBUTTONUP: if (IS_WIN95 && SendMessage (hWnd, WM_NCHITTEST, 0, lParam) == HTSYSMENU) { // The user has clicked the right button on the applications // 'System Menu'. Here is where you would alter the default // system menu to reflect your application. Notice how the // explorer deals with this. For this app, we aren't doing // anything return (DefWindowProc (hWnd, message, wParam, lParam)); } else { // Nothing we are interested in, allow default handling... return (DefWindowProc (hWnd, message, wParam, lParam)); } break; // RightClick in windows client area case WM_RBUTTONDOWN: pending_mouse_x = UnAdjustX (LOWORD (lParam)); pending_mouse_y = UnAdjustY (HIWORD (lParam)); pending_mouse_event = LC_MOUSE_RIGHTBUTTON | LC_MOUSE_PRESS; cs_mouse_shifted = (wParam & MK_SHIFT) ? 1 : 0; break; // Left Click in windows client area case WM_LBUTTONDOWN: pending_mouse_x = UnAdjustX (LOWORD (lParam)); pending_mouse_y = UnAdjustY (HIWORD (lParam)); pending_mouse_event = LC_MOUSE_LEFTBUTTON | LC_MOUSE_PRESS; cs_mouse_shifted = (wParam & MK_SHIFT) ? 1 : 0; break; case WM_RBUTTONUP: pending_mouse_x = UnAdjustX (LOWORD (lParam)); pending_mouse_y = UnAdjustY (HIWORD (lParam)); pending_mouse_event = LC_MOUSE_RIGHTBUTTON | LC_MOUSE_RELEASE; cs_mouse_shifted = (wParam & MK_SHIFT) ? 1 : 0; break; case WM_LBUTTONUP: pending_mouse_x = UnAdjustX (LOWORD (lParam)); pending_mouse_y = UnAdjustY (HIWORD (lParam)); pending_mouse_event = LC_MOUSE_LEFTBUTTON | LC_MOUSE_RELEASE; cs_mouse_shifted = (wParam & MK_SHIFT) ? 1 : 0; break; case WM_MOUSEMOVE: pending_mouse_x = UnAdjustX (LOWORD (lParam)); pending_mouse_y = UnAdjustY (HIWORD (lParam)); cs_mouse_shifted = (wParam & MK_SHIFT) ? 1 : 0; break; // Only comes through on plug'n'play systems case WM_DISPLAYCHANGE: { SIZE szScreen; BOOL fChanged = (BOOL) wParam; szScreen.cx = LOWORD (lParam); szScreen.cy = HIWORD (lParam); if (fChanged) { // The display 'has' changed. szScreen reflects the // new size. MessageBox (GetFocus (), "Display Changed", szAppName, 0); } else { // The display 'is' changing. szScreen reflects the // original size. MessageBeep (0); } } break; case WM_PAINT: { PAINTSTRUCT ps; HDC hdc; hdc = BeginPaint (hWnd, &ps); CopyBackingStoreToScreen (hdc, hWnd, &ps); EndPaint (hWnd, &ps); } break; // Create client area case WM_CREATE: InitializeBackingStore (hWnd); break; case WM_DESTROY: // PostQuitMessage(0); exit (0); // OK?? break; case WM_SIZE: // Resize window if (wParam != SIZE_MINIMIZED) { pending_resize_event = 1; pending_resize_w = LOWORD (lParam); pending_resize_h = HIWORD (lParam); ResizeBackingStore (hWnd); } break; case WM_GETMINMAXINFO: { /* GCS FIX */ /* This needs to include client menu */ /* To do this, I need to call AdjustWindowRect, but probably I need consider that the window might be POPUP... */ LPMINMAXINFO lpmmi = (LPMINMAXINFO) lParam; #if defined (commentout) lpmmi->ptMinTrackSize.x = (640 << pix_double) + 2 * borderx; lpmmi->ptMinTrackSize.y = (480 << pix_double) + 2 * bordery; #endif lpmmi->ptMinTrackSize.x = display.min_w; lpmmi->ptMinTrackSize.y = display.min_h; break; } default: return (DefWindowProc (hWnd, message, wParam, lParam)); } return (0); } //---------------------------------------------------------------------------- // FUNCTION: InitializeBackingStore () //---------------------------------------------------------------------------- void InitializeBackingStore (HWND hWnd) { RECT rc; GetClientRect (hWnd, &rc); display.winW = rc.right - rc.left; display.winH = rc.bottom - rc.top; InitializePalette (); CreateDDB (hWnd); if (display.useDIB) { CreateDIB (); } display.hSaveUnderHdc = 0; display.hSaveUnderBitmap = 0; } void ResizeBackingStore (HWND hWnd) { ResizeDDB (hWnd); if (display.useDIB) { // This had better be false exit(-1); } } //---------------------------------------------------------------------------- // FUNCTION: InitializePalette () //---------------------------------------------------------------------------- void InitializePalette (void) { INT iLoop; display.hPal = 0; display.pLogPal = 0; // Clear out palette arrays for (iLoop = 0; iLoop < 256; iLoop++) { display.colorrefPal[iLoop] = 0; display.brushPal[iLoop] = 0; } // If the device uses a palette (e.g. 8 bit display), // we need to create an HPALETTE for the HDC. if (display.hasPalette) { // Allocate memory for LOGPALETTE display.pLogPal = (NPLOGPALETTE) LocalAlloc (LMEM_FIXED, (sizeof (LOGPALETTE) + (sizeof (PALETTEENTRY) * (display.paletteSize)))); if (!display.pLogPal) { MessageBox (display.hWnd, "Not enough memory for logical palette.", NULL, MB_OK | MB_ICONHAND); PostQuitMessage (0); exit (-1); } display.pLogPal->palVersion = 0x300; display.pLogPal->palNumEntries = display.paletteSize; // Fill palette with system colors by default for (iLoop = 0; iLoop < display.paletteSize; iLoop++) { *((WORD *) (&display.pLogPal->palPalEntry[iLoop].peRed)) = (WORD) iLoop; display.pLogPal->palPalEntry[iLoop].peBlue = 0; display.pLogPal->palPalEntry[iLoop].peFlags = PC_EXPLICIT; } // Convert LOGPALETTE into HPALETTE display.hPal = CreatePalette ((LPLOGPALETTE) display.pLogPal); } } //---------------------------------------------------------------------------- // FUNCTION: CreateDIB () //---------------------------------------------------------------------------- void CreateDIB (void) { // Let's create a 256 color DIB, just for testing! ULONG sizBMI; INT iNumClr = 256; INT iLoop; // Get memory for 256 color BITMAPINFO sizBMI = sizeof (BITMAPINFOHEADER) + sizeof (RGBQUAD) * iNumClr; if ((display.pbminfo = (PBITMAPINFO) GlobalAlloc (GMEM_FIXED | GMEM_ZEROINIT, sizBMI)) == NULL) { MessageBox (display.hWnd, "Failed in Memory Allocation for bminfo!", "Error", MB_OK); exit (-1); } // Fill in bitmap info display.pbminfo->bmiHeader.biSize = 0x28; // GDI needs this to work display.pbminfo->bmiHeader.biWidth = display.winW; display.pbminfo->bmiHeader.biHeight = display.winH; display.pbminfo->bmiHeader.biPlanes = 1; display.pbminfo->bmiHeader.biBitCount = 8; display.pbminfo->bmiHeader.biCompression = BI_RGB; // this choice for biSizeImage reflects one byte per pixel display.pbminfo->bmiHeader.biSizeImage = display.winW * display.winH; display.pbminfo->bmiHeader.biXPelsPerMeter = 0; display.pbminfo->bmiHeader.biYPelsPerMeter = 0; display.pbminfo->bmiHeader.biClrUsed = 0; display.pbminfo->bmiHeader.biClrImportant = 0; // Fill in colormap w/ black for (iLoop = 0; iNumClr; iLoop++) { display.pbminfo->bmiColors[iLoop].rgbRed = 0; display.pbminfo->bmiColors[iLoop].rgbGreen = 0; display.pbminfo->bmiColors[iLoop].rgbBlue = 0; display.pbminfo->bmiColors[iLoop].rgbReserved = 0; } // CreateDIBSection() will allocate the pBits. display.hDIB = CreateDIBSection (display.hdcMem, display.pbminfo, DIB_RGB_COLORS, (void **) (&display.pBits), NULL, 0); } //---------------------------------------------------------------------------- // FUNCTION: CreateDDB () //---------------------------------------------------------------------------- void CreateDDB (HWND hWnd) { HDC hdc; HBITMAP hBitmapOri; HPALETTE hPalOld; RECT rect; HBRUSH hbr, hbrOld; hdc = GetDC (hWnd); if (display.hasPalette) { hPalOld = SelectPalette (hdc, (HPALETTE) display.hPal, FALSE); if (RealizePalette (hdc)) { UpdateColors (hdc); } } // Before an application can use a memory device // context for drawing operations, it must select // a bitmap of the correct width and height into // the device context. Once a bitmap has been selected, // the device context can be used to prepare images // that will be copied to the screen or printed. display.hdcMem = CreateCompatibleDC (hdc); if (display.hasPalette) { display.hPaletteMemOri = SelectPalette (display.hdcMem, (HPALETTE) display.hPal, FALSE); RealizePalette (display.hdcMem); } display.hBitmap = CreateCompatibleBitmap (hdc, display.winW, display.winH); hBitmapOri = (HBITMAP) SelectObject (display.hdcMem, display.hBitmap); // Write that nasty brown color into the backing store rect.left = 0; rect.top = 0; rect.right = display.winW; rect.bottom = display.winH; hbr = hbrBackground; hbrOld = (HBRUSH) SelectObject (hdc, hbr); // Select brush FillRect (display.hdcMem, &rect, (HBRUSH) hbr); // Draw rectangle hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); // Unselect brush #if defined (commentout) // GCS: For now, just keep the old bitmap around. // I'll use it to swap out the full-sized color bitmap // when I do a SetDIBits/GetDIBits. display.hBitmapOri = hBitmapOri; #endif /* */ #if defined (commentout) // GCS: Instead of reselecting the default bitmap back into the hdc, // I'm gonna delete it. Any problems with this?? DeleteObject (hBitmapOri); #endif /* */ ReleaseDC (hWnd, hdc); } void ResizeDDB (HWND hWnd) { RECT rect; HDC hdc; HBRUSH hbr, hbrOld; hdc = GetDC (hWnd); DeleteObject (display.hBitmap); display.hBitmap = CreateCompatibleBitmap (hdc, pending_resize_w, pending_resize_h); SelectObject (display.hdcMem, display.hBitmap); rect.left = 0; rect.top = 0; rect.right = pending_resize_w; rect.bottom = pending_resize_h; hbr = hbrBackground; hbrOld = (HBRUSH) SelectObject (hdc, hbr); // Select brush FillRect (display.hdcMem, &rect, (HBRUSH) hbr); // Draw rectangle hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); // Unselect brush ReleaseDC (hWnd, hdc); } //---------------------------------------------------------------------------- // FUNCTION: CopyBackingStoreToScreen () //---------------------------------------------------------------------------- BOOL CopyBackingStoreToScreen (HDC hdc, HWND hWnd, LPPAINTSTRUCT ps) { HPALETTE hPalOld, hPalOldMem; // Is this necessary??? if (display.hasPalette) { hPalOldMem = SelectPalette (display.hdcMem, (HPALETTE) display.hPal, FALSE); RealizePalette (display.hdcMem); hPalOld = SelectPalette (hdc, (HPALETTE) display.hPal, FALSE); RealizePalette (hdc); } // Copy DIB into DDB if (display.useDIB) { if (SetDIBits (display.hdcMem, display.hBitmap, 0, display.pbminfo->bmiHeader.biHeight, (LPSTR) display.pBits, display.pbminfo, DIB_RGB_COLORS) == 0) { MessageBox (display.hWnd, "Failed in SetDIBits!", "Error", MB_OK); exit (-1); } } // Blast DDB onto screen if (!BitBlt (hdc, ps->rcPaint.left, ps->rcPaint.top, (int) ps->rcPaint.right - ps->rcPaint.left, (int) ps->rcPaint.bottom - ps->rcPaint.top, display.hdcMem, ps->rcPaint.left, ps->rcPaint.top, SRCCOPY)) { MessageBox (NULL, "BitBlt failed!", "Failure!", MB_OK); } // Draw square mouse if (cs_square_mouse_visible) { DoSquareMouse (hdc); } if (display.hasPalette) { display.hPal = SelectPalette (display.hdcMem, hPalOldMem, FALSE); display.hPal = SelectPalette (hdc, hPalOld, FALSE); } return TRUE; } //---------------------------------------------------------------------------- // FUNCTION: DoSquareMouse () //---------------------------------------------------------------------------- void DoSquareMouse (HDC hdc) { RECT rect; int size; HBRUSH hbr, hbrOld; size = (main_groups[selected_module_group].size) * 16; // Select Brush hbr = GetPaletteBrush (white (31)); hbrOld = (HBRUSH) SelectObject (hdc, hbr); // Top rectangle rect.left = AdjustX (omx - 2); rect.top = AdjustY (omy - 2); rect.right = AdjustX (omx + size + 1); rect.bottom = AdjustY (omy - 1); FillRect (hdc, &rect, hbr); // Left rectangle rect.left = AdjustX (omx - 2); rect.top = AdjustY (omy); rect.right = AdjustX (omx - 1); rect.bottom = AdjustY (omy + size - 1); FillRect (hdc, &rect, hbr); // Right rectangle rect.left = AdjustX (omx + size); rect.top = AdjustY (omy); rect.right = AdjustX (omx + size + 1); rect.bottom = AdjustY (omy + size - 1); FillRect (hdc, &rect, hbr); // Bottom rectangle rect.left = AdjustX (omx - 2); rect.top = AdjustY (omy + size); rect.right = AdjustX (omx + size + 1); rect.bottom = AdjustY (omy + size + 1); FillRect (hdc, &rect, hbr); // Unselect brush hbr = (HBRUSH) SelectObject (display.hdcMem, hbrOld); } //---------------------------------------------------------------------------- // FUNCTION: CopyPixmapToScreen () //---------------------------------------------------------------------------- #if defined (USE_PIXMAPS) void CopyPixmapToScreen (int t2, int src_x, int src_y, int width, int height, int dst_x, int dst_y) { HDC hdcPixmap; RECT rect; // Calculate update rectangle rect.left = AdjustX (dst_x); rect.top = AdjustY (dst_y); rect.right = AdjustX (dst_x + width + 1); rect.bottom = AdjustY (dst_y + height + 1); // Copy bitmap if (display.useDIB) { HBITMAP hOldBitmap, hOldBitmapMem; hdcPixmap = CreateCompatibleDC (display.hdcMem); hOldBitmap = (HBITMAP) SelectObject (hdcPixmap, icon_pixmap[t2]); hOldBitmapMem = (HBITMAP) SelectObject (display.hdcMem, display.hDIB); BitBlt (display.hdcMem, dst_x, dst_y, width, height, hdcPixmap, src_x, src_y, SRCCOPY); icon_pixmap[t2] = (HBITMAP) SelectObject (hdcPixmap, hOldBitmap); display.hDIB = (HBITMAP) SelectObject (display.hdcMem, hOldBitmapMem); DeleteDC (hdcPixmap); } else { HBITMAP hOldBitmap; hdcPixmap = CreateCompatibleDC (display.hdcMem); hOldBitmap = (HBITMAP) SelectObject (hdcPixmap, icon_pixmap[t2]); BitBlt (display.hdcMem, AdjustX (dst_x), AdjustY (dst_y), width << pix_double, height << pix_double, hdcPixmap, src_x << pix_double, src_y << pix_double, SRCCOPY); icon_pixmap[t2] = (HBITMAP) SelectObject (hdcPixmap, hOldBitmap); DeleteDC (hdcPixmap); } // Queue up refresh InvalidateRect (display.hWnd, &rect, FALSE); } #endif /* */ //---------------------------------------------------------------------------- // FUNCTION: About(HWND, unsigned, WORD, LONG) // // PURPOSE: Processes messages for "About" dialog box // This version allows greater flexibility over the contents of the 'About' box, // by pulling out values from the 'Version' resource. // // MESSAGES: // // WM_INITDIALOG - initialize dialog box // WM_COMMAND - Input received // //---------------------------------------------------------------------------- #if defined (USE_WIN32_MENU) LRESULT CALLBACK About (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { static HFONT hfontDlg; // Font for dialog text static HFONT hFinePrint; // Font for 'fine print' in dialog DWORD dwVerInfoSize; // Size of version information block LPSTR lpVersion; // String pointer to 'version' text DWORD dwVerHnd = 0; // An 'ignored' parameter, always '0' UINT uVersionLen; WORD wRootLen; BOOL bRetCode; int i; char szFullPath[256]; char szResult[256]; char szGetName[256]; DWORD dwVersion; char szVersion[40]; DWORD dwResult; switch (message) { case WM_INITDIALOG: ShowWindow (hDlg, SW_HIDE); hfontDlg = CreateFont (16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, VARIABLE_PITCH | FF_SWISS, ""); hFinePrint = CreateFont (16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, VARIABLE_PITCH | FF_SWISS, ""); CenterWindow (hDlg, GetWindow (hDlg, GW_OWNER)); GetModuleFileName (display.hInst, szFullPath, sizeof (szFullPath)); // Now lets dive in and pull out the version information: dwVerInfoSize = GetFileVersionInfoSize (szFullPath, &dwVerHnd); if (dwVerInfoSize) { LPSTR lpstrVffInfo; HANDLE hMem; hMem = GlobalAlloc (GMEM_MOVEABLE, dwVerInfoSize); lpstrVffInfo = (char *) GlobalLock (hMem); GetFileVersionInfo (szFullPath, dwVerHnd, dwVerInfoSize, lpstrVffInfo); // The below 'hex' value looks a little confusing, but // essentially what it is, is the hexidecimal representation // of a couple different values that represent the language // and character set that we are wanting string values for. // 040904E4 is a very common one, because it means: // US English, Windows MultiLingual characterset // Or to pull it all apart: // 04------ = SUBLANG_ENGLISH_USA // --09---- = LANG_ENGLISH // ----04E4 = 1252 = Codepage for Windows:Multilingual lstrcpy (szGetName, "\\StringFileInfo\\040904E4\\"); wRootLen = lstrlen (szGetName); // Save this position // Set the title of the dialog: lstrcat (szGetName, "ProductName"); bRetCode = VerQueryValue ((LPVOID) lpstrVffInfo, (LPSTR) szGetName, (LPVOID *) & lpVersion, (UINT *) & uVersionLen); lstrcpy (szResult, "About "); lstrcat (szResult, lpVersion); SetWindowText (hDlg, szResult); // Walk through the dialog items that we want to replace: for (i = DLG_VERFIRST; i <= DLG_VERLAST; i++) { GetDlgItemText (hDlg, i, szResult, sizeof (szResult)); szGetName[wRootLen] = (char) 0; lstrcat (szGetName, szResult); uVersionLen = 0; lpVersion = NULL; bRetCode = VerQueryValue ((LPVOID) lpstrVffInfo, (LPSTR) szGetName, (LPVOID *) & lpVersion, (UINT *) & uVersionLen); if (bRetCode && uVersionLen && lpVersion) { // Replace dialog item text with version info lstrcpy (szResult, lpVersion); SetDlgItemText (hDlg, i, szResult); } else { dwResult = GetLastError (); wsprintf (szResult, "Error %lu", dwResult); SetDlgItemText (hDlg, i, szResult); } SendMessage (GetDlgItem (hDlg, i), WM_SETFONT, (UINT) ((i == DLG_VERLAST) ? hFinePrint : hfontDlg), TRUE); } GlobalUnlock (hMem); GlobalFree (hMem); } else { // No version information available. } SendMessage (GetDlgItem (hDlg, IDC_LABEL), WM_SETFONT, (WPARAM) hfontDlg, (LPARAM) TRUE); // We are using GetVersion rather then GetVersionEx // because earlier versions of Windows NT and Win32s // didn't include GetVersionEx: dwVersion = GetVersion (); if (dwVersion < 0x80000000) { // Windows NT wsprintf (szVersion, "Microsoft Windows NT %u.%u (Build: %u)", (DWORD) (LOBYTE (LOWORD (dwVersion))), (DWORD) (HIBYTE (LOWORD (dwVersion))), (DWORD) (HIWORD (dwVersion))); } else if (LOBYTE (LOWORD (dwVersion)) < 4) { // Win32s wsprintf (szVersion, "Microsoft Win32s %u.%u (Build: %u)", (DWORD) (LOBYTE (LOWORD (dwVersion))), (DWORD) (HIBYTE (LOWORD (dwVersion))), (DWORD) (HIWORD (dwVersion) & ~0x8000)); } else { // Windows 95 wsprintf (szVersion, "Microsoft Windows 95 %u.%u", (DWORD) (LOBYTE (LOWORD (dwVersion))), (DWORD) (HIBYTE (LOWORD (dwVersion)))); } SetWindowText (GetDlgItem (hDlg, IDC_OSVERSION), szVersion); ShowWindow (hDlg, SW_SHOW); return (TRUE); case WM_COMMAND: if (LOWORD (wParam) == IDOK || LOWORD (wParam) == IDCANCEL) { EndDialog (hDlg, TRUE); DeleteObject (hfontDlg); DeleteObject (hFinePrint); return (TRUE); } break; } return FALSE; } //---------------------------------------------------------------------------- // FUNCTION: CenterWindow(HWND, HWND) // // PURPOSE: Centers one window over another. // // COMMENTS: // // In this function, we save the instance handle in a global variable and // create and display the main program window. // // This functionwill center one window over another ensuring that // the placement of the window is within the 'working area', meaning // that it is both within the display limits of the screen, and not // obscured by the tray or other framing elements of the desktop. //---------------------------------------------------------------------------- BOOL CenterWindow (HWND hwndChild, HWND hwndParent) { RECT rChild, rParent, rWorkArea; int wChild, hChild, wParent, hParent; int xNew, yNew; BOOL bResult; // Get the Height and Width of the child window GetWindowRect (hwndChild, &rChild); wChild = rChild.right - rChild.left; hChild = rChild.bottom - rChild.top; // Get the Height and Width of the parent window GetWindowRect (hwndParent, &rParent); wParent = rParent.right - rParent.left; hParent = rParent.bottom - rParent.top; // Get the limits of the 'workarea' bResult = SystemParametersInfo (SPI_GETWORKAREA, sizeof (RECT), &rWorkArea, 0); if (!bResult) { rWorkArea.left = rWorkArea.top = 0; rWorkArea.right = GetSystemMetrics (SM_CXSCREEN); rWorkArea.bottom = GetSystemMetrics (SM_CYSCREEN); } // Calculate new X position, then adjust for workarea xNew = rParent.left + ((wParent - wChild) / 2); if (xNew < rWorkArea.left) { xNew = rWorkArea.left; } else if ((xNew + wChild) > rWorkArea.right) { xNew = rWorkArea.right - wChild; } // Calculate new Y position, then adjust for workarea yNew = rParent.top + ((hParent - hChild) / 2); if (yNew < rWorkArea.top) { yNew = rWorkArea.top; } else if ((yNew + hChild) > rWorkArea.bottom) { yNew = rWorkArea.bottom - hChild; } // Set it, and return return SetWindowPos (hwndChild, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | SWP_NOZORDER); } #endif /* USE_WIN32_MENU */ //---------------------------------------------------------------------------- // FUNCTION: AddPaletteEntry () //---------------------------------------------------------------------------- void AddPaletteEntry (int col, int red, int grn, int blu) { red = (red * 255) / 62; if (red > 255) red = 255; grn = (grn * 255) / 62; if (grn > 255) grn = 255; blu = (blu * 255) / 62; if (blu > 255) blu = 255; display.colorrefPal[col] = RGB (red, grn, blu); if (display.brushPal[col]) { DeleteObject (display.brushPal[col]); display.brushPal[col] = 0; } if (display.hasPalette) { display.pLogPal->palPalEntry[col].peRed = red; display.pLogPal->palPalEntry[col].peGreen = grn; display.pLogPal->palPalEntry[col].peBlue = blu; display.pLogPal->palPalEntry[col].peFlags = PC_NOCOLLAPSE; } if (display.useDIB) { display.pbminfo->bmiColors[col].rgbRed = red; display.pbminfo->bmiColors[col].rgbGreen = grn; display.pbminfo->bmiColors[col].rgbBlue = blu; display.pbminfo->bmiColors[col].rgbReserved = 0; } } //---------------------------------------------------------------------------- // FUNCTION: UpdatePalette () //---------------------------------------------------------------------------- void UpdatePalette (void) { if (display.hasPalette) { // Make a new HPALETTE and select to hdcGlobal and hdcMem HPALETTE hPalNew; hPalNew = CreatePalette ((LPLOGPALETTE) display.pLogPal); SelectPalette (display.hdcMem, hPalNew, FALSE); RealizePalette (display.hdcMem); DeleteObject (display.hPal); display.hPal = hPalNew; } } lincity-1.13.1/lincity.ico0000644000175000017500000000137607340321740012347 00000000000000 è( @€€€€€€€€€ÀÀÀ€€€˙˙˙˙˙˙˙˙˙˙˙˙ff"""""ff"""""!fb"""""ff"""""!f‡ggg""fb"""""!fhxxxr"f)™82""!fw‡wçr"bˆ‰˜1""!fgç··b"(ƒˆƒ"!fww{wr"#3ˆ™2"!fgç··b"#3ˆ“"!fww{wr"(ƒˆ2"afgç··b"bˆˆ‚&afww{wr&f(ˆˆˆ"fafgçwwbffbˆˆ‚ffaffwwwvfff""&ffaifffffffaa‘‘‘‘‘ffffffffai™‘fffff""faa–™™‘ffff""""aii™™ffff"""""aa–f™ffff"“˜’""aibˆ339""af‘‘‘‘‘f(ˆˆ83‚"ai€f(ƒˆƒ8’"aa˜ˆ€€†#3ˆƒ2"aif#3ˆwb&aa˜f(ƒˆ‡wvfaiˆ€†fbˆˆ‡wfaa–ˆ€fff(ˆˆw÷vaiˆfbˆˆ‡öaf‘‘˜‘‘fff""&vaffffffffffffffalincity-1.13.1/small.ico0000644000175000017500000000047607340321740012004 00000000000000(( €€€€€€€€€€€€€ÀÀÀ˙˙˙˙˙˙˙˙˙˙˙˙f"""f""!fww"i—"!fˆˆ"ssr!fˆˆ"3q2!fˆˆ"'qraffffbw&aafffaa™ff"aai™ff""!af'3’!apssr!apv3x‚aagf'xˆaafbwˆafffffffahèb"w"!ˆˆ‚"w"ahèb"wq&aˆˆ‚&wwfalincity-1.13.1/lincity.rc0000744000175000017500000001306607757310715012215 00000000000000//Microsoft Developer Studio generated resource script. // #include "resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 2 resource. // #define APSTUDIO_HIDDEN_SYMBOLS #include "windows.h" #undef APSTUDIO_HIDDEN_SYMBOLS #include "generic.h" #include "winver.h" ///////////////////////////////////////////////////////////////////////////// #undef APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // English (U.S.) resources #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) #ifdef _WIN32 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US #pragma code_page(1252) #endif //_WIN32 ///////////////////////////////////////////////////////////////////////////// // // Icon // // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. SMALL ICON DISCARDABLE "SMALL.ICO" LINCITY ICON DISCARDABLE "lincity.ico" ///////////////////////////////////////////////////////////////////////////// // // Menu // GENERIC MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "&Load", IDM_OPEN, GRAYED MENUITEM "&Save", IDM_SAVE, GRAYED MENUITEM SEPARATOR MENUITEM "E&xit", IDM_EXIT END POPUP "&Help", HELP BEGIN MENUITEM "&Contents", IDM_HELPCONTENTS , GRAYED, HELP MENUITEM SEPARATOR MENUITEM "&About LinCity...", IDM_ABOUT END END WIN95 MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "&Load", IDM_OPEN, GRAYED MENUITEM "&Save", IDM_SAVE, GRAYED MENUITEM SEPARATOR MENUITEM "E&xit", IDM_EXIT END POPUP "&Help", HELP BEGIN MENUITEM "&Help Topics...", IDM_HELPCONTENTS, GRAYED MENUITEM SEPARATOR MENUITEM "&About LinCity...", IDM_ABOUT END END ///////////////////////////////////////////////////////////////////////////// // // Accelerator // LINCITY ACCELERATORS MOVEABLE PURE BEGIN "/", IDM_ABOUT, ASCII, ALT, NOINVERT "?", IDM_ABOUT, ASCII, ALT, NOINVERT VK_F1, IDM_HELPCONTENTS, VIRTKEY, NOINVERT END ///////////////////////////////////////////////////////////////////////////// // // Dialog // ABOUTBOX DIALOG DISCARDABLE 22, 17, 212, 94 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU CAPTION "About" FONT 8, "System" BEGIN DEFPUSHBUTTON "OK",IDOK,176,2,32,14,WS_GROUP ICON "LINCITY",IDC_STATIC,3,2,18,20 LTEXT "ProductName",IDC_COMPANY,30,2,53,8 RTEXT "ProductVersion",IDC_PRODVER,89,2,80,8 LTEXT "LegalCopyright",IDC_COPYRIGHT,30,10,138,20 LTEXT "OSVERSION",IDC_OSVERSION,46,34,161,8 LTEXT "LegalTrademarks",IDC_TRADEMARK,3,49,203,39 LTEXT "Running on:",IDC_LABEL,4,34,40,8 CONTROL "",IDC_STATIC,"Static",SS_BLACKRECT,2,31,205,1 CONTROL "",IDC_STATIC,"Static",SS_BLACKRECT,2,44,205,1 END #ifndef _MAC ///////////////////////////////////////////////////////////////////////////// // // Version // 1 VERSIONINFO FILEVERSION 1,12,0,0 PRODUCTVERSION 1,12,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0xbL #else FILEFLAGS 0xaL #endif FILEOS 0x10001L FILETYPE 0x1L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904e4" BEGIN VALUE "Comments", "Distrubuted under GNU licence.\0" VALUE "CompanyName", "GNU license\0" VALUE "FileDescription", "Lincity\0" VALUE "FileVersion", "1.12\0" VALUE "InternalName", "Lincity\0" VALUE "LegalCopyright", "Copyright İ 1995-1999, I.J. Peters\nCopyright İ 1997-2003, Greg Sharp\nCopyright İ 2002-2003, Corey Keasling\0" VALUE "LegalTrademarks", "You may freely copy, distribute and modify lincity under the terms\nof the GNU GENERAL PUBLIC LICENSE\nPlease read the file COPYING for license information.\0" VALUE "OriginalFilename", "\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "Lincity Version 1.12\0" VALUE "ProductVersion", "1.12\0" VALUE "SpecialBuild", "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1252 END END #endif // !_MAC ///////////////////////////////////////////////////////////////////////////// // // Data // DLGINCLUDE RCDATA DISCARDABLE BEGIN "GENERIC.H\0" END #ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // TEXTINCLUDE // 1 TEXTINCLUDE DISCARDABLE BEGIN "resource.h\0" END 2 TEXTINCLUDE DISCARDABLE BEGIN "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" "#include ""windows.h""\r\n" "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n" "#include ""generic.h""\r\n" "#include ""winver.h""\r\n" "\0" END 3 TEXTINCLUDE DISCARDABLE BEGIN "\r\n" "\0" END #endif // APSTUDIO_INVOKED #endif // English (U.S.) resources ///////////////////////////////////////////////////////////////////////////// #ifndef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 3 resource. // ///////////////////////////////////////////////////////////////////////////// #endif // not APSTUDIO_INVOKED lincity-1.13.1/CHANGES0000644000175000017500000012764107762031343011204 00000000000000 1.12 **** Major features - Resize window (or set SVGA mode) to enlarge playing area. - Completely new power code that uses a power grid instead of individual packets of power. - New pbar design including add'l stats: total goods/ore/steel/etc. - Mouse scrolling of main window using middle mouse button (X only). - Overlay mode which displays mini-map stats in main window. - Click-drag-release to create multiple transportations. - Support for internationalization (iso8859-1 languages only). Minor enhancements - New main menu system. - GUI interface to set game preferences. - Keyboard scrolling of main window using arrow and shift+arrow (X and Win32). - Load and save game preferences to .lincityrc (lincity.ini on Win32) - You can now start a new game without exiting lincity. - New build/install procedure using autoconf/automake - SVGALIB now respects /etc/vga/libvga.config to set mouse parameters. - Partial support for iso8859-2. - Now old tips degrade into grass, and tips can be built on top of ore mines. - New statistics available in mappoint stats window. - Time/click multiplexed monthgraph/mappoint stats window. - Simplified mini-map selection using mouse. Bug fixes - Added OS/2 fixes. - Linearize tech loss to fix divide by zero bug. - Miniscreen no longer jumps to pollution screen when market burns waste. - Update opening screen to use new-style organic farm graphics. - Fix close directory problem introduced in 1.11. - Fix wrong cost being charged for residences. - Fix crashes when installed in directory with long file name. - Many, many others. Other changes - Moved save game directory from .Lin-city to .lincity - Don't ask to creating .lincity directory any more - No more diffgraph. - No longer can bulldoze the most recently built item for free. - No more Win32-style menu. 1.11 **** - Integrate X11 and Win32 code - Greyscale X11 support added - X11 performance enhancements - Fix mouse offset problem - Fix integer overflow problems at high tech levels - Fix crashes when right clicking on grass squares - The code has been "cleaned" using indent - Some reworking of the Load/Save logic 1.10 **** - Fixed buffer overflow security holes. (Thanks to all those that brought my attention to them.) - The 'creating directory' questions are now asked within the game itself, rather than via the controlling console or xterm. (Means you can start it from, say, an fvwm menu.) 1.09 (Win32) ************ - Added full screen capability for VGA resolution. - Fixed windows menus (open/save/help). - Added "fast scroll" (SHIFT+ARROW KEY). - Added help screen for Windows keys. 1.09 **** - Documentation updates only. 1.08 (Win32) ************ - Chaged font drawing routines to use windows fonts. - Fixed mouse offset problems (square cursor not centered under mouse). 1.08 **** - Ooops, another problem with loading (good-time, bad-times) fixed. - Missing tech level help page added. 1.07 **** - strcat bug in the new load code, fixed. - mkdir -p fails on sco if the dir exists, workround done. 1.06 **** - Quite a serious 'clicking in the wrong place at the wrong time' bug fixed. Thanks to Timothy C. Hagman for spotting this one. - A potential security hole closed. vga_init() is now called as close to the start of main() as possible. - SCO port added. - Gzip called with 'system' rather than through a pipe. The pipe caused some platforms to fail while saving. 1.05 (Win32) ************ - Fixed 1/2 second delay between clicking and placing item. - Fixed decreased performance when mouse is in main screen. 1.05 **** - "When you are in a scene and use for example roads and then load a less developed scene, you can still use them, until you switch to another item." - Alexander Klink Bug fixed, thanks Alex. - The X multi-transport code didn't actually produce working transport, it just 'looked right'. Thanks to Holger Dietze for the bug report and patch. 1.04 **** - Pix doubled X screen redraw bug, fixed. - remove_scene() bug fix by Chris J. Kiick. Thanks. - mini screen messy power text overwrite, fixed. - negative interest payment bug fixed. - prints money straight after a load. - Modern windmill OK box added. - Shanty placement over the edge, bug fixed. Thanks to Chris J. Kiick. - Installed dir permissions explicitly set. Not needed for most platforms, but does no harm. - Fire, cricket, health and power cover mini screens now show the areas that are _NOT_ within the their areas. A number of people wanted this change. - An attempt at getting 24bpp X visuals working. (maybe) 1.03 **** - Endian checking added. Big endian machines couldn't load good-times etc. - (Actually in 1.02) Multi-transport added. Activated by shift+leftclick. This is for X only. (SVGALib players can use the keyboard to quickly draw a long bit of transport.) 1.02 **** - Another screen scrolling bug fixed. Thanks to Erik Schoenfelder. - Man page by Erik Schoenfelder. It feels good to go 'man lincity' :) - sbut size changed to 32 (was 34). - Various small fixes to make the compile '-Wall' clean... well nearly. - Sparc (and some other CPUs perhaps) bug fixed. Misalignment of 32 bit data at 16 boundary. (Most CPUs are happy with this.) 1.01 **** - MAJOR BUG FIX. The bug that sometimes corrupted the the odd square, causing a SEG fault (among other things) has been FIXED. It's been there since the very beginning - 18 months or so. :( Thanks to Kay Hamacher for that (insignificant seeming) observation, that put me on the right track. - Pixel doubling added for X. ( xlincity -d ) Makes it 1280x960 - bigger, but slower. - Mini screen 'power cover' button added. 1.00 **** - Exporters discount more as you export more. This reduces the expected tax revenues. - THMO's (12. Dec 1996) transport patch added. - Transport 'overwrite' button added. - Mouse fixes to picedit. - Additions to mappoint stats for some areas - more info. - Small fixes to residence pollution deaths and job swing. - Sustainability detection and display added. (Experimental at this time.) - Tech load bug (universities not woking for up to a year) fixed. TWEAKS: - Power (when there is no coal) used by mills increased. - Slight change to some 'tech level loss' ratios. - Rocket pads use more goods. - Increased the number of jobs used by both types of industry. - Goods made by light industry reduced slighly. 0.99 **** Setup options for money separator, default is now a comma. Setup options for mouse sensitivity, only for SVGALib. - both at the top of lincity.h Speedups to pollution and 'get/put stuff' routines. (THMO) More to follow. Transport/water icon choosing code speedup. (THMO) Game save dir now called ~/.Lincity rather than ~/Lincity (if you have an old dir, it should ask you if you want to move it. Auto mail bot (to the HoF) message, fixed. Cost for bulldozing some things, such as power lines and solar power stations, was a 'bit buggy'. Fixed. Small bug in power lines fixed. Mouse 'droppings' when loading supplied scenes (eg 'good times'), fixed. Couldn't quit when in pause mode. Fixed. Fixed the (X) mouse sync problem when repeating builds and running out of money. Fixed keyboard entry bug when asking for the type of mouse. Fixed file and dir ownership bug for .Lin-city and .lincityrc Fixed the 'repeat load screen' bug. (I think) Small changes to mappoint stats. (Windmills) Clicking with the right button on the mini-screen displays it in the main window. Various tweaks; waste used by farms up, recycler efficiency down, goods tax goes up with tech level. Added ALPHA support for FreeBSD and IRIX. X window can no longer be resized. It wasn't very nice if you tried. X version now has a 'confine pointer' button. X mouse cursor changes to pirate flag when in bulldose mode. Server side pixmaps added for some animations etc. Speeds up play in X. Backing store enabled in X. This speeds up redraws. You can now go from one 'right button' help screen to the next, without clicking twice. Right mouse button now scrolls the 'main screen' by five squares, left button still scrolls one. Clicking on the mini_screen now places the centre of the area where you clicked. Recyclers need 'real' power to work. (Not low tech windmills.) Gamma correction for 'washed out' displays. (see README) Fixed loading non-existent game bug. Displays break down of port import/export values when you click on a port. (bug fix) light industry uses more ore when powered. Bulldoze cost displayed with right button on areas. 0.98 **** Empty residence starve bug, fixed. Transport bug when there are no markets, fixed. Transport deals not collecting tax bug, fixed. Max number of markets and windmills/substations increased to 512. sunosMakefile added. Also having to define LIBDIR twice, removed - thanks to David Finch. Full tips still showed a 'last month' value. Just cosmetic - it didn't actually take any more waste. Mail the 'hall of fame' option when you have evacuated everyone. 0.97 **** Transport bug could cause game to hang under certain conditions. Fixed. Also if waste accumulates on transport, some will be burnt, producing pollution. Various other cosmetic bug fixes and edited help pages. Slight speedup due to removal of some error checking code that's never shown an error. (0.01% if we're lucky.) 0.96 **** Areas that could only get 'stuff' from markets can now get them from connected transport. It tries markets first, so there shouldn't be a great deal of difference if you play as before. Markets now try and keep the same '% of max' as connected transport. This makes, say, moving 'stuff' from tracks to rail through a market work as expected. This shouldn't make the game 'play' much differently, but makes the numbers you see a bit different, and makes things seem a little less chaotic. The *first time* you click on a select button, it gives you a help screen for it. (Except tracks, as they are selected by default.) Monuments have 50% less people building them. This means they take 50% longer to build. Buy and sell options in market combined. It makes no sense to split them now (perhaps?). 'Out' and 'back' buttons added to help screens. These are in the code, not the help pages themselves. Roads use some goods when in use. Rail uses goods and steel when in use. They don't decay if they can't get any (yet?). Increased coal tax rate. Coal cost more to import, and you get more for exporting it. Steel works make less steel. Reduced output of solar power stations slightly. Help page cpu usage 'bug' fixed. 0.95 **** Program now untars to ./lcityxxx.tgz and default install is to /usr/local/bin/ and /usr/local/lib/lin-city/ Dropping square boxes when dialogue boxes come up fixed, thanks Jasp. HP-UX has no usleep(). For portability, lc_usleep() added, thanks John W. Active area for 'area select buttons' 2 pixels wider and higher. Some general code cleanups. 0.94 **** Some tweaks to the birthrate for the new types of residence. Monthgraph (blue line) is prop' to the sqrt() of the peoplepool value rather than the log(). Opening help screen changed, and you now get a little 'village' to start with. If you use X, you can disable the initial help screen an village with the '-n' switch. ( ie xlin-city -n ) Rockets use more goods and steel. 0.93 **** Potteries will close for a short time if they can't work for some reason. This has the effect of reducing their priority for resources when things get tight. The green/red arrow indicators (pbars) didn't all save and load (hence large green arrows when you loaded a game). Fixing this means that games saved with an earlier version won't load, sorry. Load and save didn't work when the game was paused. They work now. (FLW) You still can't quit when in pause mode, this might be a 'feature'. I could 'fix' it easily if people wanted it. Oremine1 graphic showed the wrong one, fixed. Fires were able to start before fire stations were available, this was a bug... fixed. Health centres are cheaper, but use more goods. You now choose the *type* of residence you want. Also some modifications to birth and unemployment code. Shanty towns start appearing later (at higher tech). Importing and exporting help to increase the tech level. Recycler efficientcy reduced. 0.92 **** Check for save dir at startup. If this dir doesn't exist the stat button didn't work. More work on the stat/closing information. Stat screen info added for fire stations, cricket grounds and health centres. Heavy industry - left gate onto tracks fixed. Small bug when tech level goes above 100, fixed. Recyclers use more waste and can burn some if they want. Cost of universities reduced, goods used increased and jobs used reduced. Schools use 50% more goods. Some cosmetic fixes. Tip capacity reduced by a third. Can't bulldoze tips. Steel works use a little more ore. Reduced the ore made by communes slightly. Re-ordered the select buttons. Farm size is now 4x4. This means you CANNOT load in scenes older than 0.92, also, (long standing and unknown) bug with farms and jobs, fixed. Each university needs 5 schools to supply students. Or its tech output drops. Colour map problem with 16 bbp X display, fixed. 0.91 **** Added the title screen to X. This has taken a while due to colour palette problems. It's still not quite how I'd like it. Added commune info to stat screen. Sky added to opening title screen. 0.90 **** It sometimes exited without bringing the dialogue box up. This happened most frequently after a save. It was nothing to do with the save, this just brought it to the surface more often than other things. Solaris 2.5 support - 'make solaris' added to the Makefile. This is *VERY* experimental at the moment and is really only intended for one person to try. If you run Solaris 2.5 please don't try this unless you know what you're doing AND looked at what the makefile is doing. 0.89 **** Changes to the load/save stuff. This means you can't load older saved games, sorry. 'stats' button and information on exit added. OK and yes/no dialogue boxes used to eat cpu time. Fixed. Movement of pollution speeded up slightly. Also reduced the pollution caused by shanty towns a bit. The pollution mini screen is automatically selected when a market has to burn some waste. There needs to be a way to draw your attention to the problem, before everyone moves out of the area. Mouse droppings *really* fixed this time. (Confidence level 0.07). :) Blocked load and save when in help. It could have caused some confusion. 0.88 **** Waste and waste tips added, and lots of small changes that go with this. Recycling made to work with new waste. Also it comes in a lot earlier (tech level) than it did before. You can't load scenes saved with versions less than 0.88. This is because of the addition of waste management. Even though you always load 'red' scenes at your own risk, ones less than 0.88 just won't work - and it tells you so. Pollution worked on. Lots of tweaks. Some 'mini screens' now stick. So, for example, you can monitor pollution without having to keep clicking on the button. Sticky ones are pollution, ub40 and starvation. Other slight tweaks to the mini screen, also. Yet another attempt to fix the mouse dropping a click when, for example, you click on yes in a dialogue box. Think I've done it this time... I've said this before though, it seems to keep creeping back. :( Halved the output of light industry. Ore usage bug, and stats info fixed for steel works. Steel works use less ore. Reduced the jobs used by universities. (400 to 300.) Fires don't start until you can do something about them. Also the chance of fires halved. Rockets take more goods and steel to build. Market and port control box 'not coming up' bug fixed. Tech level is not a percentage any more. It still means the same thing, but you are allowed to go over 100. (Should be interesting... who will be the first person to get to 200? - at this point I think recyclers may have to be renamed replicators) :) vga* header files were included in some files when compiling for X11. Fixed. 0.87 **** A few keyboard problems with the X port, fixed. X port clipping bug, fixed. X port market control window bug, fixed. X port rogue mouse action in load/save screens fixed. Bulldozing fires when paused now updates the screen. Combined imports and exports into one area. Also you connect to the top left corner rather than to 'gates' down the left hand side. Click on it twice for a control window (as with markets). This means that there is a blank where the import button was. It'll be filled soon. Number of shanty towns now displayed where 'peoplepool' was. 0.86 **** X support added. 0.85 **** Long standing mouse wrap off the right hand side to the left hand side, fixed. (Thanks to Laurie Harper for reminding me.) Makefile default target, fixed. (Thanks to Laurie Harper for spotting it.) Yes/no dialogue box sometimes dropping an extra mouse click, fixed?? Tweaks:- Made rockets use more steel again. It's now 75% of what it was in 0.83. Made rockets use even more goods, another 50%. 0.84 **** Major speed up after pause, slow, medium and fast buttons added. Should be good for those with slower boxes. Fast mode is FAST on fast boxes. :) Santy town don't keep catching fire, well it's put out and you're not informed. Schmitt trigger for shanty towns coming and going. Also -ve taxes caused by shanty towns, fixed. Mini-screen pollution, ub40 and starve plots, updated every second, instead of having to click on it a lot. Communes now sell a bit of ore (again). Communes now disappear when they can't sell any coal ore or steel. Bug in running costs of health centers and fire stations. Fixed. Sort of bug, windmills got power from power lines if they could, fixed. tweaks:- Rockets use half the amount of steel they used to, but 10 times the goods. Potteries use 10% more ore. Windmills produce 10% less power. Land where there has been a fire, or shanty town, takes twice as long to become useable. (10 years) Parks cost 1000 rather than 10000 to demolish. Pollution causes a few more deaths. Reduced the sensitivity of population to goods and reduce the 'badness' of no power. Light industry output halved. 0.83 **** Farms now have the same range as everything else. You don't have to put them next to markets anymore. Shanty Towns added. They are not nice. You can bulldose them if you want, for what good it'll do you. :) Pollution a bit more mobile. Desirability of residences effected by the size of the people pool again, this was taken out some time ago. Time to put it back in. Rocket crashes got the fires a bit wrong. Fixed. Bug in power line graphics, after the move to the main loop. Fixed. Also powerlines now go under rivers again. Low coalmine graphic now displayed when stock>0 rather then >10%. This is to help distinguish between a coalmine with low stocks, and one with no coal left at all. Fixed the 'flickering' communes when the tracks fill up with steel. Message when you have evacuated everyone. Also rockets shown launched before the 'launched' dialogue box comes up. Health centres come in earlier. They cost more to run as the tech level goes up. Fire stations cost more to run as the tech level goes up. 0.82 **** Bug in the cost of building things as technology increased, fixed. Hopefully this is the last of the bugs caused by reordering the select buttons. Progress bar when loading the game added. Bug in display of total money when changing from -ve 6 figures to +ve, fixed. Total money limits put in to stop wrap. -2,000,000,000 to 2,000,000,000 only. I could increase this if it's too small. I've never made, or lost, that much money. Put power line checking into the main time-step loop instead of in a loop of it's own. Should speed things up a bit. Tech level must drop 10% below the enabling value to disable a select button. EG if a select button is enabled at 20% it will become greyed out again if your tech level drops below 18%. Birth rate reduced by about a third. Also health centres halve the birthrate, rather than cut it to a 1/5th. You have to wait 5 years before you can build on land after there has been a fire on it. Also, fires have a random component to the time that they burn for. This stops the ugly 'block' changes when it goes out. Power lines no longer connect to windmills. A few other minor fixes. 0.81 **** Load and save now tells you how to cancel. You always could, you just weren't told about it. After clicking on, say the coal survey, if you then used the keyboard to say no, it threw up the dial box again. Fixed. Added a yes/no dialogue box when you load a saved game. Monthgraph box cleared on load. Progress box added, Will be calling it on more things soon. 0.80 **** Mappoint stats updated once per second, real time, instead of every 10 days, game time. Bottom right pixel of mouse pointer took the colour value of the top left pixel of what was under the mouse. (If you don't believe me - look closely) Easy fix once I spotted it :) Bug fixed in farms with between 1 and 20 jobs producing no food. Base line food production increased. Keyboard cursor control added. Space/enter is left button, backspace is right button (for help). Space or return says OK in an OK box. Space, enter or y says yes in a yes/no box - n or backspace says no. :) Load now allows you to load in games saved from an earlier version. You should treat this feature with care though. New features in picedit, ...go and play. 0.79 **** Added code to make re-ordering of select buttons easier. Re-ordered select buttons - just a first go, not right yet. Picedit now part of the Makefile script. 'make picedit' if you need to. You'll need to do this if you have an old version of picedit, that means you if you're reading this from the mailing list! Colour palette put into a human editable file 'colour.pal' (what imagination). Both picedit and lin-city use the same file to generate their colour palettes. Mouse init problem for non Microsoft mice (Found by Tristan Tarrent - Thanks). Fixed this?? by asking for the type of mouse you have the first time you play - stored in ~/.lincityrc Corruption of Finance border when -ve money less than 1M - fixed. Problems with re-ordering of select buttons, please report anything funny happening, even if you think it's nothing to do with them. 0.78 **** Blank left where mouse was when the opening help screen is closed - fixed. Makefile extended to support 'make clean' and 'make install'. ( I know I should read the make documentation again - last time I read a make doc was back in 89 :( ) Changed the name of the makefile to Makefile. Please remove the file /usr/local/games/lincity/makefile if you untar this over an earlier release. Fixed commune animation stall after a load. People less mobile - don't move in and out of residences quite as 'fast'. Birth rate reduced slightly, again. Warning box only comes up once when you want to bulldoze monuments or rivers. It is reset to warn again after you have selected a button other than bulldoze. Pbar money scaled down a bit. Real rocket icons and animation now in place, wow... Thanks Jasp. Oops, rocket used steel etc. when it was built but ready to launch - fixed. Fire *spreads* a bit more easily when you have not got fire cover. Halved the ore reserves, they weren't running out fast enough :) 0.77 **** Lots of updated graphics added including low tech windmills, thanks Jasp. 'old' windmills, rotate at half the speed. Cheat flag added, to show you when you've cheated. Well to tell other people really. The cheat keys should only be used for debugging. Fly's new commune animation added, thanks. 0.76 **** Opening help screen when the game starts. Quit during help bug fixed, by not allowing quit during help :( Cleaned up the stats window and put a border around it. Added a small cleanup script to make the distribution smaller. 0.75 **** More right button help stuff added. Box around finance window. Birth rate reduced by about 8% Parkland pollution problem with loading an old game - solved, yes! Quit button and y/n dialog box added. TYPES data removed from save/load. It caused a load bug and is not even needed. Tracks costing nothing right at the start - fixed. Max interest repayment now 1000000. The means you can, in theory, always recover when you get too far in debt. Might be quit hard though! Interest rate reduced to 1.5%, from 2.0% 0.74 **** Added money, goods, coal, ore and steel pbars. Moved select buttons and pbars. Fixed the mouse initialisation leaving a block on the select button bar. (Still a couple of mouse probs to sort out - why is this such a pain?) 0.73 **** A few minor tweaks. More help screens. Smaller, 'pbars', and jobs pbar added. 0.72 **** Added % , . - and + to save comment. 0.71 **** When you bulldoze an ore mine, the dug stuff turns to water. Ha! Right button brings up help screen coresponding to where the mouse is. This only works with the select buttons at the moment. Lin-city version number printed with the year time. (Nice to know.) Blacksmith animation fixed. 0.70 **** Export money fixed. Animation of fire stations. Going out for a fire. (False alarm, there shouldn't be a real fire.) Birth rate reduced. 1/44 to 1/48. Coalmine 100% stock overshoot fixed. Potteries, blacksmiths and mills now produce a bit of pollution. Long if, else if runs changed to switch/case statements in potteries, blacksmiths and mills. (Small speed improvement.) Cost to buy windmills doubled. 0.69 **** A few more help pages and a proper fire station icon. I'm going to make this 3x3 and animated soon. Updated the profilling README. 0.68 **** Save and load fixed. (Didn't remember to change it when things taken out of structures.) Animations times reset after load. (You had to wait until you had played as long as you had before the save to start the animations again. Light industry recoded. This will need some tweaking to get it right. 0.67 **** Taken some non used variables from struct TYPE. Struct TYPE.group and .size changed to short. Small increase in animation speed of windmills. Shuffle mappoint from 5 to 4. Shuffle markets from #/2+1 to #/4+1. Slight reorder of tests in time step loop; put transport first... 0.66 **** mappoint[][].pollution moved out of structure MAPPOINT. This is because this array is accessed linearly quite a lot and it's nicer to the cache if it's an array. The profiling went from 6.5ms to 2.5ms for do_pollution! More will be taken out of the array soon for the same reason. New mouse pointer. Some cleanups in the market code. Should execute 1 or 2 ns faster :) 0.65 **** Ports mappoint stats bug, showing no exports, fixed. Ports now show they are connected to rivers. Icon needs a bit of work though. Cut down on road and rail pollution. Added coalmine and port pollution. Unnatural deaths cost doubled to 500. Real-time, rather than game-time, animation added for potteries, blacksmiths, mills, and fire. Played with the way mills and blacksmiths work, to make them more like potteries. This is just a code cleanup and shouldn't effect the way things work. ( Ohhhh yehhhh!?!) Seconds per year info added. This is to give me some timing information to help with the optimisation. Fires won't spread for 15 seconds, after that it's random. Little bug in point bars (they sometimes showed a down one and a little up one) fixed. I hope! This is the 3rd time, the other two are not documented as they were during the development phase. No more max population at a residence! But slightly harder to fill. The graphic is updated every 30 seconds. 0.64 **** Fire burning wildly on tracks fixed. -fno-strength-reduce taken out of makefile!!! It seemed to cause an optimisation bug!?! Isn't it supposed to be the other way round? Month graphs for unemployment and starving scale increased. FSD is 32% Food point-bar added. Real-time animation for windmills added, rather than game-time. 0.63 **** Rocket launches now controllable with yes/no boxes. 0.62 **** Cleand up a few buggets in the point bars. Fires now have more or less chance of starting, depending on what sort of area it is. Fixed flag compare bug in do_residence. All the tweaking in the last few versions is meaningless, therefore more tweaking now. 0.61 **** Moved mappoint stats code to mps.cxx and mps.h. (From screen.cxx) Point bars added to show increase/decrease of population and tech. Monthgraph unemployment and starve graphs are now solid, to help them stand out. Pollution stat added to residence mps. Fire stations cost twice as much to buy and run. They're quit cheap still. 0.60 **** Tweaked the values in do_residence to change the way people move in and out, should mean they are slightly harder to fill up. They also like fire and health cover. Slightly (apx.8%) higher birth rate. People like crowds less. Dole rate up by 50% Schools use more jobs and goods and cost more, they make more tech points though. (I found I had to put lots of schools in.) Cost of running windmills slightly more than doubled. Im-ports and ex-ports now need to be connected to REAL rivers. A real river is one that is connected to another bit of real river! I like that :) They must connect along the *whole* right hand side. Im-ports and ex-ports now come in at a tech level of 3.5% Mappoint stats for markets - all values cannot go above 100% now! Debug (cheat) keys now enabled with a #define DEBUG_KEYS Money debug key added. 'm' now adds 1000000 quid. New Tech level debug key - 'T' adds 1%. 't' still adds 0.1% Fire stations have reduced range (18 now - in each direction). Cricket areas added. They make people happier and use some jobs and goods. Their range is 10 units in each direction. Animated fires. They spread if you don't put them out. Fire cover stops them spreading. 0.59 **** Oops... forgot. Just bug fixes to 0.58 I think. 0.58 **** Monuments now produce tech points again... oops. Fires tell you what has caught fire. 0.57 **** Fire stations added. The use a few jobs and goods. Cover is updated every three months. Health centres now cover an area rather than everywhere. Small changes to population stuff, to take into account new type of health centres. Monuments slowly reduce their tech production to zero at 40% tech. Mills better than blacksmiths better than potteries - More efficient use of jobs. 0.56 **** Curvy water added. Other costs button added to mini screen. Interest on budget deficit added (2% per year) Windmills cost money to run - you subsidise green power sources! (except solar power for the time being). Scrolling messages on opening screen. 0.55 **** Bug in ok button call up for mills etc fixed. School mappoint stats shows 100% Prices bug fixed (hopefully). Tech level when potteries and blacksmiths come in swapped. Greyed out buttons on reload bug fixed? You can't buy certain areas when you have a budget deficit. Budget deficit prints in red. Starving mini screen button added. A few more help pages added. 0.54 **** Communes work now, broken in last release. Save mkdir bug fixed (I think). Changes to when areas become available, again. 0.53 **** Opening screen added. Not finished. Need to add scrolling credits and that sort of thing. Schools now use goods. Communes don't produce ore any more, they convert ore they get off tracks into steel. They no longer produce goods or food. Windmills don't supply light and heavy industry any more!! People buy less goods if they have no power. The people pool has no effect on how people feel about where they live; it only had a small effect anyway. Start selected type is track. So you don't start demolishing stuff when you reload a game. Loading now remembers that you have done a coal survey or not. Tech level when buttons become active updated. 0.52 **** Cost of areas is now a function of the tech level. Universities MADE NO TECH, even though they said they did. Bug fixed. I think the bug was introduced when I made them make more tech a few versions ago. Tech level erosion doubled. Mouse auto repeat slowed down a bit. 0.51 **** New way to load and save cities. Press s to save, l to load. All button 'up' OK dialog boxes written. Bug fixed in mills, collected coal instead of food! Universities use 1/5 less jobs and produce 50% more tech points. 0.50 **** People use half as many goods. They are also slightly pissed off if they can't get power for them. The overall efect, even without power, if good though. Jobs reduced on a number of things. Jobs held by markets reduced by 1/3. 0.49 **** Text drawing changed to compressed font. This won't have much efect at this time, apart from bugs of course. 0.48 **** Massage dialog boxes added. To tell you, for example, that the tech level has reached a high enough value to build a certain type of area. Blacksmiths now use coal. Also a bug fixed where it was using jobs but not making anything. Mill mappoint stats cosmetic bug removed. Income tax rate reduced from 10 to 8 Coal tax rate increased from 6 to 8 Potteries animated. Tech level erosion reduced. Schools use less jobs, but produce less tech as well, they also cost money to run - not much though. Monuments produce a bit more tech. Universities produce more tech with less jobs and goods. Jobs used by markets reduced. Communes don't use jobs at the gates any more. They produce 20% more ore. Blacksmiths, potteries and mills use less coal. Potteries use 1/4 less ore. Output of windmills reduced by half. 0.47 **** More help screens added. Check dialog boxes for expensive things added. Not all things call this yet. The first time you call a coal survey, it will cost you 1 million. It is caught by the dialog box. Monuments make a bit more tech. Schools come in at the start. 0.46 **** More help screens added. New helpline type; tbutton. Monuments icon now changes as it is built. Working population percent reduced to 45 from 50. Flexibility (swing) increased from 10 to 15. (debugging tool) Press t to increase tech-level by 1%. Loosing tech points now starts at 1%. You loose 0.5% of your tech level every month (if you don't make any more). Help bug (try selecting help when you've got lots of windmills!) removed? Unnatural deaths in the same residence now make people more unhappy. Giving them power makes them even more happy than before, not giving them power makes them a bit more unhappy. The size of the people pool has 10 times less influence on people moving in and out of residences. Mouse bug. Hide_mouse, redraw mouse counts hides and counts back before a show. Animated blacksmith. Still needs more work on the graphics though. 0.45 **** Potteries added. They turn ore and coal into goods. In light industry, the values for different icons have changed. 'Low' is shown with much less output than before; it seemed to be closed when it was churning quite well. Monuments use some jobs to build. Help routines added. 0.44 **** Remove people bug finally (of cource) removed. Now you can evacuate everyone. Monuments added. This is mainly to help start the game off. Each monument makes 1 tech point every 10 days. The buttons only become active when you reach a certain tech level. These values are held in cim-city.h, for example 'GROUP_ROCKET_TECH 50' says you must have 50% tech level to be able to click on the button. You can remove this restriction by commenting out the line '#define SELECT_BUTTONS_NEED_TECH' near the start of cim-sity.h. Health centres reduce the birth rate a bit, as well as doing everything they did before. You no longer need power for residences to permit childbirth. Tracks now turn in to communes. Tax from coal increased by 50%. Export tax from coal halved, from steel, divided by 5, you can still make a lot of money though. Heavy industry makes less steel than before, bit of a tweak to the output values shown by the graphics, will need more later no doubt. Communes don't supply jobs any more, they use some at each connection point. They do, however, produce 4 times as much ore as they used to. Bulldozing costs money now. Where it tells you hoe much it costs, now tells you how much it costs to demolish. If you build something by mistake, you may bulldoze it and get your money back. To do this you must not have built or bulldozed anything else. I think I'll put a time limit in as well at some point - I'm sure you can see why. Farms produce 3 times less output when un-powered. Schools added. They use jobs to make tech points. Blacksmiths added. They use steel to make goods. Mills added. They use FOOD to make goods. These can be dangerous, it's your job to provide enough food for the people. 0.43 **** Windmill colour added to mini screen. Bugfix. Bulldozed markets now forget their buy/sell buttons. Bugfix. Remove_people() (with rockets) had an = rather than == in an if. Bah, caught again. First time for a while though :) Power lines turn into windmills. - if you see what I mean. Rocket stuff added to load and save. 0.42 **** Opps, lost some of the changes made, I'll see if I can remember the most important. Rockets added. You must launch 5 in a row successfully then you can start taking people away 1000 per rocket. If one crashes, you must launch another 5 with no one on board. Windmills are like substations, you can even connect power lines to them I think, but with a windmill producing power. They need jobs to work. This and that... 0.41 **** Rivers are NOT transport, for the time being anyway. It was far too slow. Check_road_graphics() sets the direction flags for the new do_road() routine. Market control window added. Click on a market twice. Deaths from pollution halved. This will have to do for now, I'll make it better soon :) New transport routines for tracks and rail, as well as roads. 0.40 **** River landscape feature added. All square though, pretty them up later. Random numbers seeded with time(). This is to test the river code really. If you want coal in the same place it's always been, comment the SEED_RAND #define in cim-sity.h, or move the srand(...) line to after coal_reserve_setup() in main.cxx ( in main() ). Rivers are transport! The carry twice as much as tracks, but half as much as roads. They, however, *only deal with markets*, trying to line up other icons doesn't really work. (Sort of bug) Mouse hidden when printing stats and drawing graphs. Speedups ^^^^^^^^ Market icon only updated every 25 days. 0.39 **** Water added. This has been added to enable games scenarios to be set up rather than to use in play, but you can divert a river at a cost. Load and save working again. (Well I hope so.) Universities hold a bigger store of goods and jobs. It makes it easier to see which of them is in short supply. Universities int_3 variable holds the total number of tech points this uni has made. Starving and unemployed percentage stats now show 10ths. ie xx.x Power diff graph amplitude doubled. Goods diff graph *not* divided by two anymore, still log though. Organic farms increase output linearly to double with max tech level. (Bug fix) Recycle centres connect to roads and rail now. Tracks always did! Pollution kills people. Will need some tweaking probably. It also makes people move into the people_pool more. Pollution mobility reduced by about 1/3. (A speedup as well.) Farm range increased from 4 units to 6. Should it be even more? Solar power station output with no tech level increased to what it was before 0.33 and now increases to 3 times output with max tech level. (Very small speedup as well.) Jobs used to haul stuff on and off transport reduced by half. Capital costs in yearly stats replaced by other costs, universities 50 per 'day', recycle centres also 50 per 'day' (50 per 'day' == 5000 per 'month') All deaths, other than from old age, are counted as unnatural and cost you 250 quid. These can be from pollution or by starving for now. Figure added to stats at bottom, under tech level, shows the unnatural deaths for the last 'month'. Jobs used to dig coal reduced from 1000 to 900, and jobs used to load coal and ore into power stations and industry respectively, reduced by 10%. Speedups. ^^^^^^^^^ Get_jobs function split into get_jobs and put_jobs. Get_food function split into get_food and put_food. Some ifs that weren't needed taken out of check_road|rail_graphics(), very small speedup 'cos they're not called very often. 0.38 **** Profiling support added. Light industry uses less steel, goods made per ore doubled. Recycle goods increased five times and jobs used reduced. Coal calorific value increased by 20%. Electricity production increased by 10%. Background colour of graphs darkened. Speedups: ^^^^^^^^ 'Do time step' loop continues if mappoint == CST_USED. In do_residence all those mappoint[x][y].population refs changed to (register) p. ( Later... Bahh... -O2 does this anyway!) In do_residence no more min population, <0 still caught earlier so OK to take out, also people pool respects the old min pop. In do_residence 3 birth ifs made into 1 and rand() put after flagcheck. In coal power station some transport ifs combined with use of new FLAG_IS_TRANSPORT flag. In do_market, transport ifs combined. In shuffle markets number of loops cut and register int added. In do_power_line, use FLAG_IS_TRANSPORT flag. 12 ifs now 4. In light and heavy industry, use FLAG_IS_TRANSPORT flag. Make file changed. 0.37 **** Diff graph put in mappoint stat window when not showing stats. Graph windows are drawn at startup. Max tech level doubles the output of coal power stations (linear). P key - increases people pool by 100 D key - does a screen dump in raw rgb format (colours seem wrong though) Unemployed and starving graph scale multiplied by two. A speedup, perhaps. Check transport moved to 'refresh screen' rather than 'update main screen'. Probably breaks things. 0.36 **** No jobs needed for sub-stations to operate. cim-sity.man started. 0.35 **** Mini screen coal reserve button and graphics added. Jobs used to load coal, steel and ore onto transport reduced slightly. Recycle centres added. They recycle used goods into ore. 10% with zero tech level, 100% with max tech level (currently 1,000,000). Universities have to get bigger 'clumps' of jobs. This reduces the competition with pits and power stations. Range of coal-mines increased from 5 to 8 units from top left corner. Coal reserves more clumpy, it was a bit too spread out. People less happy with pollution. Pollution less mobile. Mouse repeat when held down 'fixed', probably have to 'fix' it again to make it dependent on the speed of the computer. 0.34 **** Bug fixed to make solar power stations work again, they worked *too* well in 0.33. They had more or less infinite output (mike@emgee would have liked that). Mouse button auto repeat. Mini screen unemployment button and graphics added. 0.33 **** Universities use jobs and goods to do research, this adds to the tech level. Solar power station output depends on the tech level *when built*. Tech level 'stat' added. More goods travel by transport. Import costs reduced by half. Wind blows pollution up-right (NE). A little less pollution destroyed by normal means and a little more destroyed by parkland. 0.32 **** Mappoint flags (powered, fed, employed) changed to bits rather than ints. A saving of 80K (adding more flags later) in the mappoint structure array. Shuffle sub-stations added. Stops hammering the 'first' sub-station put in near things. Parks installed. These help to get rid of pollution. Use these to block your residences from (wind born?) pollution. Mini screen 'normal' and 'pollution' buttons and code added to show pollution levels. 'Normal' button returns mini screen back to normal to help flipping between the two to see where the pollution is coming from and where it's going. Pollution tends to move down and right (SE) Roads, rail, light industry, heavy industry, coal mines and coal power stations produce pollution. 0.31 **** Markets connect to roads all the way round, even though it might not look like it yet. *Major* change in progress on the way things connect to transport. Coal-mines grab some jobs for next go when there is a shortage. This only applies to *digging* the coal for now. Let's see how that goes. Coal power stations grab some jobs for next go when there is a shortage. This only applies to *generating* the electricity for now. Let's see how that goes. People pool goes down by 1% per month (rather than 1%+1). People pool starts off with 100 people. lincity-1.13.1/COPYRIGHT0000644000175000017500000000047207757042065011503 00000000000000Lincity is copyrighted software. Copyright (c) I J Peters 1995-1997. Copyright (c) Greg Sharp 1997-2003. Copyright (c) Corey Keasling 2000-2003. You may freely copy, distribute and modify lincity under the terms of the GNU GENERAL PUBLIC LICENSE Please read the file COPYING for the GPL. lincity-1.13.1/Acknowledgements0000644000175000017500000000571110071452220013403 00000000000000This file lists those people that have contributed to lincity. If you think you should be here please contact me - my apologies to you, I sometimes forget. Mike - mike@emgee.demon.co.uk For testing, icons and ideas. Fly For testing, icons and ideas. Jasper - jasper@js-thorn.demon.co.uk For testing, icons and ideas. Rab - rab@wulfrun.demon.co.uk For testing and breaking. David Allan Finch - sarum@darling.monosys.com For the Solaris 2.5 port John Woodgate - john@meertech.demon.co.uk For the HP-UX port. Thomas M.Ott - Labalutsch@aol.com Many optimization ideas and discoveries of obscure bugs. Recoding of some functions. Victor Langeveld - Victor.Langeveld@mbfys.kun.nl For the FreeBSD port. Frederic Roussel - Frederic.Roussel@eng.efi.com For the IRIX port. Warwick Allison - warwick@cs.uq.edu.au For the solar power station icon and bug report. Brian Grossman - brian@lindy.SoftHome.Net For the X confine mouse pointer idea and patch. Ronald Van Iwaarden - rvaniwaa@cs.hope.edu For the OS/2 port and OS/2 support. Kay Hamacher - kay@lucie.wupper.de For the (insignificant seeming) observation, that put me on the right track to find the long standing 'square' corrupton bug.MANY THANKS ! Erik Schoenfelder - schoenfr@gaertner.de For the man page and a bug fix. Chris J.Kiick - chris_kiick@stercomm.com For bug fixes and ideas. Alexander Klink - klink@icicle.swb.de For a load bug report. Holger Dietze - dietze@aix520.informatik.uni-leipzig.de For a multi - transport bug report and patch. Timothy C.Hagman - hagmanti@fcs.chm.msu.edu For spotting quite a serious 'clicking in the wrong place at the wrong time' bug. Simon Baldwin - simonb@sco.com For the SCO port. Papadimitriou Spiros - spapadim@csd.uch.gr For load bug report and fix. Kamal Hathi Typecasts for MSVC 6 compiler. Gilbert Baumann X11 gray - scale support and a graphics performance fix. Joern Rennecke Fixed integer overflow problems with tech level, and also fixed the divide by zero error. Alexander Mai OS/2 fixes and makefile. Scot Wilcoxon A major overhaul to the TYPE data structure and associated support code. Jeffrey Drake Support for Borland c++builder compiler. Corey Keasling Add support for moving main window using middle mouse button under X11. Add support for moving click-drag-release multi-transport. Corey has done other nifty stuff too, but he no longer gets a special mention for it since he joined as maintainer. Dàvik Add gettext support, and marked up all the embedded strings. Contributed the translation into Catalan. Andreas Eibach Troubleshooting and testing Cygwin problems. Jason Short Several important bug reports and patches. Kevin Routley MSVC 6.0 build fixes Gerben V xpicedit true color support.lincity-1.13.1/config.sh0000744000175000017500000000076107345520602012002 00000000000000aclocal automake --add-missing --foreign Makefile autoconf autoheader rm -f config.cache ./configure --prefix=$HOME/lincity ## My solaris box gets messed up dependencies for config.h because of some ## goofy nfs incompatibility. So I have to do this after doing a make. ## (unfortunately this remakes everything!) # make # rm -f stamp-h config.h # make config.h # ls -l config.h* stamp-h* # touch stamp-h.in # touch config.h.in # touch stamp-h # touch config.h # ls -l config.h* stamp-h* # make lincity-1.13.1/README.profiling0000644000175000017500000000360407340321744013050 00000000000000 ================ ================= README.profiling part of Lin-city. ================ ================= I have only profiled this program when running with SVGALib. (If you what to profile under X, you're on your own.) If you are using svgalib 1.2.9 or greater (as you should), then you will need to edit .../svgalibxxx/src/vga.c and stop svgalib catching the profile signal. The code should now look like this:- /* We invoke the old interrupt handler after setting text mode */ /* We catch all signals that cause an exit by default (aka almost all) */ static char sig2catch[] = {SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGTRAP, SIGIOT, SIGBUS, SIGFPE, SIGSEGV, SIGPIPE, SIGALRM, SIGTERM, SIGXCPU, SIGXFSZ, SIGVTALRM, /* SIGPROF, */ SIGPWR}; static struct sigaction old_signal_handler[sizeof(sig2catch)]; NOTE the comments around SIGPROF. Now recompile svgalib with make install but READ THE SVGALIB DOCS YOURSELF just in case. To enable profiling, uncomment the PROFx vars in the makefile. To disable profiling, comment the PROFx vars in the makefile. Then just run the program as usual. When you exit, put the profiling info in a file: gprof /usr/local/bin/lincity > proffile.txt (The raw profiling info is stored in gmon.out, a binary.) Note: I have pushed the gl_setpixel() etc. routines through another function when profiling is enabled. It will slow things down a bit (<1%), but if you want to see how many times these routines are called, you'll have to put up with it. Not all the gl_routines are redirected in this way, only the ones called during the main body of the code. These routines are identified by the FP in front of the 'old' function name, ie the above becomes FPgl_setpixel(). (Perhaps not the best choice of prefix for obvious reasons, but it stands for Floyd's Profiling.) You can disable this part alone by commenting out the 'PROFD = -DCS_PROFILE' line. lincity-1.13.1/lincity.60000644000175000017500000000566207757056273011766 00000000000000.TH LINCITY 6 "Nov 19, 2003" .SH NAME lincity, xlincity \- a city/country simulation game. .SH SYNOPSIS .B lincity [\fB-w\fR] [\fB-R\fR \fIred-gamma\fR] [\fB-G\fR \fIgreen-gamma\fR] [\fB-B\fR \fIblue-gamma\fR] [\fB-m\fR \fImode\fR] .br .B xlincity [\fB-v\fR] [\fB-g\fR \fIgeometry\fR] [\fB-d\fR] [\fB-r\fR] [\fB-w\fR] [\fB-R\fR \fIred-gamma\fR] [\fB-G\fR \fIgreen-gamma\fR] [\fB-B\fR \fIblue-gamma\fR] .SH OPTIONS .TP .B -w Use a gamma correction for the graphic with the values 1.0 for red, 0.0 for green and 0.4 for blue. .br Please note: The gamma values used are not a gamma correction in the traditional way. Just check it out. .TP .B -R \fIred\fR The value for the gamma correction for red color-part. This option takes a floating point argument. .TP .B -G \fIgreen\fR The value for the gamma correction for green color-part. This option takes a floating point argument. .TP .B -B \fIblue\fR The value for the gamma correction for blue color-part. This option takes a floating point argument. .TP .B -m \fImode\fR Set the VGA mode. This option is ignored on X Windows. The choices for modes are: .br lincity -m 10 ## mode 10, 640x480 .br lincity -m 11 ## mode 11, 800x600 .br lincity -m 12 ## mode 12, 1024x768 .br lincity -m 13 ## mode 13, 1280x1024 .br .TP .B -v Be verbose on startup (this tells the lincity version). .TP .B -g \fIgeom\fR Specify the X11 geometry argument. E.g. use .B -g \fI+0+0\fR to put the window to the upper left corner on startup. .TP .B -d Perform pix doubling. Pix doubling renders each pixel as a 2 x 2 square, which has the effect of making the game appear twice as large on the screen. This option only applies to the X Windows version. .TP .B -r Add an extra border around the game. This option only applies to the X Windows version. .SH DESCRIPTION .B Lincity is a city/country simulation game running with SVGA graphics on a Linux console or in an X11 window under Linux and other platforms. .PP You are required to build and maintain a city. You must feed, house, provide jobs and goods for your residents. You can build a sustainable economy with the help of renewable energy and recycling, or you can go for broke and build rockets to escape from a pollution ridden and resource starved planet, it's up to you. Due to the finite resources available in any one place, this is not a game that you can leave for long periods of time. .PP For more about how to play, please read the excellent online help provided with the game. Right click almost anywhere to get help. .PP To subscribe to the Lincity mailing list, see the web site at sourceforge: .I http://sf.net/projects/lincity .br .SH AUTHOR Lincity is copyrighted software. Copyright (c) I J Peters 1995-1997. Copyright (c) Greg Sharp 1997-2003. Copyright (c) Corey Keasling 2000-2003. You may freely copy, distribute and modify lincity under the terms of the GNU GENERAL PUBLIC LICENSE Please read the file COPYING for the GPL. lincity-1.13.1/m4/0000777000175000017500000000000010073426327010601 500000000000000lincity-1.13.1/m4/Makefile.in0000644000175000017500000002007310067655725012575 00000000000000# Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # 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. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : host_triplet = @host@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LCLIBS = @LCLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ PROGS = @PROGS@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ with_gzip = @with_gzip@ EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 subdir = m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = DIST_SOURCES = DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --gnu m4/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: tags: TAGS TAGS: ctags: CTAGS CTAGS: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) top_distdir = .. distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkinstalldirs) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am dvi-am: info: info-am info-am: install-data-am: install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am info info-am install install-am install-data \ install-data-am install-exec install-exec-am install-info \ install-info-am install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am # 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: lincity-1.13.1/m4/Makefile.am0000644000175000017500000000033407627052671012561 00000000000000EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 lincity-1.13.1/m4/codeset.m40000644000175000017500000000157607627052671012426 00000000000000# codeset.m4 serial AM1 (gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], [ AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, [AC_TRY_LINK([#include ], [char* cs = nl_langinfo(CODESET);], am_cv_langinfo_codeset=yes, am_cv_langinfo_codeset=no) ]) if test $am_cv_langinfo_codeset = yes; then AC_DEFINE(HAVE_LANGINFO_CODESET, 1, [Define if you have and nl_langinfo(CODESET).]) fi ]) lincity-1.13.1/m4/gettext.m40000644000175000017500000005730107627052671012461 00000000000000# gettext.m4 serial 17 (gettext-0.11.5) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2002. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define(gt_included_intl, ifelse([$1], [external], [no], [yes])) define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. dnl Add a version number to the cache macros. define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, [AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no)]) if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], gt_cv_func_gnugettext_libintl, [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], gt_cv_func_gnugettext_libintl=yes, gt_cv_func_gnugettext_libintl=no) dnl Now see whether libintl exists and depends on libiconv. if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext_libintl=yes ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if test "$gt_cv_func_gnugettext_libc" = "yes" \ || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ && test "$PACKAGE" != gettext; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. INTLOBJS="\$(GETTOBJS)" BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE(HAVE_GETTEXT, 1, [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATOBJEXT) AC_SUBST(INTLOBJS) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST(DATADIRNAME) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST(INSTOBJEXT) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST(GENCAT) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST(INTLLIBS) dnl Make all documented variables known to autoconf. AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) AC_SUBST(POSUB) ]) dnl Checks for all prerequisites of the po subdirectory, dnl except for USE_NLS. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) dnl Search for GNU xgettext 0.11 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU msgfmt. if test "$GMSGFMT" != ":"; then dnl If it is no GNU msgfmt we define it as : so that the dnl Makefiles still can work. if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` AC_MSG_RESULT( [found $GMSGFMT program is not GNU msgfmt; ignore it]) GMSGFMT=":" fi fi dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is no GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po fi AC_OUTPUT_COMMANDS([ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' fi case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= GMOFILES= UPDATEPOFILES= DUMMYPOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it # from automake. eval 'ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. AC_DEFUN([AM_INTL_SUBDIR], [ AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([AC_ISC_POSIX])dnl AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_C_CONST])dnl AC_REQUIRE([AC_C_INLINE])dnl AC_REQUIRE([AC_TYPE_OFF_T])dnl AC_REQUIRE([AC_TYPE_SIZE_T])dnl AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl AC_REQUIRE([jm_GLIBC21])dnl AC_REQUIRE([gt_INTDIV0])dnl AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl AC_REQUIRE([gt_INTTYPES_PRI])dnl AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h]) AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next]) AM_ICONV AM_LANGINFO_CODESET if test $ac_cv_header_locale_h = yes; then AM_LC_MESSAGES fi dnl intl/plural.c is generated from intl/plural.y. It requires bison, dnl because plural.y uses bison specific features. It requires at least dnl bison-1.26 because earlier versions generate a plural.c that doesn't dnl compile. dnl bison is only needed for the maintainer (who touches plural.y). But in dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put dnl the rule in general Makefile. Now, some people carelessly touch the dnl files or have a broken "make" program, hence the plural.c rule will dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not dnl present or too old. AC_CHECK_PROGS([INTLBISON], [bison]) if test -z "$INTLBISON"; then ac_verc_fail=yes else dnl Found it, now check the version. AC_MSG_CHECKING([version of bison]) changequote(<<,>>)dnl ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) changequote([,])dnl ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac AC_MSG_RESULT([$ac_prog_version]) fi if test $ac_verc_fail = yes; then INTLBISON=: fi ]) AC_DEFUN([AM_MKINSTALLDIRS], [ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but $(top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) lincity-1.13.1/m4/glibc21.m40000644000175000017500000000172707627052671012221 00000000000000# glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # Test for the GNU C Library, version 2.1 or newer. # From Bruno Haible. AC_DEFUN([jm_GLIBC21], [ AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, ac_cv_gnu_library_2_1, [AC_EGREP_CPP([Lucky GNU user], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif ], ac_cv_gnu_library_2_1=yes, ac_cv_gnu_library_2_1=no) ] ) AC_SUBST(GLIBC21) GLIBC21="$ac_cv_gnu_library_2_1" ] ) lincity-1.13.1/m4/iconv.m40000644000175000017500000000665307627052671012117 00000000000000# iconv.m4 serial AM4 (gettext-0.11.3) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_func_iconv=yes) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_lib_iconv=yes am_cv_func_iconv=yes) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST(LIBICONV) AC_SUBST(LTLIBICONV) ]) AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL(am_cv_proto_iconv, [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([$]{ac_t:- }[$]am_cv_proto_iconv) AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, [Define as const if the declaration of iconv() needs const.]) fi ]) lincity-1.13.1/m4/intdiv0.m40000644000175000017500000000356507627052671012355 00000000000000# intdiv0.m4 serial 1 (gettext-0.11.3) dnl Copyright (C) 2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gt_INTDIV0], [ AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], gt_cv_int_divbyzero_sigfpe, [ AC_TRY_RUN([ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } ], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, [ # Guess based on the CPU. case "$host_cpu" in alpha* | i[34567]86 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac ]) ]) case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, [Define if integer division by zero raises signal SIGFPE.]) ]) lincity-1.13.1/m4/inttypes.m40000644000175000017500000000171707627052671012654 00000000000000# inttypes.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H if exists and doesn't clash with # . AC_DEFUN([gt_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h, [ AC_TRY_COMPILE( [#include #include ], [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no) ]) if test $gt_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1, [Define if exists and doesn't clash with .]) fi ]) lincity-1.13.1/m4/inttypes_h.m40000644000175000017500000000207307627052671013157 00000000000000# inttypes_h.m4 serial 4 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_inttypes_h=yes, jm_ac_cv_header_inttypes_h=no)]) if test $jm_ac_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) lincity-1.13.1/m4/inttypes-pri.m40000644000175000017500000000222707627052671013441 00000000000000# inttypes-pri.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. # Define PRI_MACROS_BROKEN if exists and defines the PRI* # macros to non-string values. This is the case on AIX 4.3.3. AC_DEFUN([gt_INTTYPES_PRI], [ AC_REQUIRE([gt_HEADER_INTTYPES_H]) if test $gt_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], gt_cv_inttypes_pri_broken, [ AC_TRY_COMPILE([#include #ifdef PRId32 char *p = PRId32; #endif ], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) ]) fi if test "$gt_cv_inttypes_pri_broken" = yes; then AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, [Define if exists and defines unusable PRI* macros.]) fi ]) lincity-1.13.1/m4/isc-posix.m40000644000175000017500000000213307627052671012704 00000000000000# isc-posix.m4 serial 2 (gettext-0.11.2) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # This file is not needed with autoconf-2.53 and newer. Remove it in 2005. # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro # because gettext's gettext.m4 (distributed in the automake package) # still uses it. Otherwise, the use in gettext.m4 makes autoheader # give these diagnostics: # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX undefine([AC_ISC_POSIX]) AC_DEFUN([AC_ISC_POSIX], [ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) ] ) lincity-1.13.1/m4/lcmessage.m40000644000175000017500000000261607627052671012737 00000000000000# lcmessage.m4 serial 3 (gettext-0.11.3) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([AM_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi ]) lincity-1.13.1/m4/lib-ld.m40000644000175000017500000000626007627052671012136 00000000000000# lib-ld.m4 serial 1 (gettext-0.11) dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. 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. if $LD -v 2>&1 &5; then acl_cv_prog_gnu_ld=yes else acl_cv_prog_gnu_ld=no fi]) 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 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. if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then test "$with_gnu_ld" != no && break else test "$with_gnu_ld" != yes && break fi 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 ]) lincity-1.13.1/m4/lib-link.m40000644000175000017500000005563307627052671012504 00000000000000# lib-link.m4 serial 3 (gettext-0.11.3) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. 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, dnl sys_lib_search_path_spec, sys_lib_dlsearch_path_spec. AC_DEFUN([AC_LIB_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" sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec" sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec" 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_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*) 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*) 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 ]) lincity-1.13.1/m4/lib-prefix.m40000644000175000017500000001175507627052671013041 00000000000000# lib-prefix.m4 serial 1 (gettext-0.11) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. 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_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*) 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" ]) lincity-1.13.1/m4/progtest.m40000644000175000017500000000407407627052671012643 00000000000000# progtest.m4 serial 2 (gettext-0.10.40) dnl Copyright (C) 1996-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) lincity-1.13.1/m4/stdint_h.m40000644000175000017500000000204307627052671012602 00000000000000# stdint_h.m4 serial 2 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_STDINT_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_STDINT_H], [ AC_CACHE_CHECK([for stdint.h], jm_ac_cv_header_stdint_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_stdint_h=yes, jm_ac_cv_header_stdint_h=no)]) if test $jm_ac_cv_header_stdint_h = yes; then AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) lincity-1.13.1/m4/uintmax_t.m40000644000175000017500000000211407627052671012775 00000000000000# uintmax_t.m4 serial 6 (gettext-0.11) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_PREREQ(2.13) # Define uintmax_t to `unsigned long' or `unsigned long long' # if does not exist. AC_DEFUN([jm_AC_TYPE_UINTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, [Define to unsigned long or unsigned long long if and don't define.]) fi ]) lincity-1.13.1/m4/ulonglong.m40000644000175000017500000000200007627052671012763 00000000000000# ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40) dnl Copyright (C) 1999-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], [ AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;], [unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull;], ac_cv_type_unsigned_long_long=yes, ac_cv_type_unsigned_long_long=no)]) if test $ac_cv_type_unsigned_long_long = yes; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, [Define if you have the unsigned long long type.]) fi ]) lincity-1.13.1/modules/0000777000175000017500000000000010073426331011724 500000000000000lincity-1.13.1/modules/Makefile.in0000644000175000017500000004274010067655730013726 00000000000000# Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # 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. @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : host_triplet = @host@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMDEP_FALSE = @AMDEP_FALSE@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LCLIBS = @LCLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ PROGS = @PROGS@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ with_gzip = @with_gzip@ noinst_LTLIBRARIES = libmodules.la libmodules_la_SOURCES = organic_farm.c organic_farm.h \ residence.c residence.h \ light_industry.c light_industry.h \ heavy_industry.c heavy_industry.h \ coalmine.c coalmine.h \ oremine.c oremine.h \ commune.c commune.h \ port.c port.h \ parkland.c parkland.h \ university.c university.h \ recycle.c recycle.h \ health_centre.c health_centre.h \ rocket_pad.c rocket_pad.h \ monument.c monument.h \ school.c school.h \ blacksmith.c blacksmith.h \ mill.c mill.h \ pottery.c pottery.h \ firestation.c firestation.h \ cricket.c cricket.h \ fire.c fire.h \ shanty.c shanty.h \ tip.c tip.h \ substation.c substation.h \ windmill.c windmill.h \ solar_power.c solar_power.h \ coal_power.c coal_power.h \ power_line.c power_line.h \ track.c track.h \ rail.c rail.h \ road.c road.h \ water.c water.h subdir = modules ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmodules_la_LDFLAGS = libmodules_la_LIBADD = am_libmodules_la_OBJECTS = organic_farm.lo residence.lo \ light_industry.lo heavy_industry.lo coalmine.lo oremine.lo \ commune.lo port.lo parkland.lo university.lo recycle.lo \ health_centre.lo rocket_pad.lo monument.lo school.lo \ blacksmith.lo mill.lo pottery.lo firestation.lo cricket.lo \ fire.lo shanty.lo tip.lo substation.lo windmill.lo \ solar_power.lo coal_power.lo power_line.lo track.lo rail.lo \ road.lo water.lo libmodules_la_OBJECTS = $(am_libmodules_la_OBJECTS) DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/blacksmith.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/coal_power.Plo ./$(DEPDIR)/coalmine.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/commune.Plo ./$(DEPDIR)/cricket.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/fire.Plo ./$(DEPDIR)/firestation.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/health_centre.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/heavy_industry.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/light_industry.Plo ./$(DEPDIR)/mill.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/monument.Plo ./$(DEPDIR)/oremine.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/organic_farm.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/parkland.Plo ./$(DEPDIR)/port.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/pottery.Plo ./$(DEPDIR)/power_line.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/rail.Plo ./$(DEPDIR)/recycle.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/residence.Plo ./$(DEPDIR)/road.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/rocket_pad.Plo ./$(DEPDIR)/school.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/shanty.Plo ./$(DEPDIR)/solar_power.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/substation.Plo ./$(DEPDIR)/tip.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/track.Plo ./$(DEPDIR)/university.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/water.Plo ./$(DEPDIR)/windmill.Plo COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ DIST_SOURCES = $(libmodules_la_SOURCES) DIST_COMMON = $(srcdir)/Makefile.in Makefile.am SOURCES = $(libmodules_la_SOURCES) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --gnu modules/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" = "$$p" && dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libmodules.la: $(libmodules_la_OBJECTS) $(libmodules_la_DEPENDENCIES) $(LINK) $(libmodules_la_LDFLAGS) $(libmodules_la_OBJECTS) $(libmodules_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) core *.core distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blacksmith.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coal_power.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coalmine.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commune.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cricket.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fire.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/firestation.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/health_centre.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/heavy_industry.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/light_industry.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mill.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/monument.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/oremine.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/organic_farm.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parkland.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/port.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pottery.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/power_line.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rail.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/recycle.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/residence.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/road.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rocket_pad.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/school.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shanty.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/solar_power.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/substation.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tip.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/track.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/university.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/water.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windmill.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< .c.obj: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` .c.lo: @am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool uninstall-info-am: ETAGS = etags ETAGSFLAGS = CTAGS = ctags CTAGSFLAGS = tags: TAGS ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(ETAGS_ARGS)$$tags$$unique" \ || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) top_distdir = .. distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ case $$file in \ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ $(mkinstalldirs) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-libtool distclean-tags dvi: dvi-am dvi-am: info: info-am info-am: install-data-am: install-exec-am: install-info: install-info-am install-man: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am info info-am install \ install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am # 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: lincity-1.13.1/modules/Makefile.am0000644000175000017500000000162710067440561013706 00000000000000noinst_LTLIBRARIES = libmodules.la libmodules_la_SOURCES = organic_farm.c organic_farm.h \ residence.c residence.h \ light_industry.c light_industry.h \ heavy_industry.c heavy_industry.h \ coalmine.c coalmine.h \ oremine.c oremine.h \ commune.c commune.h \ port.c port.h \ parkland.c parkland.h \ university.c university.h \ recycle.c recycle.h \ health_centre.c health_centre.h \ rocket_pad.c rocket_pad.h \ monument.c monument.h \ school.c school.h \ blacksmith.c blacksmith.h \ mill.c mill.h \ pottery.c pottery.h \ firestation.c firestation.h \ cricket.c cricket.h \ fire.c fire.h \ shanty.c shanty.h \ tip.c tip.h \ substation.c substation.h \ windmill.c windmill.h \ solar_power.c solar_power.h \ coal_power.c coal_power.h \ power_line.c power_line.h \ track.c track.h \ rail.c rail.h \ road.c road.h \ water.c water.h lincity-1.13.1/modules/organic_farm.c0000644000175000017500000001126410071461212014432 00000000000000/* ---------------------------------------------------------------------- * * organic_farm.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include void do_organic_farm (int x, int y) { /* // int_1 is the tech level of the farm when built // int_2 is a flag so we don't create a farm with nearly ripe crops. // int_3 is the food sold count so far this year. // int_4 is the food made last year. // int_5 is the random crop rotation key. // int_6 is the random month stagger, so they don't all flash at once // int_7 is the tech-level dependent output of a powered farm with a full // workforce. */ int i; if (MP_INFO(x,y).int_5 == 0) /* this should be done when we create */ { /* the area! */ MP_INFO(x,y).int_5 = (rand () % 4) + 1; MP_INFO(x,y).int_6 = rand () % 300; } MP_INFO(x,y).flags &= (0xffffffff - FLAG_POWERED); if (get_jobs (x, y, 1) == 0) put_food (x, y, 30); else if (get_jobs (x, y, FARM_JOBS_USED) != 0) { if (get_power (x, y, ORG_FARM_POWER_REC, 0) != 0) { if (put_food (x, y, (ORGANIC_FARM_FOOD_OUTPUT + MP_INFO(x,y).int_7)) == 0) put_jobs (x, y, FARM_JOBS_USED); else MP_INFO(x,y).int_3++; MP_INFO(x,y).flags |= FLAG_POWERED; } else { if (put_food (x, y, (ORGANIC_FARM_FOOD_OUTPUT / 4)) == 0) put_jobs (x, y, FARM_JOBS_USED); else MP_INFO(x,y).int_3++; } } else if (get_jobs (x, y, FARM_JOBS_USED / 4) != 0) { if (get_power (x, y, ORG_FARM_POWER_REC, 0) != 0) { if (put_food (x, y, (ORGANIC_FARM_FOOD_OUTPUT + (MP_INFO(x,y).int_7 / 4))) == 0) put_jobs (x, y, FARM_JOBS_USED / 4); else MP_INFO(x,y).int_3++; MP_INFO(x,y).flags |= FLAG_POWERED; } else { if (put_food (x, y, (ORGANIC_FARM_FOOD_OUTPUT / (4 * 4))) == 0) put_jobs (x, y, FARM_JOBS_USED / 4); else MP_INFO(x,y).int_3++; } } else { if (get_power (x, y, ORG_FARM_POWER_REC, 0) != 0) { if (put_food (x, y, (ORGANIC_FARM_FOOD_OUTPUT + (MP_INFO(x,y).int_7 / 8))) != 0) MP_INFO(x,y).int_3++; MP_INFO(x,y).flags |= FLAG_POWERED; } else if (put_food (x, y, 30 + (ORGANIC_FARM_FOOD_OUTPUT / (4 * 8))) != 0) MP_INFO(x,y).int_3++; } if ((total_time & 0x7f) == 0) if ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) get_waste (x, y, 0x80 * ORG_FARM_WASTE_GET); if ((total_time % 1200) == 0) { MP_INFO(x,y).int_4 = MP_INFO(x,y).int_3; MP_INFO(x,y).int_3 = 0; } i = ((total_time + (MP_INFO(x,y).int_5 * 1200) + MP_INFO(x,y).int_6) % 4800); if (i % 300 == 0) { i /= 300; if ( /* MP_INFO(x,y).int_2!=0 && */ MP_INFO(x,y).int_4 > MIN_FOOD_SOLD_FOR_ANIM) { if (i % 4 == 0) { MP_INFO(x,y).int_6 = rand () % 100; } switch (i) { case (0): MP_TYPE(x,y) = CST_FARM_O3; break; case (1): MP_TYPE(x,y) = CST_FARM_O3; break; case (2): MP_TYPE(x,y) = CST_FARM_O3; break; case (3): MP_TYPE(x,y) = CST_FARM_O3; break; case (4): MP_TYPE(x,y) = CST_FARM_O7; break; case (5): MP_TYPE(x,y) = CST_FARM_O7; break; case (6): MP_TYPE(x,y) = CST_FARM_O7; break; case (7): MP_TYPE(x,y) = CST_FARM_O7; break; case (8): MP_TYPE(x,y) = CST_FARM_O11; break; case (9): MP_TYPE(x,y) = CST_FARM_O11; break; case (10): MP_TYPE(x,y) = CST_FARM_O11; break; case (11): MP_TYPE(x,y) = CST_FARM_O11; break; case (12): MP_TYPE(x,y) = CST_FARM_O15; break; case (13): MP_TYPE(x,y) = CST_FARM_O15; break; case (14): MP_TYPE(x,y) = CST_FARM_O15; break; case (15): MP_TYPE(x,y) = CST_FARM_O15; break; } } else { MP_TYPE(x,y) = CST_FARM_O0; } } } void mps_organic_farm (int x, int y) { int i = 0; char * p; snprintf(mps_info[i++], MPS_INFO_CHARS, _("Organic Farm")); i++; if ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) p = _("YES"); else p = _("NO "); snprintf(mps_info[i++], MPS_INFO_CHARS, "%s %s", _("Power"), p); snprintf(mps_info[i++], MPS_INFO_CHARS, "%s %5.1f%%", _("Tech"), MP_INFO(x,y).int_1 * 100.0 / MAX_TECH_LEVEL); snprintf(mps_info[i++], MPS_INFO_CHARS, "%s %5.1f%%", _("Prod"), MP_INFO(x,y).int_4 * 100.0 / 1200.0); } lincity-1.13.1/modules/organic_farm.h0000644000175000017500000000067310066040635014447 00000000000000/* ---------------------------------------------------------------------- * * organic_farm.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __organic_farm_h__ #define __organic_farm_h__ void do_organic_farm (int x, int y); void mps_organic_farm(int x, int y); #endif /* __organic_farm_h__ */ lincity-1.13.1/modules/residence.c0000644000175000017500000001560010071461367013755 00000000000000/* ---------------------------------------------------------------------- * * residence.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include void do_residence (int x, int y) { /* // int_1 is a job swingometer to choose +/- JOB_SWING% of normal // int_2 is the date of the last starve // int 3 is the real time for the next icon update // int_4 is the birth rate modifier. // int_5 is the death rate modifier. */ int p; /* population */ int bad = 35, good = 30; /* (un)desirability of living here */ int r, po, swing; int hc = 0; /* have health cover ? */ int brm = 0, drm = 0; /* birth/death rate modifier */ int cc = 0; p = MP_INFO(x,y).population; if ((MP_INFO(x,y).flags & FLAG_HEALTH_COVER) != 0) { brm += RESIDENCE_BRM_HEALTH; good += 15; hc = 1; } if ((MP_INFO(x,y).flags & FLAG_FIRE_COVER) == 0) bad += 5; else good += 15; if ((MP_INFO(x,y).flags & FLAG_CRICKET_COVER) != 0) { good += 20; cc = CRICKET_JOB_SWING; } /* normal deaths + pollution deaths */ po = ((MP_POL(x,y) / 50) + 1); if ((RESIDENCE_BASE_DR - MP_INFO(x,y).int_5 - po) > 1) r = rand () % (RESIDENCE_BASE_DR - MP_INFO(x,y).int_5 - po); else r = 2; if (p > 0 && (r < po)) { if (r == 0 || hc == 0) p--; else if (hc != 0 && po > 10 && rand () % 4 == 0) { p--; unnat_deaths++; total_pollution_deaths++; pollution_deaths_history += 1.0; bad += 100; } if (r > 0 && hc == 0) { unnat_deaths++; total_pollution_deaths++; pollution_deaths_history += 1.0; bad += 100; } } /* normal births - must have food and jobs... and people */ if ((MP_INFO(x,y).flags & (FLAG_FED + FLAG_EMPLOYED)) == (FLAG_FED + FLAG_EMPLOYED) && (rand () % (RESIDENCE_BASE_BR + MP_INFO(x,y).int_4) == 1) && p > 0) { p++; total_births++; good += 50; } /* are people starving. */ if ((MP_INFO(x,y).flags & FLAG_FED) == 0 && p > 0) { if (rand () % DAYS_PER_STARVE == 1) { p--; unnat_deaths++; total_starve_deaths++; starve_deaths_history += 1.0; } starving_population += p; bad += 250; drm += 100; MP_INFO(x,y).int_2 = total_time; /* for the starve screen */ } /* kick one out if overpopulated */ if (MP_TYPE(x,y) == CST_RESIDENCE_LL) { brm += RESIDENCE1_BRM; drm += p * 8; if (p > 50) { p--; people_pool++; brm += 20; } } else if (MP_TYPE(x,y) == CST_RESIDENCE_ML) { brm += RESIDENCE2_BRM; drm += p * 3; if (p > 100) { p--; people_pool++; brm += 10; } } else if (MP_TYPE(x,y) == CST_RESIDENCE_HL) { brm += RESIDENCE3_BRM; drm += p; good += 40; if (p > 200) { p--; people_pool++; brm += 10; } } else if (MP_TYPE(x,y) == CST_RESIDENCE_LH) { brm += RESIDENCE4_BRM; drm += p * 5; if (p > 100) { p--; people_pool++; brm += 20; } } else if (MP_TYPE(x,y) == CST_RESIDENCE_MH) { brm += RESIDENCE5_BRM; drm += p / 2; if (p > 200) { p--; people_pool++; brm += 10; } } else if (MP_TYPE(x,y) == CST_RESIDENCE_HH) { good += 100; brm += RESIDENCE6_BRM; drm += p; if (p > 400) { p--; people_pool++; brm += 10; } } population += p; /* now get power */ if (get_power (x, y, POWER_RES_OVERHEAD + (POWER_USE_PER_PERSON * p), 0) != 0) { MP_INFO(x,y).flags |= FLAG_POWERED; MP_INFO(x,y).flags |= FLAG_HAD_POWER; good += 10; } else { MP_INFO(x,y).flags &= (0xffffffff - FLAG_POWERED); bad += 15; if ((MP_INFO(x,y).flags & FLAG_HAD_POWER) != 0) bad += 50; } /* now get fed */ if (get_food (x, y, p) != 0) { MP_INFO(x,y).flags |= FLAG_FED; good += 10; } else MP_INFO(x,y).flags &= (0xffffffff - FLAG_FED); /* now supply jobs and buy goods if employed */ if (MP_INFO(x,y).int_1 > 0) swing = JOB_SWING + (hc * HC_JOB_SWING) + cc; else swing = -(JOB_SWING + (hc * HC_JOB_SWING) + cc); if (put_jobs (x, y, ((p * (WORKING_POP_PERCENT + swing)) / 100)) != 0) { MP_INFO(x,y).flags |= FLAG_EMPLOYED; MP_INFO(x,y).int_1++; if (MP_INFO(x,y).int_1 > 10) MP_INFO(x,y).int_1 = 10; good += 20; if (get_goods (x, y, p / 4) != 0) { good += 10; if (get_power (x, y, p / 2, 0) != 0) /* goods use power */ { good += 5; brm += 10; /* buy more goods if got power for them */ if (get_goods (x, y, p / 4) != 0) good += 5; } else bad += 5; } } else if (MP_INFO(x,y).int_1 < 10) { MP_INFO(x,y).flags &= (0xffffffff - FLAG_EMPLOYED); MP_INFO(x,y).int_1 -= 11; if (MP_INFO(x,y).int_1 < -300) MP_INFO(x,y).int_1 = -300; unemployed_population += p; total_unemployed_days += p; if (total_unemployed_days >= NUMOF_DAYS_IN_YEAR) { total_unemployed_years++; /* think we're ok doing this, max of about 120 added each time. */ total_unemployed_days -= NUMOF_DAYS_IN_YEAR; unemployed_history += 1.0; } unemployment_cost += p; /* hmmm */ bad += 70; } else { MP_INFO(x,y).int_1 -= 20; bad += 50; } drm += p / 4; /* people_pool stuff */ bad += p / 2; bad += MP_POL(x,y) / 20; good += people_pool / 27; r = rand () % ((good + bad) * RESIDENCE_PPM); if (r < bad) { if (p > MIN_RES_POPULATION) { p--; people_pool++; } } else if (people_pool > 0 && r > ((good + bad) * (RESIDENCE_PPM - 1) + bad)) { p++; people_pool--; } MP_INFO(x,y).population = p; MP_INFO(x,y).int_4 = brm; MP_INFO(x,y).int_5 = drm; } void mps_residence (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Residence")); i++; mps_store_sd(i++,_("People"), MP_INFO(x,y).population); p = ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Power"), p); p = ((MP_INFO(x,y).flags & FLAG_FED) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Fed"), p); p = ((MP_INFO(x,y).flags & FLAG_EMPLOYED) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Employed"), p); p = ((MP_INFO(x,y).flags & FLAG_HEALTH_COVER) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Health Cvr"), p); p = ((MP_INFO(x,y).flags & FLAG_FIRE_COVER) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Fire"), p); p = ((MP_INFO(x,y).flags & FLAG_CRICKET_COVER) != 0) ? _("YES") : _("NO"); mps_store_ss(i++, _("Cricket"), p); mps_store_sd(i++, _("Pollution"), MP_POL(x,y)); p = (MP_INFO(x,y).int_1 >= 10) ? _("good") : _("poor"); mps_store_ss(i++, _("Job"), p); } lincity-1.13.1/modules/residence.h0000644000175000017500000000065010066252157013760 00000000000000/* ---------------------------------------------------------------------- * * residence.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * ---------------------------------------------------------------------- */ #ifndef __residence_h__ #define __residence_h__ void do_residence(int x, int y); void mps_residence(int x, int y); #endif /* __residence_h__ */ lincity-1.13.1/modules/light_industry.c0000644000175000017500000002266010071461436015065 00000000000000/* ---------------------------------------------------------------------- * * light_industry.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_industry_l (int x, int y) { int goods = 0; /* // int_1 is the goods produced this month so far // int_2 is the amount of goods in store. // int_3 is the amount of ore in store. // int_4 is the amount of steel in store. // int_5 is the jobs stored. // int_6 is the percent of capacity last month. // int 7 is the next animation frame time. */ /* first get some jobs */ if (MP_INFO(x,y).int_5 < MAX_JOBS_AT_INDUSTRY_L - INDUSTRY_L_GET_JOBS) { if (get_jobs (x, y, INDUSTRY_L_GET_JOBS) != 0) MP_INFO(x,y).int_5 += INDUSTRY_L_GET_JOBS; else if (get_jobs (x, y, INDUSTRY_L_GET_JOBS / 10) != 0) MP_INFO(x,y).int_5 += INDUSTRY_L_GET_JOBS / 10; } /* if we don't have enough jobs we can't do anything */ if (MP_INFO(x,y).int_5 < MIN_JOBS_AT_INDUSTRY_L) return; /* get some ore */ if (MP_INFO(x,y).int_3 < (MAX_ORE_AT_INDUSTRY_L - INDUSTRY_L_GET_ORE)) { if ((MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0 && MP_INFO(x - 1,y).int_5 > 0) { if (MP_INFO(x - 1,y).int_5 >= INDUSTRY_L_GET_ORE) { MP_INFO(x,y).int_3 += INDUSTRY_L_GET_ORE; MP_INFO(x - 1,y).int_5 -= INDUSTRY_L_GET_ORE; } else { MP_INFO(x,y).int_3 += MP_INFO(x - 1,y).int_5; MP_INFO(x - 1,y).int_5 = 0; } MP_INFO(x,y).int_5 -= INDUSTRY_L_JOBS_LOAD_ORE; } } /* do we still need some ore? */ if (MP_INFO(x,y).int_3 < (MAX_ORE_AT_INDUSTRY_L - INDUSTRY_L_GET_ORE)) { if ((MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0 && MP_INFO(x,y - 1).int_5 > 0) { if (MP_INFO(x,y - 1).int_5 >= INDUSTRY_L_GET_ORE) { MP_INFO(x,y).int_3 += INDUSTRY_L_GET_ORE; MP_INFO(x,y - 1).int_5 -= INDUSTRY_L_GET_ORE; } else { MP_INFO(x,y).int_3 += MP_INFO(x,y - 1).int_5; MP_INFO(x,y - 1).int_5 = 0; } MP_INFO(x,y).int_5 -= INDUSTRY_L_JOBS_LOAD_ORE; } } /* then get some steel */ if (MP_INFO(x,y).int_4 < (MAX_STEEL_AT_INDUSTRY_L - INDUSTRY_L_GET_STEEL)) { if ((MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0 && MP_INFO(x - 1,y).int_6 > 0) { if (MP_INFO(x - 1,y).int_6 >= INDUSTRY_L_GET_STEEL) { MP_INFO(x,y).int_4 += INDUSTRY_L_GET_STEEL; MP_INFO(x - 1,y).int_6 -= INDUSTRY_L_GET_STEEL; } else { MP_INFO(x,y).int_4 += MP_INFO(x - 1,y).int_6; MP_INFO(x - 1,y).int_6 = 0; } MP_INFO(x,y).int_5 -= INDUSTRY_L_JOBS_LOAD_STEEL; } } /* do we still need some steel? */ if (MP_INFO(x,y).int_4 < (MAX_STEEL_AT_INDUSTRY_L - INDUSTRY_L_GET_STEEL)) { if ((MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0 && MP_INFO(x,y - 1).int_6 > 0) { if (MP_INFO(x,y - 1).int_6 >= INDUSTRY_L_GET_STEEL) { MP_INFO(x,y).int_4 += INDUSTRY_L_GET_STEEL; MP_INFO(x,y - 1).int_6 -= INDUSTRY_L_GET_STEEL; } else { MP_INFO(x,y).int_4 += MP_INFO(x,y - 1).int_6; MP_INFO(x,y - 1).int_6 = 0; } MP_INFO(x,y).int_5 -= INDUSTRY_L_JOBS_LOAD_STEEL; } } /* now make some goods */ if (MP_INFO(x,y).int_2 < (MAX_GOODS_AT_INDUSTRY_L - (INDUSTRY_L_MAKE_GOODS * 8)) && MP_INFO(x,y).int_3 >= INDUSTRY_L_ORE_USED) { goods += INDUSTRY_L_MAKE_GOODS; MP_INFO(x,y).int_3 -= INDUSTRY_L_ORE_USED; ore_used += INDUSTRY_L_ORE_USED; MP_INFO(x,y).int_5 -= INDUSTRY_L_JOBS_USED; MP_POL(x,y) += INDUSTRY_L_POLLUTION; /* multiply by 2 if we have steel. */ if (MP_INFO(x,y).int_4 >= INDUSTRY_L_STEEL_USED) { MP_INFO(x,y).int_4 -= INDUSTRY_L_STEEL_USED; goods += goods; } /* multipy by 4 if we can get power. */ if (MP_INFO(x,y).int_3 >= INDUSTRY_L_ORE_USED && get_power (x, y, goods * 10, 1) != 0) { goods *= 4; MP_INFO(x,y).flags |= FLAG_POWERED; /* and use more ore */ MP_INFO(x,y).int_3 -= INDUSTRY_L_ORE_USED; ore_used += INDUSTRY_L_ORE_USED; } else MP_INFO(x,y).flags &= (0xffffffff - FLAG_POWERED); } MP_INFO(x,y).int_1 += goods; MP_INFO(x,y).int_2 += goods; goods_made += goods; /* now sell the goods to the road/rail/track */ if (MP_GROUP(x,y - 1) == GROUP_ROAD && (MAX_GOODS_ON_ROAD - MP_INFO(x,y - 1).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_ROAD - MP_INFO(x,y - 1).int_4); MP_INFO(x,y - 1).int_4 = MAX_GOODS_ON_ROAD; } else if (MP_GROUP(x,y - 1) == GROUP_RAIL && (MAX_GOODS_ON_RAIL - MP_INFO(x,y - 1).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_RAIL - MP_INFO(x,y - 1).int_4); MP_INFO(x,y - 1).int_4 = MAX_GOODS_ON_RAIL; } else if (MP_GROUP(x,y - 1) == GROUP_TRACK && (MAX_GOODS_ON_TRACK - MP_INFO(x,y - 1).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_TRACK - MP_INFO(x,y - 1).int_4); MP_INFO(x,y - 1).int_4 = MAX_GOODS_ON_TRACK; } if (MP_GROUP(x - 1,y) == GROUP_ROAD && (MAX_GOODS_ON_ROAD - MP_INFO(x - 1,y).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_ROAD - MP_INFO(x - 1,y).int_4); MP_INFO(x - 1,y).int_4 = MAX_GOODS_ON_ROAD; } else if (MP_GROUP(x - 1,y) == GROUP_RAIL && (MAX_GOODS_ON_RAIL - MP_INFO(x - 1,y).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_RAIL - MP_INFO(x - 1,y).int_4); MP_INFO(x - 1,y).int_4 = MAX_GOODS_ON_RAIL; } else if (MP_GROUP(x-1,y) == GROUP_TRACK && (MAX_GOODS_ON_TRACK - MP_INFO(x - 1,y).int_4) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_GOODS_ON_TRACK - MP_INFO(x - 1,y).int_4); MP_INFO(x - 1,y).int_4 = MAX_GOODS_ON_TRACK; } /* now choose a graphic every month */ if ((total_time % NUMOF_DAYS_IN_MONTH) == NUMOF_DAYS_IN_MONTH - 1) { MP_INFO(x,y).int_6 = (MP_INFO(x,y).int_1) / (INDUSTRY_L_MAKE_GOODS * 8); MP_INFO(x,y).int_1 = 0; if (MP_INFO(x,y).int_6 > 80) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_L_H1): case (CST_INDUSTRY_L_H2): case (CST_INDUSTRY_L_H3): case (CST_INDUSTRY_L_H4): break; default: MP_TYPE(x,y) = CST_INDUSTRY_L_H1; } } else if (MP_INFO(x,y).int_6 > 55) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_L_M1): case (CST_INDUSTRY_L_M2): case (CST_INDUSTRY_L_M3): case (CST_INDUSTRY_L_M4): break; default: MP_TYPE(x,y) = CST_INDUSTRY_L_M1; } } else if (MP_INFO(x,y).int_6 > 25) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_L_L1): case (CST_INDUSTRY_L_L2): case (CST_INDUSTRY_L_L3): case (CST_INDUSTRY_L_L4): break; default: MP_TYPE(x,y) = CST_INDUSTRY_L_L1; } } else if (MP_INFO(x,y).int_6 > 0) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_L_Q1): case (CST_INDUSTRY_L_Q2): case (CST_INDUSTRY_L_Q3): case (CST_INDUSTRY_L_Q4): break; default: MP_TYPE(x,y) = CST_INDUSTRY_L_Q1; } } else MP_TYPE(x,y) = CST_INDUSTRY_L_C; } /* now animate */ if (real_time >= MP_INFO(x,y).int_7) { MP_INFO(x,y).int_7 = real_time + INDUSTRY_L_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_L_Q1): MP_TYPE(x,y) = CST_INDUSTRY_L_Q2; break; case (CST_INDUSTRY_L_Q2): MP_TYPE(x,y) = CST_INDUSTRY_L_Q3; break; case (CST_INDUSTRY_L_Q3): MP_TYPE(x,y) = CST_INDUSTRY_L_Q4; break; case (CST_INDUSTRY_L_Q4): MP_TYPE(x,y) = CST_INDUSTRY_L_Q1; break; case (CST_INDUSTRY_L_L1): MP_TYPE(x,y) = CST_INDUSTRY_L_L2; break; case (CST_INDUSTRY_L_L2): MP_TYPE(x,y) = CST_INDUSTRY_L_L3; break; case (CST_INDUSTRY_L_L3): MP_TYPE(x,y) = CST_INDUSTRY_L_L4; break; case (CST_INDUSTRY_L_L4): MP_TYPE(x,y) = CST_INDUSTRY_L_L1; break; case (CST_INDUSTRY_L_M1): MP_TYPE(x,y) = CST_INDUSTRY_L_M2; break; case (CST_INDUSTRY_L_M2): MP_TYPE(x,y) = CST_INDUSTRY_L_M3; break; case (CST_INDUSTRY_L_M3): MP_TYPE(x,y) = CST_INDUSTRY_L_M4; break; case (CST_INDUSTRY_L_M4): MP_TYPE(x,y) = CST_INDUSTRY_L_M1; break; case (CST_INDUSTRY_L_H1): MP_TYPE(x,y) = CST_INDUSTRY_L_H2; break; case (CST_INDUSTRY_L_H2): MP_TYPE(x,y) = CST_INDUSTRY_L_H3; break; case (CST_INDUSTRY_L_H3): MP_TYPE(x,y) = CST_INDUSTRY_L_H4; break; case (CST_INDUSTRY_L_H4): MP_TYPE(x,y) = CST_INDUSTRY_L_H1; break; } } } void mps_light_industry (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Light")); mps_store_title(i++,_("Industry")); i++; p = ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) ? _("YES") : _("NO"); mps_store_ss(i++,_("Power"),p); mps_store_sd(i++,_("Output"),MP_INFO(x,y).int_1); mps_store_sfp(i++,_("Store"), MP_INFO(x,y).int_2 * 100.0 / MAX_GOODS_AT_INDUSTRY_L); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_3 * 100.0 / MAX_ORE_AT_INDUSTRY_L); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_4 * 100.0 / MAX_STEEL_AT_INDUSTRY_L); mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_6); } lincity-1.13.1/modules/light_industry.h0000644000175000017500000000073610066262431015070 00000000000000/* ---------------------------------------------------------------------- * * light_industry.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __light_industry_h__ #define __light_industry_h__ void do_industry_l(int x, int y); void mps_light_industry(int x, int y); #endif /* __light_industry_h__ */ lincity-1.13.1/modules/heavy_industry.c0000644000175000017500000002313510066264203015065 00000000000000/* ---------------------------------------------------------------------- * * heavy_industry.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_industry_h (int x, int y) { int rawm, steel = 0; /* // int_1 is the steel produced this month so far // int_2 is the amount of steel in store // int_3 is the amount of raw materials in store (ore) // int_4 is the coal in store // int_5 is the percent max production last month // int_6 is the time of the next animation frame. // int_7 is whether we get power from coal (1) or elsewhere (0) */ /* See if there's any raw materials (ore) on the road/rail. If so, use some jobs to get it. First get some ore... */ if (MP_INFO(x,y).int_3 < MAX_ORE_AT_INDUSTRY_H && ((MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) && MP_INFO(x - 1,y).int_5 > 0) if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_3 += (MP_INFO(x - 1,y).int_5 / 2 + ((MP_INFO(x - 1,y).int_5) % 2)); MP_INFO(x - 1,y).int_5 /= 2; } if (MP_INFO(x,y).int_3 < MAX_ORE_AT_INDUSTRY_H && ((MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) && MP_INFO(x,y - 1).int_5 > 0) if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_3 += (MP_INFO(x,y - 1).int_5 / 2 + ((MP_INFO(x,y - 1).int_5) % 2)); MP_INFO(x,y - 1).int_5 /= 2; } /* then get some coal if needed */ if (MP_INFO(x,y).int_4 < MAX_COAL_AT_INDUSTRY_H && ((MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) && MP_INFO(x - 1,y).int_3 > 0) if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_4 += (MP_INFO(x - 1,y).int_3 / 2 + ((MP_INFO(x - 1,y).int_3) % 2)); MP_INFO(x - 1,y).int_3 /= 2; } if (MP_INFO(x,y).int_4 < MAX_ORE_AT_INDUSTRY_H && ((MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) && MP_INFO(x,y - 1).int_3 > 0) if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_4 += (MP_INFO(x,y - 1).int_3 / 2 + ((MP_INFO(x,y - 1).int_3) % 2)); MP_INFO(x,y - 1).int_3 /= 2; } rawm = MP_INFO(x,y).int_3; if (rawm > MAX_MADE_AT_INDUSTRY_H) rawm = MAX_MADE_AT_INDUSTRY_H; /* turn it into steel */ if (rawm > 0 && MP_INFO(x,y).int_2 < (MAX_STEEL_ON_RAIL * 10)) { if (get_jobs (x, y, ((rawm / 2) / JOBS_MAKE_STEEL) + 1) != 0) { steel = (rawm) / ORE_MAKE_STEEL; MP_POL(x,y) += INDUSTRY_H_POLLUTION / 2; } else if (get_jobs (x, y, ((rawm / 4) / JOBS_MAKE_STEEL) + 1) != 0) { steel = (rawm / 2) / ORE_MAKE_STEEL; MP_POL(x,y) += INDUSTRY_H_POLLUTION / 4; } else if (get_jobs (x, y, ((rawm / 10) / JOBS_MAKE_STEEL) + 1) != 0) { steel = (rawm / 5) / ORE_MAKE_STEEL; MP_POL(x,y) += INDUSTRY_H_POLLUTION / 10; } } /* do this here rather than later 'cos maybe steel/=5 */ MP_INFO(x,y).int_3 -= steel * ORE_MAKE_STEEL; ore_used += steel * ORE_MAKE_STEEL; /* check there was enough electricity, or back up to 1/10 of the production. ie same work and material useage for less production. If no real power, see if we have enough coal to generate electricity. */ if (get_power (x, y, steel * POWER_MAKE_STEEL, 1) == 0) { if (MP_INFO(x,y).int_4 < (steel * 2)) { MP_INFO(x,y).flags &= (0xffffffff - FLAG_POWERED); steel /= 5; } else { MP_INFO(x,y).int_4 -= (steel * 2); coal_used += (steel * 2); MP_INFO(x,y).flags |= FLAG_POWERED; MP_INFO(x,y).int_7 = 1; } } else { MP_INFO(x,y).flags |= FLAG_POWERED; MP_INFO(x,y).int_7 = 0; } MP_INFO(x,y).int_1 += steel; MP_INFO(x,y).int_2 += steel; /* now sell the steel to the road/rail */ if (MP_GROUP(x,y-1) == GROUP_ROAD && (MAX_STEEL_ON_ROAD - MP_INFO(x,y - 1).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_ROAD - MP_INFO(x,y - 1).int_6); MP_INFO(x,y - 1).int_6 = MAX_STEEL_ON_ROAD; } else if (MP_GROUP(x,y - 1) == GROUP_RAIL && (MAX_STEEL_ON_RAIL - MP_INFO(x,y - 1).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_RAIL - MP_INFO(x,y - 1).int_6); MP_INFO(x,y - 1).int_6 = MAX_STEEL_ON_RAIL; } else if (MP_GROUP(x,y-1) == GROUP_TRACK && (MAX_STEEL_ON_TRACK - MP_INFO(x,y - 1).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_TRACK - MP_INFO(x,y - 1).int_6); MP_INFO(x,y - 1).int_6 = MAX_STEEL_ON_TRACK; } if (MP_GROUP(x-1,y) == GROUP_ROAD && (MAX_STEEL_ON_ROAD - MP_INFO(x - 1,y).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_ROAD - MP_INFO(x - 1,y).int_6); MP_INFO(x - 1,y).int_6 = MAX_STEEL_ON_ROAD; } else if (MP_GROUP(x-1,y) == GROUP_RAIL && (MAX_STEEL_ON_RAIL - MP_INFO(x - 1,y).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_RAIL - MP_INFO(x - 1,y).int_6); MP_INFO(x - 1,y).int_6 = MAX_STEEL_ON_RAIL; } else if (MP_GROUP(x - 1,y) == GROUP_TRACK && (MAX_STEEL_ON_TRACK - MP_INFO(x - 1,y).int_6) <= MP_INFO(x,y).int_2) { MP_INFO(x,y).int_2 -= (MAX_STEEL_ON_TRACK - MP_INFO(x - 1,y).int_6); MP_INFO(x - 1,y).int_6 = MAX_STEEL_ON_TRACK; } /* now choose a graphic every month */ if ((total_time % NUMOF_DAYS_IN_MONTH) == NUMOF_DAYS_IN_MONTH - 1) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_1 / (MAX_MADE_AT_INDUSTRY_H / ORE_MAKE_STEEL); MP_INFO(x,y).int_1 = 0; if (MP_INFO(x,y).int_5 > 80) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_H_H1): case (CST_INDUSTRY_H_H2): case (CST_INDUSTRY_H_H3): case (CST_INDUSTRY_H_H4): case (CST_INDUSTRY_H_H5): case (CST_INDUSTRY_H_H6): case (CST_INDUSTRY_H_H7): case (CST_INDUSTRY_H_H8): break; default: MP_TYPE(x,y) = CST_INDUSTRY_H_H1; } } else if (MP_INFO(x,y).int_5 > 30) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_H_M1): case (CST_INDUSTRY_H_M2): case (CST_INDUSTRY_H_M3): case (CST_INDUSTRY_H_M4): case (CST_INDUSTRY_H_M5): case (CST_INDUSTRY_H_M6): case (CST_INDUSTRY_H_M7): case (CST_INDUSTRY_H_M8): break; default: MP_TYPE(x,y) = CST_INDUSTRY_H_M1; } } else if (MP_INFO(x,y).int_5 > 0) { switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_H_L1): case (CST_INDUSTRY_H_L2): case (CST_INDUSTRY_H_L3): case (CST_INDUSTRY_H_L4): case (CST_INDUSTRY_H_L5): case (CST_INDUSTRY_H_L6): case (CST_INDUSTRY_H_L7): case (CST_INDUSTRY_H_L8): break; default: MP_TYPE(x,y) = CST_INDUSTRY_H_L1; } } else MP_TYPE(x,y) = CST_INDUSTRY_H_C; } /* now animate */ if (real_time >= MP_INFO(x,y).int_6) { MP_INFO(x,y).int_6 = real_time + INDUSTRY_H_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_INDUSTRY_H_L1): MP_TYPE(x,y) = CST_INDUSTRY_H_L2; break; case (CST_INDUSTRY_H_L2): MP_TYPE(x,y) = CST_INDUSTRY_H_L3; break; case (CST_INDUSTRY_H_L3): MP_TYPE(x,y) = CST_INDUSTRY_H_L4; break; case (CST_INDUSTRY_H_L4): MP_TYPE(x,y) = CST_INDUSTRY_H_L5; break; case (CST_INDUSTRY_H_L5): MP_TYPE(x,y) = CST_INDUSTRY_H_L6; break; case (CST_INDUSTRY_H_L6): MP_TYPE(x,y) = CST_INDUSTRY_H_L7; break; case (CST_INDUSTRY_H_L7): MP_TYPE(x,y) = CST_INDUSTRY_H_L8; break; case (CST_INDUSTRY_H_L8): MP_TYPE(x,y) = CST_INDUSTRY_H_L1; break; case (CST_INDUSTRY_H_M1): MP_TYPE(x,y) = CST_INDUSTRY_H_M2; break; case (CST_INDUSTRY_H_M2): MP_TYPE(x,y) = CST_INDUSTRY_H_M3; break; case (CST_INDUSTRY_H_M3): MP_TYPE(x,y) = CST_INDUSTRY_H_M4; break; case (CST_INDUSTRY_H_M4): MP_TYPE(x,y) = CST_INDUSTRY_H_M5; break; case (CST_INDUSTRY_H_M5): MP_TYPE(x,y) = CST_INDUSTRY_H_M6; break; case (CST_INDUSTRY_H_M6): MP_TYPE(x,y) = CST_INDUSTRY_H_M7; break; case (CST_INDUSTRY_H_M7): MP_TYPE(x,y) = CST_INDUSTRY_H_M8; break; case (CST_INDUSTRY_H_M8): MP_TYPE(x,y) = CST_INDUSTRY_H_M1; break; case (CST_INDUSTRY_H_H1): MP_TYPE(x,y) = CST_INDUSTRY_H_H2; break; case (CST_INDUSTRY_H_H2): MP_TYPE(x,y) = CST_INDUSTRY_H_H3; break; case (CST_INDUSTRY_H_H3): MP_TYPE(x,y) = CST_INDUSTRY_H_H4; break; case (CST_INDUSTRY_H_H4): MP_TYPE(x,y) = CST_INDUSTRY_H_H5; break; case (CST_INDUSTRY_H_H5): MP_TYPE(x,y) = CST_INDUSTRY_H_H6; break; case (CST_INDUSTRY_H_H6): MP_TYPE(x,y) = CST_INDUSTRY_H_H7; break; case (CST_INDUSTRY_H_H7): MP_TYPE(x,y) = CST_INDUSTRY_H_H8; break; case (CST_INDUSTRY_H_H8): MP_TYPE(x,y) = CST_INDUSTRY_H_H1; break; } } } void mps_heavy_industry (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Heavy")); mps_store_title(i++,_("Industry")); i++; if ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) { if (MP_INFO(x,y).int_7 == 1) { p = _("Coal"); } else { p = _("Grid"); } } else { p = _("NO"); } mps_store_ss(i++,_("Power"),p); mps_store_sd(i++,_("Output"), MP_INFO(x,y).int_1); mps_store_sfp(i++,_("Store"), MP_INFO(x,y).int_2 * 100.0 / MAX_STEEL_AT_INDUSTRY_H); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_3 * 100.0 / MAX_ORE_AT_INDUSTRY_H); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_4 * 100.0 / MAX_COAL_AT_INDUSTRY_H); mps_store_sd(i++,_("Capacity"), MP_INFO(x,y).int_5); } lincity-1.13.1/modules/heavy_industry.h0000644000175000017500000000073510066264400015072 00000000000000/* ---------------------------------------------------------------------- * * heavy_industry.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __heavy_industry_h__ #define __heavy_industry_h__ void do_industry_h(int x, int y); void mps_heavy_industry(int x, int y); #endif /* __heavy_industry_h__ */ lincity-1.13.1/modules/coalmine.c0000644000175000017500000001174410066264767013621 00000000000000/* ---------------------------------------------------------------------- * * coalmine.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_coalmine (int x, int y) { /* // int_1 is the coal at the surface // int_2 is the coal reserve under the ground. More than one mine can // int_3 is the jobs collected. */ /* claim the coal under ground! */ int xx, yy, xs, ys, xe, ye, cr; if (MP_INFO(x,y).int_1 < (DIG_MORE_COAL_TRIGGER - 1000)) { if (MP_INFO(x,y).int_2 < 0) return; /* run out of reserves */ xs = x - COAL_RESERVE_SEARCH_LEN; if (xs < 0) xs = 0; ys = y - COAL_RESERVE_SEARCH_LEN; if (ys < 0) ys = 0; xe = x + COAL_RESERVE_SEARCH_LEN; if (xe > WORLD_SIDE_LEN) xe = WORLD_SIDE_LEN; ye = y + COAL_RESERVE_SEARCH_LEN; if (ye > WORLD_SIDE_LEN) ye = WORLD_SIDE_LEN; cr = 0; for (yy = ys; yy < ye; yy++) for (xx = xs; xx < xe; xx++) cr += MP_INFO(xx,yy).coal_reserve; MP_INFO(x,y).int_2 = cr; if (cr > 0) { if (get_jobs (x, y, JOBS_DIG_COAL - MP_INFO(x,y).int_3) != 0) { MP_INFO(x,y).int_3 = 0; for (yy = ys; yy < ye; yy++) for (xx = xs; xx < xe; xx++) if (MP_INFO(xx,yy).coal_reserve > 0) { MP_INFO(xx,yy).coal_reserve--; MP_INFO(x,y).int_1 += 1000; coal_made += 1000; coal_tax += 1000; sust_dig_ore_coal_tip_flag = 0; MP_POL(x,y) += COALMINE_POLLUTION; yy = ye; xx = xe; /* break out */ } } else if (get_jobs (x, y, JOBS_DIG_COAL / 10) != 0) MP_INFO(x,y).int_3 += JOBS_DIG_COAL / 10; else if (get_jobs (x, y, JOBS_DIG_COAL / 50) != 0) MP_INFO(x,y).int_3 += JOBS_DIG_COAL / 50; } else { MP_INFO(x,y).int_1 = 0; MP_INFO(x,y).int_2 = -1; } } /* put it on the railway */ if (MP_GROUP(x - 1,y) == GROUP_RAIL && MP_INFO(x - 1,y).int_3 < MAX_COAL_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_RAIL - MP_INFO(x - 1,y).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_RAIL - MP_INFO(x - 1,y).int_3); MP_INFO(x - 1,y).int_3 = MAX_COAL_ON_RAIL; } } if (MP_GROUP(x,y-1) == GROUP_RAIL && MP_INFO(x,y - 1).int_3 < MAX_COAL_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_RAIL - MP_INFO(x,y - 1).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_RAIL - MP_INFO(x,y - 1).int_3); MP_INFO(x,y - 1).int_3 = MAX_COAL_ON_RAIL; } } /* put it on the road */ if (MP_GROUP(x-1,y) == GROUP_ROAD && MP_INFO(x - 1,y).int_3 < MAX_COAL_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_ROAD - MP_INFO(x - 1,y).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_ROAD - MP_INFO(x - 1,y).int_3); MP_INFO(x - 1,y).int_3 = MAX_COAL_ON_ROAD; } } if (MP_GROUP(x,y-1) == GROUP_ROAD && MP_INFO(x,y - 1).int_3 < MAX_COAL_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_ROAD - MP_INFO(x,y - 1).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_ROAD - MP_INFO(x,y - 1).int_3); MP_INFO(x,y - 1).int_3 = MAX_COAL_ON_ROAD; } } /* put it on the tracks */ if (MP_GROUP(x-1,y) == GROUP_TRACK && MP_INFO(x - 1,y).int_3 < MAX_COAL_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_TRACK - MP_INFO(x - 1,y).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_TRACK - MP_INFO(x - 1,y).int_3); MP_INFO(x - 1,y).int_3 = MAX_COAL_ON_TRACK; } } if (MP_GROUP(x,y-1) == GROUP_TRACK && MP_INFO(x,y - 1).int_3 < MAX_COAL_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_COAL_ON_TRACK - MP_INFO(x,y - 1).int_3)) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_1 -= (MAX_COAL_ON_TRACK - MP_INFO(x,y - 1).int_3); MP_INFO(x,y - 1).int_3 = MAX_COAL_ON_TRACK; } } /* choose a graphic */ if (MP_INFO(x,y).int_1 > (MAX_COAL_AT_MINE - (MAX_COAL_AT_MINE / 5))) MP_TYPE(x,y) = CST_COALMINE_FULL; else if (MP_INFO(x,y).int_1 > (MAX_COAL_AT_MINE / 2)) MP_TYPE(x,y) = CST_COALMINE_MED; else if (MP_INFO(x,y).int_1 > 0) MP_TYPE(x,y) = CST_COALMINE_LOW; else MP_TYPE(x,y) = CST_COALMINE_EMPTY; } void mps_coalmine (int x, int y) { int i = 0; mps_store_title(i++,_("Coal Mine")); i++; mps_store_sfp(i++,_("Stock"), MP_INFO(x,y).int_1 * 100 / MAX_COAL_AT_MINE); if (MP_INFO(x,y).int_2 > 0) { mps_store_sd(i++, _("Reserve"), MP_INFO(x,y).int_2); } else { mps_store_ss(i++, _("Reserve"), _("EMPTY")); } } lincity-1.13.1/modules/coalmine.h0000644000175000017500000000067710066264453013621 00000000000000/* ---------------------------------------------------------------------- * * coalmine.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __coalmine_h__ #define __coalmine_h__ void do_coalmine(int x, int y); void mps_coalmine (int x, int y); #endif /* __coalmine_h__ */ lincity-1.13.1/modules/oremine.c0000644000175000017500000001151210071461625013445 00000000000000/* ---------------------------------------------------------------------- * * oremine.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include void do_oremine (int x, int y) { /* // int_1 is the ore at in stock // int_2 is the ore reserve under the ground or at the surface really. */ int xx, yy, xs, ys, xe, ye, cr; if (MP_INFO(x,y).int_1 < DIG_MORE_ORE_TRIGGER - 5000) { xs = x; ys = y; xe = x + 4; ye = y + 4; cr = 0; for (yy = ys; yy < ye; yy++) for (xx = xs; xx < xe; xx++) cr += MP_INFO(xx,yy).ore_reserve; MP_INFO(x,y).int_2 = cr; if (cr > 0) if (get_jobs (x, y, JOBS_DIG_ORE) != 0) for (yy = ys; yy < ye; yy++) for (xx = xs; xx < xe; xx++) if (MP_INFO(xx,yy).ore_reserve > 0) { MP_INFO(xx,yy).ore_reserve--; MP_INFO(x,y).int_1 += 5000; ore_made += 5000; sust_dig_ore_coal_tip_flag = 0; /* maybe want an ore tax? */ yy = ye; xx = xe; /* break out */ } } if ((MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) { if (MP_GROUP(x-1,y) == GROUP_RAIL && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_RAIL - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_RAIL - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_RAIL; } } else if (MP_GROUP(x-1,y) == GROUP_ROAD && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_ROAD - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_ROAD - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_ROAD; } } else if (MP_GROUP(x - 1,y) == GROUP_TRACK && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_TRACK - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_TRACK - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_TRACK; } } } if ((MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) { if (MP_GROUP(x,y-1) == GROUP_RAIL && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_RAIL - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_RAIL - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_RAIL; } } else if (MP_GROUP(x,y-1) == GROUP_ROAD && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_ROAD - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_ROAD - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_ROAD; } } else if (MP_GROUP(x,y-1) == GROUP_TRACK && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_TRACK - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_TRACK - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_TRACK; } } } /* choose a graphic */ if ((total_time & 0x7f) == 0) { xx = 7 * (MP_INFO(x,y).int_2 + (3 * ORE_RESERVE / 2)) / (16 * ORE_RESERVE); switch (xx) { case (0): MP_TYPE(x,y) = CST_OREMINE_8; break; case (1): MP_TYPE(x,y) = CST_OREMINE_7; break; case (2): MP_TYPE(x,y) = CST_OREMINE_6; break; case (3): MP_TYPE(x,y) = CST_OREMINE_5; break; case (4): MP_TYPE(x,y) = CST_OREMINE_4; break; case (5): MP_TYPE(x,y) = CST_OREMINE_3; break; case (6): MP_TYPE(x,y) = CST_OREMINE_2; break; case (7): MP_TYPE(x,y) = CST_OREMINE_1; break; } if (MP_INFO(x,y).int_2 <= 0) { #if defined (commentout) do_bulldoze_area (CST_GREEN, x, y); place_item(x,y,CST_TIP_0); #endif int i,j; for (j = 0; j < 4; j++) { for (i = 0; i < 4; i++) { do_bulldoze_area (CST_WATER, x+i, y+j); } } connect_rivers (); refresh_main_screen (); } } } void mps_oremine (int x, int y) { int i = 0; mps_store_title(i++,_("Ore Mine")); i++; mps_store_sfp(i++,_("Stock"), MP_INFO(x,y).int_1 * 100.0 / DIG_MORE_ORE_TRIGGER); i++; mps_store_sfp(i++,_("Reserve"), MP_INFO(x,y).int_2 * 100.0 / (ORE_RESERVE * 16)); } lincity-1.13.1/modules/oremine.h0000644000175000017500000000067110066301342013447 00000000000000/* ---------------------------------------------------------------------- * * oremine.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __oremine_h__ #define __oremine_h__ void do_oremine(int x, int y); void mps_oremine (int x, int y); #endif /* __oremine_h__ */ lincity-1.13.1/modules/commune.c0000644000175000017500000000761510071461670013463 00000000000000/* ---------------------------------------------------------------------- * * commune.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include void do_commune (int x, int y) { /* // int_1 is the animation trigger time // int_2 is the steelflag/trackflag // int_3 is the coal sold in the last 100 days 200 units is 100% // steel adds more. // int_4 is the months without selling much coal,steel,ore // int_5 is the coal, ore, steel waste flags for last month // int_6 is the coal, ore, steel waste flags so far this month */ /* GCS -- I folded the trackflag into int_2, changing the logic slightly. This change only affects the animation. */ int trackflag = 0; /* stick coal and ore on tracks, in SMALL doses. */ if (put_coal (x, y, 2) != 0) { trackflag = 1; MP_INFO(x,y).int_3++; MP_INFO(x,y).int_6 |= 1; } if (put_ore (x, y, 6) != 0) { trackflag = 1; MP_INFO(x,y).int_3++; MP_INFO(x,y).int_6 |= 2; } /* recycle a bit of waste */ if (get_waste (x, y, 20) != 0) { trackflag = 1; MP_INFO(x,y).int_3++; MP_INFO(x,y).int_6 |= 8; } if (total_time % 10 == 0) { MP_INFO(x,y).int_2 = 1; if (put_steel (x, y, 2) != 0) { MP_INFO(x,y).int_3++; MP_INFO(x,y).int_6 |= 4; } else { MP_INFO(x,y).int_2 = 0; } if (trackflag) { MP_INFO(x,y).int_2 = 0; } } if (total_time % 100 == 48) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_6; MP_INFO(x,y).int_6 = 0; if (MP_INFO(x,y).int_2 == 0 || trackflag == 0) { if (MP_TYPE(x,y) > CST_COMMUNE_7) MP_TYPE(x,y) -= 7; } else if (MP_TYPE(x,y) <= CST_COMMUNE_7) MP_TYPE(x,y) += 7; if (MP_INFO(x,y).int_3 > 0) /* >0% */ { MP_INFO(x,y).int_3 = 0; if (--MP_INFO(x,y).int_4 < 0) MP_INFO(x,y).int_4 = 0; } else { MP_INFO(x,y).int_3 = 0; MP_INFO(x,y).int_4++; /* XXX: Why do communes only last 10 years? */ if (MP_INFO(x,y).int_4 > 120) /* 10 years */ { do_bulldoze_area (CST_PARKLAND_PLANE, x, y); return; } } } /* animate */ if (real_time >= MP_INFO(x,y).int_1) { MP_INFO(x,y).int_1 = real_time + COMMUNE_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_COMMUNE_1): MP_TYPE(x,y) = CST_COMMUNE_2; break; case (CST_COMMUNE_2): MP_TYPE(x,y) = CST_COMMUNE_3; break; case (CST_COMMUNE_3): MP_TYPE(x,y) = CST_COMMUNE_4; break; case (CST_COMMUNE_4): MP_TYPE(x,y) = CST_COMMUNE_5; break; case (CST_COMMUNE_5): MP_TYPE(x,y) = CST_COMMUNE_6; break; case (CST_COMMUNE_6): MP_TYPE(x,y) = CST_COMMUNE_1; break; case (CST_COMMUNE_8): MP_TYPE(x,y) = CST_COMMUNE_9; break; case (CST_COMMUNE_9): MP_TYPE(x,y) = CST_COMMUNE_10; break; case (CST_COMMUNE_10): MP_TYPE(x,y) = CST_COMMUNE_11; break; case (CST_COMMUNE_11): MP_TYPE(x,y) = CST_COMMUNE_12; break; case (CST_COMMUNE_12): MP_TYPE(x,y) = CST_COMMUNE_13; break; case (CST_COMMUNE_13): MP_TYPE(x,y) = CST_COMMUNE_8; break; } } } void mps_commune (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Commune")); i++; i++; mps_store_title(i++,_("Activity")); i++; p = (MP_INFO(x,y).int_5 & 1) ? _("Yes") : _("No"); mps_store_ss(i++,_("Coal"),p); p = (MP_INFO(x,y).int_5 & 2) ? _("Yes") : _("No"); mps_store_ss(i++,_("Ore"),p); p = (MP_INFO(x,y).int_5 & 4) ? _("Yes") : _("No"); mps_store_ss(i++,_("Steel"),p); p = (MP_INFO(x,y).int_5 & 8) ? _("Yes") : _("No"); mps_store_ss(i++,_("Waste"),p); } lincity-1.13.1/modules/commune.h0000644000175000017500000000067110066326651013466 00000000000000/* ---------------------------------------------------------------------- * * commune.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __commune_h__ #define __commune_h__ void do_commune(int x, int y); void mps_commune (int x, int y); #endif /* __commune_h__ */ lincity-1.13.1/modules/port.c0000644000175000017500000001313010071461716012772 00000000000000/* ---------------------------------------------------------------------- * * port.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include void do_port (int x, int y) { /* // int_1 is the money made so far this month // int_2 is the money made last month // int_3 holds the 'pence/pennies/bits' to add next time round. // int_4 is the import costs so far this month // int_5 is the import costs for last month // Use int_3 to int_7 of (x+1,y) to hold the individual buy values // (x,y+1) is last month's // Use int_3 to int_7 of (x+2,y) to hold the individual sell values // (x,y+2) is last month's */ int i, et = 0, ic = 0, flags, *b1, *b2, *s1, *s2; /* left connection first */ flags = MP_INFO(x,y).flags; if (x > 0 && (MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) { if ((flags & FLAG_MB_FOOD) != 0) { i = buy_food (x - 1, y); ic += i; MP_INFO(x + 1,y).int_3 += i; } if ((flags & FLAG_MS_FOOD) != 0) { i = sell_food (x - 1, y); et += i; MP_INFO(x + 2,y).int_3 += i; } if ((flags & FLAG_MB_COAL) != 0) { i = buy_coal (x - 1, y); ic += i; MP_INFO(x + 1,y).int_4 += i; } if ((flags & FLAG_MS_COAL) != 0) { i = sell_coal (x - 1, y); et += i; MP_INFO(x + 2,y).int_4 += i; } if ((flags & FLAG_MB_ORE) != 0) { i = buy_ore (x - 1, y); ic += i; MP_INFO(x + 1,y).int_5 += i; } if ((flags & FLAG_MS_ORE) != 0) { i = sell_ore (x - 1, y); et += i; MP_INFO(x + 2,y).int_5 += i; } if ((flags & FLAG_MB_GOODS) != 0) { i = buy_goods (x - 1, y); ic += i; MP_INFO(x + 1,y).int_6 += i; } if ((flags & FLAG_MS_GOODS) != 0) { i = sell_goods (x - 1, y); et += i; MP_INFO(x + 2,y).int_6 += i; } if ((flags & FLAG_MB_STEEL) != 0) { i = buy_steel (x - 1, y); ic += i; MP_INFO(x + 1,y).int_7 += i; } if ((flags & FLAG_MS_STEEL) != 0) { i = sell_steel (x - 1, y); et += i; MP_INFO(x + 2,y).int_7 += i; } } /* upper gate next */ if (y > 0 && (MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) { if ((flags & FLAG_MB_FOOD) != 0) { i = buy_food (x, y - 1); ic += i; MP_INFO(x + 1,y).int_3 += i; } if ((flags & FLAG_MS_FOOD) != 0) { i = sell_food (x, y - 1); et += i; MP_INFO(x + 2,y).int_3 += i; } if ((flags & FLAG_MB_COAL) != 0) { i = buy_coal (x, y - 1); ic += i; MP_INFO(x + 1,y).int_4 += i; } if ((flags & FLAG_MS_COAL) != 0) { i = sell_coal (x, y - 1); et += i; MP_INFO(x + 2,y).int_4 += i; } if ((flags & FLAG_MB_ORE) != 0) { i = buy_ore (x, y - 1); ic += i; MP_INFO(x + 1,y).int_5 += i; } if ((flags & FLAG_MS_ORE) != 0) { i = sell_ore (x, y - 1); et += i; MP_INFO(x + 2,y).int_5 += i; } if ((flags & FLAG_MB_GOODS) != 0) { i = buy_goods (x, y - 1); ic += i; MP_INFO(x + 1,y).int_6 += i; } if ((flags & FLAG_MS_GOODS) != 0) { i = sell_goods (x, y - 1); et += i; MP_INFO(x + 2,y).int_6 += i; } if ((flags & FLAG_MB_STEEL) != 0) { i = buy_steel (x, y - 1); ic += i; MP_INFO(x + 1,y).int_7 += i; } if ((flags & FLAG_MS_STEEL) != 0) { i = sell_steel (x, y - 1); et += i; MP_INFO(x + 2,y).int_7 += i; } } MP_INFO(x,y).int_1 += et; MP_INFO(x,y).int_4 += ic; if (total_time % 100 == 0) { MP_INFO(x,y).int_2 = MP_INFO(x,y).int_1; MP_INFO(x,y).int_1 = 0; MP_INFO(x,y).int_5 = MP_INFO(x,y).int_4; MP_INFO(x,y).int_4 = 0; b1 = &(MP_INFO(x + 1,y).int_3); s1 = &(MP_INFO(x + 2,y).int_3); b2 = &(MP_INFO(x,y + 1).int_3); s2 = &(MP_INFO(x,y + 2).int_3); /* GCS FIX -- This obfuscation is unnecessary. */ for (i = 0; i < 5; i++) { *(b2++) = *b1; *(s2++) = *s1; *(b1++) = 0; *(s1++) = 0; } } if (et > 0) { sust_port_flag = 0; tech_level++; } if (ic > 0) { sust_port_flag = 0; tech_level++; } et += MP_INFO(x,y).int_3; /* int_3 holds the 'pence' */ export_tax += et / 100; MP_INFO(x,y).int_3 = et % 100; import_cost += ic; } void mps_port (int x, int y) { int i = 0; char buy[12], sell[12]; mps_store_title(i++,_("Port")); i++; num_to_ansi(buy, sizeof(buy), MP_INFO(x,y+1).int_3 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y+2).int_3 / 100); mps_store_sss(i++,_("Food"),buy,sell); num_to_ansi(buy, sizeof(buy), MP_INFO(x,y+1).int_4 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y+2).int_4 / 100); mps_store_sss(i++,_("Coal"),buy,sell); num_to_ansi(buy, sizeof(buy), MP_INFO(x,y+1).int_5 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y+2).int_5 / 100); mps_store_sss(i++,_("Ore"),buy,sell); num_to_ansi(buy, sizeof(buy), MP_INFO(x,y+1).int_6 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y+2).int_6 / 100); mps_store_sss(i++,_("Goods"),buy,sell); num_to_ansi(buy, sizeof(buy), MP_INFO(x,y+1).int_7 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y+2).int_7 / 100); mps_store_sss(i++,_("Steel"),buy,sell); num_to_ansi(buy, sizeof(buy), MP_INFO(x,y).int_2 / 100); num_to_ansi(sell, sizeof(sell), MP_INFO(x,y).int_5 / 100); mps_store_sss(i++,_("Total"),buy,sell); } lincity-1.13.1/modules/port.h0000644000175000017500000000064710066321640013003 00000000000000/* ---------------------------------------------------------------------- * * port.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __port_h__ #define __port_h__ void do_port(int x, int y); void mps_port (int x, int y); #endif /* __port_h__ */ lincity-1.13.1/modules/parkland.c0000644000175000017500000000103510066011557013601 00000000000000/* ---------------------------------------------------------------------- * * parkland.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include void do_parkland (int x, int y) { if (MP_POL(x,y) > 10 && (total_time & 1) == 0) MP_POL(x,y) -= 1; } lincity-1.13.1/modules/parkland.h0000644000175000017500000000063510065763731013622 00000000000000/* ---------------------------------------------------------------------- * * parkland.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __parkland_h__ #define __parkland_h__ void do_parkland(int x, int y); #endif /* __parkland_h__ */ lincity-1.13.1/modules/university.c0000644000175000017500000000504610071461740014233 00000000000000/* ---------------------------------------------------------------------- * * university.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_university (int x, int y) { /* // You need UNIVERSITY_JOBS and UNIVERSITY_GOODS to add 1 to tech_level // int_1 is the stored jobs // int_2 is the stored goods // int_3 is the total tech points made by this uni. // int_4 is the count so far in this 100 days // int_5 is the count in the last 100 days to give a percent value // get some jobs */ if (MP_INFO(x,y).int_1 < UNIVERSITY_JOBS_STORE) { if (get_jobs (x, y, UNIVERSITY_JOBS + 10) != 0) MP_INFO(x,y).int_1 += UNIVERSITY_JOBS + 10; } /* get goods */ if (MP_INFO(x,y).int_2 < UNIVERSITY_GOODS_STORE) { if (get_goods (x, y, UNIVERSITY_GOODS + 10) != 0) MP_INFO(x,y).int_2 += UNIVERSITY_GOODS + 10; else if (get_goods (x, y, UNIVERSITY_GOODS / 5) != 0) MP_INFO(x,y).int_2 += UNIVERSITY_GOODS / 5; else if (get_goods (x, y, UNIVERSITY_GOODS / 20) != 0) MP_INFO(x,y).int_2 += UNIVERSITY_GOODS / 20; } /* now do some research */ if (MP_INFO(x,y).int_1 >= UNIVERSITY_JOBS && MP_INFO(x,y).int_2 >= UNIVERSITY_GOODS) { MP_INFO(x,y).int_1 -= UNIVERSITY_JOBS; MP_INFO(x,y).int_2 -= UNIVERSITY_GOODS; goods_used += UNIVERSITY_GOODS; if (university_intake_rate >= (total_time % 100)) { MP_INFO(x,y).int_3 += UNIVERSITY_TECH_MADE; tech_level += UNIVERSITY_TECH_MADE; MP_INFO(x,y).int_4++; } } if (total_time % 100 == 0) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_4; MP_INFO(x,y).int_4 = 0; } university_cost += UNIVERSITY_RUNNING_COST; } void mps_university (int x, int y) { int i = 0; char s[12]; mps_store_title(i++,_("University")); i++; mps_store_title(i++,_("Tech Produced")); snprintf (s, sizeof(s), "%6.1f", MP_INFO(x,y).int_3 * 100.0 / MAX_TECH_LEVEL); mps_store_title(i++,s); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / UNIVERSITY_JOBS_STORE); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / UNIVERSITY_GOODS_STORE); mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_4); } lincity-1.13.1/modules/university.h0000644000175000017500000000071210066274676014251 00000000000000/* ---------------------------------------------------------------------- * * university.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __university_h__ #define __university_h__ void do_university(int x, int y); void mps_university(int x, int y); #endif /* __university_h__ */ lincity-1.13.1/modules/recycle.c0000644000175000017500000001326010066301236013432 00000000000000/* ---------------------------------------------------------------------- * * recycle.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_recycle (int x, int y) { int i; /* // int_1 is the ore made and waiting to go out // int_2 is the used goods in store // int_3 is the used steel in store NOT USED at this time // int_4 is the tech level when built // int_5 is the recycling done so far this month // int_6 is the percent of max recycling last month // int_7 is the waste in store // cost */ recycle_cost += RECYCLE_RUNNING_COST; /* // let these go through, even if we're full of waste. It's a waste of time // checking. */ if (x > 0 && (MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) { i = MP_INFO(x - 1,y).int_7; if (i > MAX_WASTE_AT_RECYCLE - MP_INFO(x,y).int_2) i = MAX_WASTE_AT_RECYCLE - MP_INFO(x,y).int_2; MP_INFO(x,y).int_2 += i; MP_INFO(x - 1,y).int_7 -= i; } if (y > 0 && (MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) { i = MP_INFO(x,y - 1).int_7; if (i > MAX_WASTE_AT_RECYCLE - MP_INFO(x,y).int_2) i = MAX_WASTE_AT_RECYCLE - MP_INFO(x,y).int_2; MP_INFO(x,y).int_2 += i; MP_INFO(x,y - 1).int_7 -= i; } /* get some startup power if not powered yet */ if ((MP_INFO(x,y).flags & FLAG_POWERED) == 0) if (get_power (x, y, GOODS_RECYCLED, 1) != 0) MP_INFO(x,y).flags |= FLAG_POWERED; /* no steel recycling yet - no point, it's only used to make goods. // recycle to ore. */ if (MP_INFO(x,y).int_1 < MAX_ORE_AT_RECYCLE && MP_INFO(x,y).int_2 > GOODS_RECYCLED && (MP_INFO(x,y).flags & FLAG_POWERED) != 0) if (get_jobs (x, y, RECYCLE_GOODS_JOBS) != 0) { if (get_power (x, y, GOODS_RECYCLED / 2, 1) == 0) MP_INFO(x,y).flags &= (0xffffffff - FLAG_POWERED); else MP_INFO(x,y).flags |= FLAG_POWERED; MP_INFO(x,y).int_2 -= GOODS_RECYCLED; i = (GOODS_RECYCLED * (10 + ((50 * MP_INFO(x,y).int_4) / MAX_TECH_LEVEL))) / 100; if (i > (GOODS_RECYCLED * 8) / 10) i = (GOODS_RECYCLED * 8) / 10; MP_INFO(x,y).int_1 += i; ore_made += i; MP_INFO(x,y).int_5++; } if (total_time % 100 == 0) { MP_INFO(x,y).int_6 = MP_INFO(x,y).int_5; MP_INFO(x,y).int_5 = 0; } /* now bung the ore out */ /* put it on the railway */ if (x > 0 && MP_GROUP(x-1,y) == GROUP_RAIL && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_RAIL - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_RAIL - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_RAIL; } } if (y > 0 && MP_GROUP(x,y-1) == GROUP_RAIL && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_RAIL && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_RAIL - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_RAIL - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_RAIL; } } /* put it on the road */ if (x > 0 && MP_GROUP(x-1,y) == GROUP_ROAD && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_ROAD - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_ROAD - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_ROAD; } } if (y > 0 && MP_GROUP(x,y-1) == GROUP_ROAD && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_ROAD && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_ROAD - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_ROAD - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_ROAD; } } /* put it on the tracks */ if (x > 0 && MP_GROUP(x-1,y) == GROUP_TRACK && MP_INFO(x - 1,y).int_5 < MAX_ORE_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_TRACK - MP_INFO(x - 1,y).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_TRACK - MP_INFO(x - 1,y).int_5); MP_INFO(x - 1,y).int_5 = MAX_ORE_ON_TRACK; } } if (y > 0 && MP_GROUP(x,y-1) == GROUP_TRACK && MP_INFO(x,y - 1).int_5 < MAX_ORE_ON_TRACK && MP_INFO(x,y).int_1 >= (MAX_ORE_ON_TRACK - MP_INFO(x,y - 1).int_5)) { if (get_jobs (x, y, JOBS_LOAD_ORE) != 0) { MP_INFO(x,y).int_1 -= (MAX_ORE_ON_TRACK - MP_INFO(x,y - 1).int_5); MP_INFO(x,y - 1).int_5 = MAX_ORE_ON_TRACK; } } /* if we've still got >90% ore and waste in stock, burn some waste cleanly. */ if (MP_INFO(x,y).int_1 > (MAX_ORE_AT_RECYCLE * 9 / 10) && MP_INFO(x,y).int_2 > (MAX_WASTE_AT_RECYCLE * 9 / 10)) MP_INFO(x,y).int_2 -= BURN_WASTE_AT_RECYCLE; } void mps_recycle (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Recycling")); mps_store_title(i++,_("Center")); i++; mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_6); p = ((MP_INFO(x,y).flags & FLAG_POWERED) != 0) ? _("YES") : _("NO"); mps_store_ss(i++,_("Power"),p); mps_store_sfp(i++,_("Tech"), MP_INFO(x,y).int_4 * 100.0 / MAX_TECH_LEVEL); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_1 * 100.0 / MAX_ORE_AT_RECYCLE); mps_store_sfp(i++,_("Waste"), MP_INFO(x,y).int_2 * 100.0 / MAX_WASTE_AT_RECYCLE); } lincity-1.13.1/modules/recycle.h0000644000175000017500000000067110066300307013437 00000000000000/* ---------------------------------------------------------------------- * * recycle.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __recycle_h__ #define __recycle_h__ void do_recycle(int x, int y); void mps_recycle (int x, int y); #endif /* __recycle_h__ */ lincity-1.13.1/modules/health_centre.c0000644000175000017500000000433510066331470014617 00000000000000/* ---------------------------------------------------------------------- * * health_centre.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_health_centre (int x, int y) { /* // int_1 is the jobs stored at the health centre // int_2 is the goods stored at the health centre */ if (MP_INFO(x,y).int_1 < (MAX_JOBS_AT_HEALTH_CENTRE - HEALTH_CENTRE_GET_JOBS)) if (get_jobs (x, y, HEALTH_CENTRE_GET_JOBS) != 0) MP_INFO(x,y).int_1 += HEALTH_CENTRE_GET_JOBS; if (MP_INFO(x,y).int_2 < (MAX_GOODS_AT_HEALTH_CENTRE - HEALTH_CENTRE_GET_GOODS)) if (get_goods (x, y, HEALTH_CENTRE_GET_GOODS) != 0) MP_INFO(x,y).int_2 += HEALTH_CENTRE_GET_GOODS; /* That's all. Cover is done by different functions every 3 months or so. */ health_cost += HEALTH_RUNNING_COST; } void do_health_cover (int x, int y) { int xx, x1, x2, y1, y2; if (MP_INFO(x,y).int_1 < (HEALTH_CENTRE_JOBS * DAYS_BETWEEN_COVER) || MP_INFO(x,y).int_2 < (HEALTH_CENTRE_GOODS * DAYS_BETWEEN_COVER)) return; MP_INFO(x,y).int_1 -= (HEALTH_CENTRE_JOBS * DAYS_BETWEEN_COVER); MP_INFO(x,y).int_2 -= (HEALTH_CENTRE_GOODS * DAYS_BETWEEN_COVER); x1 = x - HEALTH_CENTRE_RANGE; if (x1 < 0) x1 = 0; x2 = x + HEALTH_CENTRE_RANGE; if (x2 > WORLD_SIDE_LEN) x2 = WORLD_SIDE_LEN; y1 = y - HEALTH_CENTRE_RANGE; if (y1 < 0) y1 = 0; y2 = y + HEALTH_CENTRE_RANGE; if (y2 > WORLD_SIDE_LEN) y2 = WORLD_SIDE_LEN; for (; y1 < y2; y1++) for (xx = x1; xx < x2; xx++) MP_INFO(xx,y1).flags |= FLAG_HEALTH_COVER; } void mps_health_centre (int x, int y) { int i = 0; mps_store_title(i++,_("Health Centre")); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / MAX_JOBS_AT_HEALTH_CENTRE); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / MAX_GOODS_AT_HEALTH_CENTRE); } lincity-1.13.1/modules/health_centre.h0000644000175000017500000000100110071464254014612 00000000000000/* ---------------------------------------------------------------------- * * health_centre.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __health_centre_h__ #define __health_centre_h__ void do_health_centre(int x, int y); void do_health_cover(int x, int y); void mps_health_centre (int x, int y); #endif /* __health_centre_h__ */ lincity-1.13.1/modules/rocket_pad.c0000644000175000017500000001265010071462577014135 00000000000000/* ---------------------------------------------------------------------- * * rocket_pad.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include /* XXX: for fire_area! */ #include #include void do_rocket_pad (int x, int y) { /* // You need ROCKET_PAD_JOBS, ROCKET_PAD_GOODS and ROCKET_PAD_STEEL // to add 1 to % of ready to fire. // int_1 is the stored jobs // int_2 is the stored goods // int_3 is the stored steel // int_4 is the count which gets to ROCKET_PAD_LAUNCH to fire. // int_5 is the time of the next animation frame, when waiting for launch. */ if (MP_TYPE(x,y) == CST_ROCKET_FLOWN) return; /* The rocket has been launched. */ /* get some jobs */ if (MP_INFO(x,y).int_1 < ROCKET_PAD_JOBS_STORE) { if (get_jobs (x, y, ROCKET_PAD_JOBS + 10) != 0) MP_INFO(x,y).int_1 += ROCKET_PAD_JOBS; } /* get goods */ if (MP_INFO(x,y).int_2 < ROCKET_PAD_GOODS_STORE) { if (get_goods (x, y, ROCKET_PAD_GOODS + 10) != 0) MP_INFO(x,y).int_2 += ROCKET_PAD_GOODS; else if (get_goods (x, y, ROCKET_PAD_GOODS / 10) != 0) MP_INFO(x,y).int_2 += ROCKET_PAD_GOODS / 5; else if (get_goods (x, y, ROCKET_PAD_GOODS / 50) != 0) MP_INFO(x,y).int_2 += ROCKET_PAD_GOODS / 20; } /* get steel */ if (MP_INFO(x,y).int_3 < ROCKET_PAD_STEEL_STORE) { if (get_steel (x, y, ROCKET_PAD_STEEL + 10) != 0) MP_INFO(x,y).int_3 += ROCKET_PAD_STEEL + 10; else if (get_steel (x, y, ROCKET_PAD_STEEL / 5) != 0) MP_INFO(x,y).int_3 += ROCKET_PAD_STEEL / 5; else if (get_steel (x, y, ROCKET_PAD_STEEL / 20) != 0) MP_INFO(x,y).int_3 += ROCKET_PAD_STEEL / 20; } #ifdef DEBUG_ROCKETS MP_INFO(x,y).int_4++; #else /* now build the rocket. Unlike uni's need a full store to make +1% */ if (MP_TYPE(x,y) < CST_ROCKET_5 && MP_INFO(x,y).int_1 >= ROCKET_PAD_JOBS_STORE && MP_INFO(x,y).int_2 >= ROCKET_PAD_GOODS_STORE && MP_INFO(x,y).int_3 >= ROCKET_PAD_STEEL_STORE) { MP_INFO(x,y).int_1 -= ROCKET_PAD_JOBS_STORE; MP_INFO(x,y).int_2 -= ROCKET_PAD_GOODS_STORE; MP_INFO(x,y).int_3 -= ROCKET_PAD_STEEL_STORE; MP_INFO(x,y).int_4++; goods_used += ROCKET_PAD_GOODS_STORE; } #endif rocket_pad_cost += ROCKET_PAD_RUNNING_COST; /* animate and return if already said no to launch */ if (MP_TYPE(x,y) >= CST_ROCKET_5 && MP_INFO(x,y).int_4 >= (100 * ROCKET_PAD_LAUNCH) / 100) { if (real_time >= MP_INFO(x,y).int_5) { MP_INFO(x,y).int_5 = real_time + ROCKET_ANIMATION_SPEED; switch (MP_TYPE(x,y)) { case (CST_ROCKET_5): MP_TYPE(x,y) = CST_ROCKET_6; break; case (CST_ROCKET_6): MP_TYPE(x,y) = CST_ROCKET_7; break; case (CST_ROCKET_7): MP_TYPE(x,y) = CST_ROCKET_5; break; } } return; } /* now choose a graphic */ if (MP_INFO(x,y).int_4 < (25 * ROCKET_PAD_LAUNCH) / 100) MP_TYPE(x,y) = CST_ROCKET_1; else if (MP_INFO(x,y).int_4 < (60 * ROCKET_PAD_LAUNCH) / 100) MP_TYPE(x,y) = CST_ROCKET_2; else if (MP_INFO(x,y).int_4 < (90 * ROCKET_PAD_LAUNCH) / 100) MP_TYPE(x,y) = CST_ROCKET_3; else if (MP_INFO(x,y).int_4 < (100 * ROCKET_PAD_LAUNCH) / 100) MP_TYPE(x,y) = CST_ROCKET_4; else if (MP_INFO(x,y).int_4 >= (100 * ROCKET_PAD_LAUNCH) / 100) { MP_TYPE(x,y) = CST_ROCKET_5; update_main_screen (0); if (ask_launch_rocket_now (x,y)) { launch_rocket (x,y); } /* so we don't get get our money back when we bulldoze. */ if (x == last_built_x && y == last_built_y) { x = 0; y = 0; } } } void launch_rocket (int x, int y) { int i, r, xx, yy, xxx, yyy; rockets_launched++; MP_TYPE(x,y) = CST_ROCKET_FLOWN; update_main_screen (0); r = rand () % MAX_TECH_LEVEL; if (r > tech_level || rand () % 100 > (rockets_launched * 15 + 25)) { /* the launch failed */ display_rocket_result_dialog (ROCKET_LAUNCH_BAD); rockets_launched_success = 0; xx = ((rand () % 40) - 20) + x; yy = ((rand () % 40) - 20) + y; for (i = 0; i < 20; i++) { xxx = ((rand () % 20) - 10) + xx; yyy = ((rand () % 20) - 10) + yy; if (xxx > 0 && xxx < WORLD_SIDE_LEN && yyy > 0 && yyy < WORLD_SIDE_LEN) { /* don't crash on it's own area */ if (xxx >= x && xxx < (x + 4) && yyy >= y && yyy < (y + 4)) continue; fire_area (xxx, yyy); /* make a sound perhaps */ } } } else { rockets_launched_success++; if (rockets_launched_success > 5) { remove_people (1000); if (people_pool || housed_population) display_rocket_result_dialog (ROCKET_LAUNCH_EVAC); } else { display_rocket_result_dialog (ROCKET_LAUNCH_GOOD); } } } void mps_rocket (int x, int y) { int i = 0; mps_store_title(i++,_("Rocket Pad")); i++; mps_store_title(i++,_("Completion")); mps_store_fp(i++, MP_INFO(x,y).int_4 * 100.0 / ROCKET_PAD_LAUNCH); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / ROCKET_PAD_JOBS_STORE); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / ROCKET_PAD_GOODS_STORE); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_3 * 100.0 / ROCKET_PAD_STEEL_STORE); } lincity-1.13.1/modules/rocket_pad.h0000644000175000017500000000075110066301721014124 00000000000000/* ---------------------------------------------------------------------- * * rocket_pad.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __rocket_pad_h__ #define __rocket_pad_h__ void do_rocket_pad(int x, int y); void launch_rocket(int x, int y); void mps_rocket (int x, int y); #endif /* __rocket_pad_h__ */ lincity-1.13.1/modules/monument.c0000644000175000017500000000425110071450322013643 00000000000000/* ---------------------------------------------------------------------- * * monument.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include void do_monument (int x, int y) { /* // int_1 holds the jobs used // int_2 holds the tech points made // int_3 holds the tail off count */ if (MP_INFO(x,y).int_1 < BUILD_MONUMENT_JOBS) if (get_jobs (x, y, MONUMENT_GET_JOBS) != 0) MP_INFO(x,y).int_1 += MONUMENT_GET_JOBS; /* now choose a graphic */ if (MP_INFO(x,y).int_1 >= BUILD_MONUMENT_JOBS) { MP_TYPE(x,y) = CST_MONUMENT_5; /* inc tech level only if fully built and tech less than MONUMENT_TECH_EXPIRE */ if (tech_level < (MONUMENT_TECH_EXPIRE * 1000) && (total_time % MONUMENT_DAYS_PER_TECH) == 1) { if (MP_INFO(x,y).int_3++ > (tech_level / 10000) - 2) { tech_level++; MP_INFO(x,y).int_2++; MP_INFO(x,y).int_3 = 0; } } } else if (MP_INFO(x,y).int_1 >= ((BUILD_MONUMENT_JOBS * 4) / 5)) MP_TYPE(x,y) = CST_MONUMENT_4; else if (MP_INFO(x,y).int_1 >= ((BUILD_MONUMENT_JOBS * 3) / 5)) MP_TYPE(x,y) = CST_MONUMENT_3; else if (MP_INFO(x,y).int_1 >= ((BUILD_MONUMENT_JOBS * 2) / 5)) MP_TYPE(x,y) = CST_MONUMENT_2; else if (MP_INFO(x,y).int_1 >= (BUILD_MONUMENT_JOBS / 20)) MP_TYPE(x,y) = CST_MONUMENT_1; else MP_TYPE(x,y) = CST_MONUMENT_0; } void mps_monument (int x, int y) { int i = 0; mps_store_title(i++,_("Monument")); i++; i++; /* Display tech contribution only after monument is complete */ if ((MP_INFO(x,y).int_1 * 100 / BUILD_MONUMENT_JOBS) >= 100) { mps_store_title(i++,_("Wisdom Bestowed")); i++; mps_store_f(i++, MP_INFO(x,y).int_2 * 100.0 / MAX_TECH_LEVEL); } else { mps_store_title(i++,_("% Complete")); i++; mps_store_fp(i++, MP_INFO(x,y).int_1 * 100.0 / BUILD_MONUMENT_JOBS); } } lincity-1.13.1/modules/monument.h0000644000175000017500000000067710066314411013662 00000000000000/* ---------------------------------------------------------------------- * * monument.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __monument_h__ #define __monument_h__ void do_monument(int x, int y); void mps_monument (int x, int y); #endif /* __monument_h__ */ lincity-1.13.1/modules/school.c0000644000175000017500000000401210071450124013263 00000000000000/* ---------------------------------------------------------------------- * * school.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_school (int x, int y) { /* // int_1 contains the job pool // int_2 contains the goods at the school // int_3 has the tech points made // int_4 is the tech count so far this 100 days // int_5 is the tech count last 100 days to give a % of max production */ if (MP_INFO(x,y).int_1 < (MAX_JOBS_AT_SCHOOL - SCHOOL_JOBS)) if (get_jobs (x, y, SCHOOL_JOBS) != 0) MP_INFO(x,y).int_1 += SCHOOL_JOBS; if (MP_INFO(x,y).int_2 < (MAX_GOODS_AT_SCHOOL - SCHOOL_GOODS)) if (get_goods (x, y, SCHOOL_GOODS) != 0) MP_INFO(x,y).int_2 += SCHOOL_GOODS; if (MP_INFO(x,y).int_1 >= JOBS_MAKE_TECH_SCHOOL && MP_INFO(x,y).int_2 >= GOODS_MAKE_TECH_SCHOOL) { MP_INFO(x,y).int_1 -= JOBS_MAKE_TECH_SCHOOL; MP_INFO(x,y).int_2 -= GOODS_MAKE_TECH_SCHOOL; MP_INFO(x,y).int_3 += TECH_MADE_BY_SCHOOL; MP_INFO(x,y).int_4++; tech_level += TECH_MADE_BY_SCHOOL; } school_cost += SCHOOL_RUNNING_COST; if ((total_time % 100) == 0) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_4; MP_INFO(x,y).int_4 = 0; } } void mps_school (int x, int y) { int i = 0; mps_store_title(i++,_("School")); i++; mps_store_title(i++,_("Lessons Learned")); mps_store_f(i++,MP_INFO(x,y).int_3 * 100.0 / MAX_TECH_LEVEL); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / MAX_JOBS_AT_SCHOOL); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / MAX_GOODS_AT_SCHOOL); mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_5 * 4); } lincity-1.13.1/modules/school.h0000644000175000017500000000066310066315475013315 00000000000000/* ---------------------------------------------------------------------- * * school.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __school_h__ #define __school_h__ void do_school(int x, int y); void mps_school (int x, int y); #endif /* __school_h__ */ lincity-1.13.1/modules/blacksmith.c0000644000175000017500000000563310066316540014136 00000000000000/* ---------------------------------------------------------------------- * * blacksmith.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_blacksmith (int x, int y) { /* // int_1 contains the goods at the blacksmith // int_2 contains the goods made - for the animation // int_3 contains the coal store // int_4 is the animation trigger time // int_5 is the % made so far this month // int_6 is the % capacity last month */ if (MP_INFO(x,y).int_3 < MAX_COAL_AT_BLACKSMITH) if (get_coal (x, y, BLACKSMITH_GET_COAL) != 0) MP_INFO(x,y).int_3 += BLACKSMITH_GET_COAL; if (MP_INFO(x,y).int_1 < MAX_GOODS_AT_BLACKSMITH && MP_INFO(x,y).int_3 >= BLACKSMITH_COAL_USED) { if (get_steel (x, y, BLACKSMITH_STEEL_USED) != 0) { MP_INFO(x,y).int_1 += GOODS_MADE_BY_BLACKSMITH; MP_INFO(x,y).int_3 -= BLACKSMITH_COAL_USED; } } if (get_jobs (x, y, BLACKSMITH_JOBS) != 0) { if (MP_INFO(x,y).int_1 > GOODS_MADE_BY_BLACKSMITH) { if (put_goods (x, y, GOODS_MADE_BY_BLACKSMITH - 1) != 0) { MP_INFO(x,y).int_1 -= (GOODS_MADE_BY_BLACKSMITH - 1); MP_INFO(x,y).int_2 += (GOODS_MADE_BY_BLACKSMITH - 1); MP_INFO(x,y).int_5++; } else put_jobs (x, y, BLACKSMITH_JOBS); } else put_jobs (x, y, BLACKSMITH_JOBS); } else MP_TYPE(x,y) = CST_BLACKSMITH_0; if (MP_INFO(x,y).int_2 > BLACKSMITH_BATCH && real_time >= MP_INFO(x,y).int_4) { MP_INFO(x,y).int_4 = real_time + BLACKSMITH_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_BLACKSMITH_0): MP_TYPE(x,y) = CST_BLACKSMITH_1; break; case (CST_BLACKSMITH_1): MP_TYPE(x,y) = CST_BLACKSMITH_2; break; case (CST_BLACKSMITH_2): MP_TYPE(x,y) = CST_BLACKSMITH_3; break; case (CST_BLACKSMITH_3): MP_TYPE(x,y) = CST_BLACKSMITH_4; break; case (CST_BLACKSMITH_4): MP_TYPE(x,y) = CST_BLACKSMITH_5; break; case (CST_BLACKSMITH_5): MP_TYPE(x,y) = CST_BLACKSMITH_6; break; case (CST_BLACKSMITH_6): MP_TYPE(x,y) = CST_BLACKSMITH_1; MP_INFO(x,y).int_2 = 0; MP_POL(x,y)++; break; } } if (total_time % 100 == 0) { MP_INFO(x,y).int_6 = MP_INFO(x,y).int_5; MP_INFO(x,y).int_5 = 0; } } void mps_blacksmith (int x, int y) { int i = 0; mps_store_title(i++,_("Blacksmith")); i++; mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_6); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_1 * 100.0 / MAX_GOODS_AT_BLACKSMITH); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_AT_BLACKSMITH); } lincity-1.13.1/modules/blacksmith.h0000644000175000017500000000071310066316223014133 00000000000000/* ---------------------------------------------------------------------- * * blacksmith.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __blacksmith_h__ #define __blacksmith_h__ void do_blacksmith(int x, int y); void mps_blacksmith (int x, int y); #endif /* __blacksmith_h__ */ lincity-1.13.1/modules/mill.c0000644000175000017500000000570110066317340012745 00000000000000/* ---------------------------------------------------------------------- * * mill.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_mill (int x, int y) { /* // int_1 contains the goods at the mill // int_2 contains the food store // int_3 contains the coal store // int_4 contains the animation trigger time // int_5 is the % count so far this month // int_6 is the % capacity last month */ /* get food */ int block_anim = 0; if (MP_INFO(x,y).int_2 < MAX_FOOD_AT_MILL) if (get_food (x, y, MILL_GET_FOOD) != 0) MP_INFO(x,y).int_2 += MILL_GET_FOOD; /* get coal */ if (MP_INFO(x,y).int_3 < MAX_COAL_AT_MILL) { if (get_coal (x, y, MILL_GET_COAL) != 0) MP_INFO(x,y).int_3 += MILL_GET_COAL; else if (get_power (x, y, MILL_GET_COAL * MILL_POWER_PER_COAL, 0) != 0) MP_INFO(x,y).int_3 += MILL_GET_COAL; } if (MP_INFO(x,y).int_1 < MAX_GOODS_AT_MILL) { if (MP_INFO(x,y).int_2 > FOOD_USED_BY_MILL && MP_INFO(x,y).int_3 > COAL_USED_BY_MILL) { if (get_jobs (x, y, MILL_JOBS) != 0) { MP_INFO(x,y).int_2 -= FOOD_USED_BY_MILL; MP_INFO(x,y).int_3 -= COAL_USED_BY_MILL; MP_INFO(x,y).int_1 += GOODS_MADE_BY_MILL; MP_INFO(x,y).int_5++; } else { MP_TYPE(x,y) = CST_MILL_0; block_anim = 1; } } else block_anim = 1; } if (MP_INFO(x,y).int_1 > 0) if (put_goods (x, y, MP_INFO(x,y).int_1) != 0) MP_INFO(x,y).int_1 = 0; if (total_time % 100 == 0) { MP_INFO(x,y).int_6 = MP_INFO(x,y).int_5; MP_INFO(x,y).int_5 = 0; } if (real_time >= MP_INFO(x,y).int_4 && block_anim == 0) { MP_INFO(x,y).int_4 = real_time + MILL_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_MILL_0): MP_TYPE(x,y) = CST_MILL_1; break; case (CST_MILL_1): MP_TYPE(x,y) = CST_MILL_2; break; case (CST_MILL_2): MP_TYPE(x,y) = CST_MILL_3; break; case (CST_MILL_3): MP_TYPE(x,y) = CST_MILL_4; break; case (CST_MILL_4): MP_TYPE(x,y) = CST_MILL_5; break; case (CST_MILL_5): MP_TYPE(x,y) = CST_MILL_6; break; case (CST_MILL_6): MP_TYPE(x,y) = CST_MILL_1; MP_POL(x,y)++; break; } } } void mps_mill (int x, int y) { int i = 0; mps_store_title(i++,_("Textile Mill")); i++; mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_6); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_1 * 100.0 / MAX_GOODS_AT_MILL); mps_store_sfp(i++,_("Food"), MP_INFO(x,y).int_2 * 100.0 / MAX_FOOD_AT_MILL); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_AT_MILL); } lincity-1.13.1/modules/mill.h0000644000175000017500000000064710066317030012752 00000000000000/* ---------------------------------------------------------------------- * * mill.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __mill_h__ #define __mill_h__ void do_mill(int x, int y); void mps_mill (int x, int y); #endif /* __mill_h__ */ lincity-1.13.1/modules/pottery.c0000644000175000017500000000721010071462351013512 00000000000000/* ---------------------------------------------------------------------- * * pottery.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_pottery (int x, int y) { /* // int_1 contains the goods at the pottery // int_2 contains the ore at the pottery // int_3 contains the coal at the pottery // int_4 is the animation trigger time // int_5 is the % made so far this month or the close time if negative // int_6 is the % capacity last month // int_7 contains the jobs stored at the pottery */ if (MP_INFO(x,y).int_5 < 0) { MP_INFO(x,y).int_5++; return; } if (MP_INFO(x,y).int_1 < (MAX_GOODS_AT_POTTERY - POTTERY_MADE_GOODS)) { if (MP_INFO(x,y).int_2 < (MAX_ORE_AT_POTTERY - POTTERY_GET_ORE)) if (get_ore (x, y, POTTERY_GET_ORE) != 0) MP_INFO(x,y).int_2 += POTTERY_GET_ORE; if (MP_INFO(x,y).int_3 < (MAX_COAL_AT_POTTERY - POTTERY_GET_COAL)) if (get_coal (x, y, POTTERY_GET_COAL) != 0) MP_INFO(x,y).int_3 += POTTERY_GET_COAL; if (MP_INFO(x,y).int_7 < (MAX_JOBS_AT_POTTERY - POTTERY_GET_JOBS)) if (get_jobs (x, y, POTTERY_GET_JOBS) != 0) MP_INFO(x,y).int_7 += POTTERY_GET_JOBS; if (MP_INFO(x,y).int_2 > POTTERY_ORE_MAKE_GOODS && MP_INFO(x,y).int_3 > POTTERY_COAL_MAKE_GOODS && MP_INFO(x,y).int_7 > POTTERY_JOBS) { MP_INFO(x,y).int_1 += POTTERY_MADE_GOODS; MP_INFO(x,y).int_2 -= POTTERY_ORE_MAKE_GOODS; MP_INFO(x,y).int_3 -= POTTERY_COAL_MAKE_GOODS; MP_INFO(x,y).int_7 -= POTTERY_JOBS; MP_INFO(x,y).int_5++; } else { MP_TYPE(x,y) = CST_POTTERY_1; MP_INFO(x,y).int_6 = 0; MP_INFO(x,y).int_5 = -POTTERY_CLOSE_TIME; return; } } if (MP_INFO(x,y).int_1 > 0) if (put_goods (x, y, MP_INFO(x,y).int_1) != 0) MP_INFO(x,y).int_1 = 0; if (total_time % 100 == 0) { MP_INFO(x,y).int_6 = MP_INFO(x,y).int_5; MP_INFO(x,y).int_5 = 0; } if (real_time >= MP_INFO(x,y).int_4 /* && block_anim==0 */ ) { MP_INFO(x,y).int_4 = real_time + POTTERY_ANIM_SPEED; switch (MP_TYPE(x,y)) { case (CST_POTTERY_0): MP_TYPE(x,y) = CST_POTTERY_1; break; case (CST_POTTERY_1): MP_TYPE(x,y) = CST_POTTERY_2; break; case (CST_POTTERY_2): MP_TYPE(x,y) = CST_POTTERY_3; break; case (CST_POTTERY_3): MP_TYPE(x,y) = CST_POTTERY_4; break; case (CST_POTTERY_4): MP_TYPE(x,y) = CST_POTTERY_5; break; case (CST_POTTERY_5): MP_TYPE(x,y) = CST_POTTERY_6; break; case (CST_POTTERY_6): MP_TYPE(x,y) = CST_POTTERY_7; break; case (CST_POTTERY_7): MP_TYPE(x,y) = CST_POTTERY_8; break; case (CST_POTTERY_8): MP_TYPE(x,y) = CST_POTTERY_9; break; case (CST_POTTERY_9): MP_TYPE(x,y) = CST_POTTERY_10; break; case (CST_POTTERY_10): MP_TYPE(x,y) = CST_POTTERY_1; MP_POL(x,y)++; break; } } } void mps_pottery (int x, int y) { int i = 0; mps_store_title(i++,_("Pottery")); i++; mps_store_sfp(i++,_("Capacity"), MP_INFO(x,y).int_6 * 1.0); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_7 * 100.0 / MAX_JOBS_AT_POTTERY); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_1 * 100.0 / MAX_GOODS_AT_POTTERY); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_2 * 100.0 / MAX_ORE_AT_POTTERY); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_AT_POTTERY); } lincity-1.13.1/modules/pottery.h0000644000175000017500000000067110066317434013530 00000000000000/* ---------------------------------------------------------------------- * * pottery.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __pottery_h__ #define __pottery_h__ void do_pottery(int x, int y); void mps_pottery (int x, int y); #endif /* __pottery_h__ */ lincity-1.13.1/modules/firestation.c0000644000175000017500000000714510066330466014347 00000000000000/* ---------------------------------------------------------------------- * * firestation.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_firestation (int x, int y) { /* // int_1 is the jobs stored at the fire station // int_2 is the goods stored at the fire station // int_3 is the animation flag // int_4 is the time of the next frame // int_5 is the pause counter */ /* XXX: should note whether we actually _produced_ fire cover in int_6 */ if (MP_INFO(x,y).int_1 < (MAX_JOBS_AT_FIRESTATION - FIRESTATION_GET_JOBS)) if (get_jobs (x, y, FIRESTATION_GET_JOBS) != 0) MP_INFO(x,y).int_1 += FIRESTATION_GET_JOBS; if (MP_INFO(x,y).int_2 < (MAX_GOODS_AT_FIRESTATION - FIRESTATION_GET_GOODS)) if (get_goods (x, y, FIRESTATION_GET_GOODS) != 0) MP_INFO(x,y).int_2 += FIRESTATION_GET_GOODS; /* animate */ if (MP_INFO(x,y).int_3 && real_time > MP_INFO(x,y).int_4) { MP_INFO(x,y).int_4 = real_time + FIRESTATION_ANIMATION_SPEED; if (MP_INFO(x,y).int_5 > 0) MP_INFO(x,y).int_5--; else { switch (MP_TYPE(x,y)) { case (CST_FIRESTATION_1): MP_TYPE(x,y) = CST_FIRESTATION_2; break; case (CST_FIRESTATION_2): MP_TYPE(x,y) = CST_FIRESTATION_3; break; case (CST_FIRESTATION_3): MP_TYPE(x,y) = CST_FIRESTATION_4; break; case (CST_FIRESTATION_4): MP_TYPE(x,y) = CST_FIRESTATION_5; break; case (CST_FIRESTATION_5): MP_TYPE(x,y) = CST_FIRESTATION_6; break; case (CST_FIRESTATION_6): MP_TYPE(x,y) = CST_FIRESTATION_7; MP_INFO(x,y).int_5 = 10; /* pause */ break; case (CST_FIRESTATION_7): MP_TYPE(x,y) = CST_FIRESTATION_8; break; case (CST_FIRESTATION_8): MP_TYPE(x,y) = CST_FIRESTATION_9; break; case (CST_FIRESTATION_9): MP_TYPE(x,y) = CST_FIRESTATION_10; break; case (CST_FIRESTATION_10): MP_TYPE(x,y) = CST_FIRESTATION_1; MP_INFO(x,y).int_3 = 0; /* stop */ break; } } } /* That's all. Cover is done by different functions every 3 months or so. */ fire_cost += FIRESTATION_RUNNING_COST; } void do_fire_cover (int x, int y) { int xx, x1, x2, y1, y2; if (MP_INFO(x,y).int_1 < (FIRESTATION_JOBS * DAYS_BETWEEN_COVER) || MP_INFO(x,y).int_2 < (FIRESTATION_GOODS * DAYS_BETWEEN_COVER)) return; MP_INFO(x,y).int_1 -= (FIRESTATION_JOBS * DAYS_BETWEEN_COVER); MP_INFO(x,y).int_2 -= (FIRESTATION_GOODS * DAYS_BETWEEN_COVER); MP_INFO(x,y).int_3 = 1; /* turn on animation */ x1 = x - FIRESTATION_RANGE; if (x1 < 0) x1 = 0; x2 = x + FIRESTATION_RANGE; if (x2 > WORLD_SIDE_LEN) x2 = WORLD_SIDE_LEN; y1 = y - FIRESTATION_RANGE; if (y1 < 0) y1 = 0; y2 = y + FIRESTATION_RANGE; if (y2 > WORLD_SIDE_LEN) y2 = WORLD_SIDE_LEN; for (; y1 < y2; y1++) for (xx = x1; xx < x2; xx++) MP_INFO(xx,y1).flags |= FLAG_FIRE_COVER; } void mps_firestation (int x, int y) { int i = 0; mps_store_title(i++,_("Fire Station")); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / MAX_JOBS_AT_FIRESTATION); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / MAX_GOODS_AT_FIRESTATION); } lincity-1.13.1/modules/firestation.h0000644000175000017500000000076310066330103014337 00000000000000/* ---------------------------------------------------------------------- * * firestation.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __firestation_h__ #define __firestation_h__ void do_firestation(int x, int y); void do_fire_cover(int x, int y); void mps_firestation (int x, int y); #endif /* __firestation_h__ */ lincity-1.13.1/modules/cricket.c0000644000175000017500000000561610066331041013433 00000000000000/* ---------------------------------------------------------------------- * * cricket.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_cricket (int x, int y) { /* // int_1 is the jobs stored at the pavillion // int_2 is the goods stored at the pavillion // int_3 is the animation flag // int_4 is the time of the next frame */ if (MP_INFO(x,y).int_1 < (MAX_JOBS_AT_CRICKET - CRICKET_GET_JOBS)) if (get_jobs (x, y, CRICKET_GET_JOBS) != 0) MP_INFO(x,y).int_1 += CRICKET_GET_JOBS; if (MP_INFO(x,y).int_2 < (MAX_GOODS_AT_CRICKET - CRICKET_GET_GOODS)) if (get_goods (x, y, CRICKET_GET_GOODS) != 0) MP_INFO(x,y).int_2 += CRICKET_GET_GOODS; /* animate */ if (MP_INFO(x,y).int_3 && real_time > MP_INFO(x,y).int_4) { MP_INFO(x,y).int_4 = real_time + CRICKET_ANIMATION_SPEED; switch (MP_TYPE(x,y)) { case (CST_CRICKET_1): MP_TYPE(x,y) = CST_CRICKET_2; break; case (CST_CRICKET_2): MP_TYPE(x,y) = CST_CRICKET_3; break; case (CST_CRICKET_3): MP_TYPE(x,y) = CST_CRICKET_4; break; case (CST_CRICKET_4): MP_TYPE(x,y) = CST_CRICKET_5; break; case (CST_CRICKET_5): MP_TYPE(x,y) = CST_CRICKET_6; break; case (CST_CRICKET_6): MP_TYPE(x,y) = CST_CRICKET_7; break; case (CST_CRICKET_7): MP_TYPE(x,y) = CST_CRICKET_1; MP_INFO(x,y).int_3 = 0; /* disable anim */ break; } } /* That's all. Cover is done by different functions every 3 months or so. */ cricket_cost += CRICKET_RUNNING_COST; } void do_cricket_cover (int x, int y) { int xx, x1, x2, y1, y2; if (MP_INFO(x,y).int_1 < (CRICKET_JOBS * DAYS_BETWEEN_COVER) || MP_INFO(x,y).int_2 < (CRICKET_GOODS * DAYS_BETWEEN_COVER)) return; MP_INFO(x,y).int_1 -= (CRICKET_JOBS * DAYS_BETWEEN_COVER); MP_INFO(x,y).int_2 -= (CRICKET_GOODS * DAYS_BETWEEN_COVER); MP_INFO(x,y).int_3 = 1; /* turn on animation */ x1 = x - CRICKET_RANGE; if (x1 < 0) x1 = 0; x2 = x + CRICKET_RANGE; if (x2 > WORLD_SIDE_LEN) x2 = WORLD_SIDE_LEN; y1 = y - CRICKET_RANGE; if (y1 < 0) y1 = 0; y2 = y + CRICKET_RANGE; if (y2 > WORLD_SIDE_LEN) y2 = WORLD_SIDE_LEN; for (; y1 < y2; y1++) for (xx = x1; xx < x2; xx++) MP_INFO(xx,y1).flags |= FLAG_CRICKET_COVER; } void mps_cricket (int x, int y) { int i = 0; mps_store_title(i++,_("Cricket Pitch")); i++; mps_store_title(i++,_("Inventory")); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_1 * 100.0 / MAX_JOBS_AT_CRICKET); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_2 * 100.0 / MAX_GOODS_AT_CRICKET); } lincity-1.13.1/modules/cricket.h0000644000175000017500000000073610066330551013443 00000000000000/* ---------------------------------------------------------------------- * * cricket.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __cricket_h__ #define __cricket_h__ void do_cricket(int x, int y); void do_cricket_cover(int x, int y); void mps_cricket (int x, int y); #endif /* __cricket_h__ */ lincity-1.13.1/modules/fire.c0000644000175000017500000000511610071462466012743 00000000000000/* ---------------------------------------------------------------------- * * fire.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void do_fire (int x, int y) { /* // int_1 is the next animation frame time // int_2 is the fire length // int_3 is the real_time before the fire can spread or -1 if triggered // int_4 is the idle land length */ int i; /* this so we don't get whole blocks changing in one go. */ if (MP_INFO(x,y).int_2 == 0) MP_INFO(x,y).int_2 = rand () % (FIRE_LENGTH / 5); if (MP_INFO(x,y).int_2 > FIRE_LENGTH) { if (MP_INFO(x,y).int_4 == 0) /* rand length here also */ MP_INFO(x,y).int_4 = rand () % (AFTER_FIRE_LENGTH / 6); MP_INFO(x,y).int_4++; if (MP_INFO(x,y).int_4 > AFTER_FIRE_LENGTH) do_bulldoze_area (CST_GREEN, x, y); else if (MP_INFO(x,y).int_4 > (3 * AFTER_FIRE_LENGTH) / 4) MP_TYPE(x,y) = CST_FIRE_DONE4; else if (MP_INFO(x,y).int_4 > (2 * AFTER_FIRE_LENGTH) / 4) MP_TYPE(x,y) = CST_FIRE_DONE3; else if (MP_INFO(x,y).int_4 > (AFTER_FIRE_LENGTH) / 4) MP_TYPE(x,y) = CST_FIRE_DONE2; else MP_TYPE(x,y) = CST_FIRE_DONE1; return; } MP_INFO(x,y).int_2++; if (real_time > MP_INFO(x,y).int_1) { MP_INFO(x,y).int_1 = real_time + FIRE_ANIMATION_SPEED; if (MP_TYPE(x,y) == CST_FIRE_1) MP_TYPE(x,y) = CST_FIRE_2; else if (MP_TYPE(x,y) == CST_FIRE_2) MP_TYPE(x,y) = CST_FIRE_3; else if (MP_TYPE(x,y) == CST_FIRE_3) MP_TYPE(x,y) = CST_FIRE_4; else if (MP_TYPE(x,y) == CST_FIRE_4) MP_TYPE(x,y) = CST_FIRE_5; else if (MP_TYPE(x,y) == CST_FIRE_5) MP_TYPE(x,y) = CST_FIRE_1; } if (MP_INFO(x,y).int_3 == -1) { if ((rand () % FIRE_DAYS_PER_SPREAD) == 1) { i = rand () % 4; switch (i) { case (0): do_random_fire (x - 1, y, 0); break; case (1): do_random_fire (x, y - 1, 0); break; case (2): do_random_fire (x + 1, y, 0); break; case (3): do_random_fire (x, y + 1, 0); break; } } } /* check here 'cos we can wait in the ok box for ever. */ else if (MP_INFO(x,y).int_3 == 0) MP_INFO(x,y).int_3 = real_time + 15000; /* 15 secs seem fair */ else if (real_time >= MP_INFO(x,y).int_3) MP_INFO(x,y).int_3 = -1; } lincity-1.13.1/modules/fire.h0000644000175000017500000000061110065765200012736 00000000000000/* ---------------------------------------------------------------------- * * fire.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __fire_h__ #define __fire_h__ void do_fire(int x, int y); #endif /* __fire_h__ */ lincity-1.13.1/modules/shanty.c0000644000175000017500000000635110071462557013327 00000000000000/* ---------------------------------------------------------------------- * * shanty.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include /* XXX: fire_area! */ #include #include void add_a_shanty (void) { int r, x, y; x = rand () % WORLD_SIDE_LEN; y = rand () % WORLD_SIDE_LEN; if (numof_shanties > 0 && rand () % 8 != 0) { r = spiral_find_group (x, y, GROUP_SHANTY); if (r == -1) { printf ("Looked for a shanty, without any! x=%d y=%d\n", x, y); return; } y = r / WORLD_SIDE_LEN; x = r % WORLD_SIDE_LEN; r = spiral_find_2x2 (x, y); if (r == -1) { #ifdef commentout /* wck: These are annoying when the map is full */ printf ("Adding a shanty (s), no space for it?!\n"); #endif return; } y = r / WORLD_SIDE_LEN; x = r % WORLD_SIDE_LEN; } else { r = spiral_find_group (x, y, GROUP_MARKET); if (r == -1) return; /* silently return, we havn't started yet. */ y = r / WORLD_SIDE_LEN; x = r % WORLD_SIDE_LEN; r = spiral_find_2x2 (x, y); if (r == -1) { #ifdef commentout /* see above */ printf ("Adding a shanty (r), no space for it?!\n"); #endif return; } y = r / WORLD_SIDE_LEN; x = r % WORLD_SIDE_LEN; } set_mappoint (x, y, CST_SHANTY); numof_shanties++; } void remove_a_shanty (void) { int x, y, r; if (numof_shanties <= 0) return; x = rand () % WORLD_SIDE_LEN; y = rand () % WORLD_SIDE_LEN; r = spiral_find_group (x, y, GROUP_SHANTY); if (r == -1) { printf ("Can't find a shanty to remove! ?\n"); return; } y = r / WORLD_SIDE_LEN; x = r % WORLD_SIDE_LEN; /* decrement of numof_shanties is done in fire area() */ fire_area (x, y); /* now put the fire out */ MP_INFO(x,y).int_2 = FIRE_LENGTH + 1; MP_INFO(x + 1,y).int_2 = FIRE_LENGTH + 1; MP_INFO(x,y + 1).int_2 = FIRE_LENGTH + 1; MP_INFO(x + 1,y + 1).int_2 = FIRE_LENGTH + 1; } void update_shanty (void) { int i, pp; pp = people_pool - (COMMUNE_POP * numof_communes); i = (pp - SHANTY_MIN_PP) / SHANTY_POP; if (i > numof_shanties) add_a_shanty (); /* vv-- schmitt trigger */ else if (numof_shanties > 0 && i < (numof_shanties - 1)) remove_a_shanty (); else if (numof_shanties > 0 && rand () % 100 == 10) remove_a_shanty (); /* randomly close some down. */ } void do_shanty (int x, int y) { /* just steal some stuff and make pollution. */ get_food (x, y, SHANTY_GET_FOOD); if (get_goods (x, y, SHANTY_GET_GOODS) != 0) if ((goods_tax -= SHANTY_GET_GOODS * 2) < 0) goods_tax = 0; get_ore (x, y, SHANTY_GET_ORE); get_steel (x, y, SHANTY_GET_STEEL); if (get_jobs (x, y, SHANTY_GET_JOBS) != 0) if ((income_tax -= SHANTY_GET_JOBS * 2) < 0) income_tax = 0; if (get_coal (x, y, SHANTY_GET_COAL) != 0) if ((coal_tax -= SHANTY_GET_COAL * 2) < 0) coal_tax = 0; if ((total_time & 1) == 0) MP_POL(x,y)++; else MP_POL(x+1,y+1)++; } lincity-1.13.1/modules/shanty.h0000644000175000017500000000074210065765551013335 00000000000000/* ---------------------------------------------------------------------- * * shanty.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __shanty_h__ #define __shanty_h__ void add_a_shanty(void); void remove_a_shanty(void); void update_shanty(void); void do_shanty(int x, int y); #endif /* __shanty_h__ */ lincity-1.13.1/modules/tip.c0000644000175000017500000000574610071462647012624 00000000000000/* ---------------------------------------------------------------------- * * tip.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include void do_tip (int x, int y) { /* // int_1 is the amount of waste on the site. // int_2 if the amount that has flowed in so far this month // int_3 is the amount stored last month. // int_4 counts up starting when tip fills, controlling how long until the land is useful again. */ int i; /* XXX: put this in a header somewhere */ /* If the tip is full, age it until it degrades into useful soil */ if (MP_TYPE(x,y) == CST_TIP_8) { MP_INFO(x,y).int_4++; if (MP_INFO(x,y).int_4 >= TIP_DEGRADE_TIME) { do_bulldoze_area(CST_GREEN,x,y); } return; } /* just grab as much as we can from transport */ if (x > 0 && (MP_INFO(x - 1,y).flags & FLAG_IS_TRANSPORT) != 0) { i = MP_INFO(x - 1,y).int_7 / 10; MP_INFO(x,y).int_1 += i; MP_INFO(x,y).int_2 += i; MP_INFO(x - 1,y).int_7 -= i * 10; sust_dig_ore_coal_tip_flag = 0; } if (y > 0 && (MP_INFO(x,y - 1).flags & FLAG_IS_TRANSPORT) != 0) { i = MP_INFO(x,y - 1).int_7 / 10; MP_INFO(x,y).int_1 += i; MP_INFO(x,y).int_2 += i; MP_INFO(x,y - 1).int_7 -= i * 10; sust_dig_ore_coal_tip_flag = 0; } #if defined (commentout) /* Increment the "ore" reserve; this prevents a new tip from being built on top of a degraded one. */ MP_INFO(x,y).ore_reserve++; #endif /* now choose an icon. */ if ((total_time % NUMOF_DAYS_IN_MONTH) == 0) { i = (MP_INFO(x,y).int_1 * 7) / MAX_WASTE_AT_TIP; if (MP_INFO(x,y).int_1 > 0) i++; switch (i) { case (0): MP_TYPE(x,y) = CST_TIP_0; break; case (1): MP_TYPE(x,y) = CST_TIP_1; break; case (2): MP_TYPE(x,y) = CST_TIP_2; break; case (3): MP_TYPE(x,y) = CST_TIP_3; break; case (4): MP_TYPE(x,y) = CST_TIP_4; break; case (5): MP_TYPE(x,y) = CST_TIP_5; break; case (6): MP_TYPE(x,y) = CST_TIP_6; break; case (7): MP_TYPE(x,y) = CST_TIP_7; break; case (8): MP_TYPE(x,y) = CST_TIP_8; MP_INFO(x,y).int_2 = 0; MP_INFO(x,y).int_4 = 0; break; } MP_INFO(x,y).int_3 = MP_INFO(x,y).int_2; MP_INFO(x,y).int_2 = 0; } } void mps_tip (int x, int y) { int i = 0; mps_store_title(i++,_("Landfill")); i++; mps_store_title(i++,_("Last Month")); mps_store_sd(i++,_("Tons"), MP_INFO(x,y).int_3); mps_store_sfp(i++,_("Percent"), MP_INFO(x,y).int_3 * 100.0 / MAX_WASTE_AT_TIP); i++; mps_store_title(i++,_("% Filled")); mps_store_fp(i++, MP_INFO(x,y).int_1 * 100.0 / MAX_WASTE_AT_TIP); } lincity-1.13.1/modules/tip.h0000644000175000017500000000064110066325331012606 00000000000000/* ---------------------------------------------------------------------- * * tip.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __tip_h__ #define __tip_h__ void do_tip(int x, int y); void mps_tip (int x, int y); #endif /* __tip_h__ */ lincity-1.13.1/modules/substation.c0000644000175000017500000000525710071461077014214 00000000000000/* ---------------------------------------------------------------------- * * substation.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include #include /*** Substations ***/ /* int_5 is the power demand at this substation int_6 is the grid its connected to int_7 is a grid timestamp */ void do_power_substation (int x, int y) { switch(grid[MP_INFO(x,y).int_6]->powered) { case -1: { MP_TYPE(x,y) = CST_SUBSTATION_R; } break; case 0 : { MP_TYPE(x,y) = CST_SUBSTATION_RG; } break; case 1 : { MP_TYPE(x,y) = CST_SUBSTATION_G; } break; default : { printf("Default case in do_power_substation\n"); } break; } } int add_a_substation (int x, int y) /* add to substationx substationy to list */ { if (numof_substations >= MAX_NUMOF_SUBSTATIONS) return (0); substationx[numof_substations] = x; substationy[numof_substations] = y; numof_substations++; return (1); } void remove_a_substation (int x, int y) { int q; for (q = 0; q < numof_substations; q++) if (substationx[q] == x && substationy[q] == y) break; for (; q < numof_substations; q++) { substationx[q] = substationx[q + 1]; substationy[q] = substationy[q + 1]; } numof_substations--; } void shuffle_substations (void) { int q, x, r, m; m = (numof_substations / 2) + 1; for (x = 0; x < m; x++) { r = rand () % numof_substations; if (r == x) continue; q = substationx[x]; substationx[x] = substationx[r]; substationx[r] = q; q = substationy[x]; substationy[x] = substationy[r]; substationy[r] = q; } } void mps_substation (int x, int y) { int i = 0; char s[12]; mps_store_title(i++,_("Substation")); i++; format_power (s, sizeof(s), MP_INFO(x,y).int_5); mps_store_title(i++,_("Local Demand")); mps_store_title(i++,s); i++; mps_store_title(i++,_("Grid Status")); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->max_power); mps_store_ss(i++,_("T. Cap."), s); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->avail_power); mps_store_ss(i++,_("A. Cap."), s); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->demand); mps_store_ss(i++,_("Demand"), s); i++; mps_store_sd(i++,_("Grid ID"), MP_INFO(x,y).int_6); } lincity-1.13.1/modules/substation.h0000644000175000017500000000107710066272645014222 00000000000000/* ---------------------------------------------------------------------- * * substation.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __substation_h__ #define __substation_h__ void do_power_substation(int x, int y); int add_a_substation(int x, int y); void remove_a_substation(int x, int y); void shuffle_substations(void); void mps_substation (int x, int y); #endif /* __substation_h__ */ lincity-1.13.1/modules/windmill.c0000644000175000017500000000573210066314220013625 00000000000000/* ---------------------------------------------------------------------- * * windmill.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include /*** Windmills ***/ /* // int_1 is the rated capacity // int_2 is the tech level when built // int_3 is the sail count - to choose the right sail. // int_4 is the last real time that a sail was turned // int_5 is the power produced (basically _if_ power produced) // int_6 is the grid it's on // int_7 is a timestamp for mapping */ void do_windmill (int x, int y) { int anim_tile; if (get_jobs (x, y, WINDMILL_JOBS) != 0) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_1; grid[MP_INFO(x,y).int_6]->avail_power += MP_INFO(x,y).int_1; } else { MP_INFO(x,y).int_4 = real_time + MODERN_WINDMILL_ANIM_SPEED; return; } /* update animation */ if (real_time > MP_INFO(x,y).int_4) { MP_INFO(x,y).int_3++; if (MP_INFO(x,y).int_2 < MODERN_WINDMILL_TECH) { MP_INFO(x,y).int_4 = real_time + ANTIQUE_WINDMILL_ANIM_SPEED; } else { MP_INFO(x,y).int_4 = real_time + MODERN_WINDMILL_ANIM_SPEED; } } /* figure out which tile to use */ anim_tile = (MP_INFO(x,y).int_3 % 3); if (MP_INFO(x,y).int_2 < MODERN_WINDMILL_TECH) MP_TYPE(x,y) = CST_WINDMILL_1_W + anim_tile; else switch(grid[MP_INFO(x,y).int_6]->powered) { case -1: MP_TYPE(x,y) = CST_WINDMILL_1_R + anim_tile; break; case 0 : MP_TYPE(x,y) = CST_WINDMILL_1_RG + anim_tile; break; case 1 : MP_TYPE(x,y) = CST_WINDMILL_1_G + anim_tile; break; default : printf("Default case in do_power_substation\n"); break; } } void mps_windmill (int x, int y) { int i = 0; char s[12]; mps_store_title(i++,_("Windmill")); i++; if (MP_INFO(x,y).int_2 < MODERN_WINDMILL_TECH) { mps_store_sfp(i++,_("Tech"), MP_INFO(x,y).int_2 * 100.0 / MAX_TECH_LEVEL); } else { mps_store_title(i++,_("Local Status")); format_power (s, sizeof(s), MP_INFO(x,y).int_1); mps_store_ss(i++,_("Prod."),s); format_power (s, sizeof(s), MP_INFO(x,y).int_5); mps_store_ss(i++,_("Demand"),s); mps_store_sfp(i++,_("Tech"), MP_INFO(x,y).int_2 * 100.0 / MAX_TECH_LEVEL); i++; mps_store_title(i++,_("Grid Status")); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->max_power); mps_store_ss(i++,_("T. Cap."), s); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->avail_power); mps_store_ss(i++,_("A. Cap."), s); format_power (s, sizeof(s), grid[MP_INFO(x,y).int_6]->demand); mps_store_ss(i++,_("Demand"), s); i++; mps_store_sd(i++,_("Grid ID"), MP_INFO(x,y).int_6); } } lincity-1.13.1/modules/windmill.h0000644000175000017500000000067610066312726013645 00000000000000/* ---------------------------------------------------------------------- * * windmill.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __windmill_h__ #define __windmill_h__ void do_windmill(int x, int y); void mps_windmill(int x, int y); #endif /* __windmill_h__ */ lincity-1.13.1/modules/solar_power.c0000644000175000017500000000317610071462717014355 00000000000000/* ---------------------------------------------------------------------- * * solar_power.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include /*** Solar Power ***/ /* int_1 is the power to give away, this must be >= POWER_LINE_CAPACITY for it to pass it to a power line. Not added to if > POWER_LINE_CAPACITY int_2 is the tech level when it was built. int_3 is the rated output int_5 is the current output int_6 is the grid it's on int_7 is a grid mapping timestamp */ void do_power_source (int x, int y) { if (get_jobs(x, y, SOLAR_POWER_JOBS)) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_3; grid[MP_INFO(x,y).int_6]->avail_power += MP_INFO(x,y).int_3; } else { MP_INFO(x,y).int_5 = 0; } } void mps_solar_power (int x, int y) { int i = 0; char s[12]; mps_store_title(i++,_("Solar")); mps_store_title(i++,_("Power Station")); i++; format_power (s, sizeof(s), MP_INFO(x,y).int_3); mps_store_title(i++,_("Max Output")); mps_store_title(i++,s); i++; format_power (s, sizeof(s), MP_INFO(x,y).int_5); mps_store_title(i++,_("Current Output")); mps_store_title(i++,s); i++; mps_store_sfp(i++,_("Tech"), MP_INFO(x,y).int_2 * 100.0 / MAX_TECH_LEVEL); mps_store_sd(i++,_("Grid ID"), MP_INFO(x,y).int_6); } lincity-1.13.1/modules/solar_power.h0000644000175000017500000000072110066267766014366 00000000000000/* ---------------------------------------------------------------------- * * solar_power.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __solar_power_h__ #define __solar_power_h__ void do_power_source(int x, int y); void mps_solar_power(int x, int y); #endif /* __solar_power_h__ */ lincity-1.13.1/modules/coal_power.c0000644000175000017500000000655110071463006014143 00000000000000/* ---------------------------------------------------------------------- * * coal_power.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include #include #include /* XXX: This seems to be an anomaly; no other modules use XY_IS_TRANSPORT */ /*** Coal Power ***/ /* // int_1 is the maximum possible power // int_2 is the coal at the power station // int_3 is the stored jobs... Must be an interesting warehouse // int_4 is the tech level when built // int_5 is the projected output. */ void do_power_source_coal (int x, int y) { /* Need coal? Try transport. */ if (MP_INFO(x,y).int_2 < MAX_COAL_AT_POWER_STATION) { /* left side */ if (XY_IS_TRANSPORT(x-1, y+1) && MP_INFO(x-1, y+1).int_3 > 0) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) { MP_INFO(x,y).int_2 += (MP_INFO(x-1, y+1).int_3 / 2 + ((MP_INFO(x-1, y+1).int_3) % 2)); MP_INFO(x-1, y+1).int_3 /= 2; MP_POL(x,y)++; } } /* top side */ else if (XY_IS_TRANSPORT(x+1, y-1) && MP_INFO(x+1, y-1).int_3 > 0) { if (get_jobs (x, y, JOBS_LOAD_COAL) != 0) MP_INFO(x,y).int_2 += (MP_INFO(x+1, y-1).int_3 / 2 + ((MP_INFO(x+1, y-1).int_3) % 2)); MP_INFO(x + 1,y - 1).int_3 /= 2; MP_POL(x,y)++; } } /* Need jobs? get_jobs. */ if ((MP_INFO(x,y).int_3 + JOBS_COALPS_GENERATE + 10) < MAX_JOBS_AT_COALPS) if (get_jobs (x, y, JOBS_COALPS_GENERATE + 10) != 0) MP_INFO(x,y).int_3 += JOBS_COALPS_GENERATE + 10; /* Generate Power */ if (MP_INFO(x,y).int_2 > POWERS_COAL_OUTPUT / 500 && MP_INFO(x,y).int_3 > JOBS_COALPS_GENERATE) { MP_INFO(x,y).int_5 = MP_INFO(x,y).int_1; MP_INFO(x,y).int_3 -= JOBS_COALPS_GENERATE; MP_INFO(x,y).int_2 -= POWERS_COAL_OUTPUT / 500; coal_used += POWERS_COAL_OUTPUT / 500; MP_POL(x,y) += POWERS_COAL_POLLUTION; grid[MP_INFO(x,y).int_6]->avail_power += MP_INFO(x,y).int_1; } /* Animation */ /* choose a graphic */ if (MP_INFO(x,y).int_2 > (MAX_COAL_AT_POWER_STATION - (MAX_COAL_AT_POWER_STATION / 5))) MP_TYPE(x,y) = CST_POWERS_COAL_FULL; else if (MP_INFO(x,y).int_2 > (MAX_COAL_AT_POWER_STATION / 2)) MP_TYPE(x,y) = CST_POWERS_COAL_MED; else if (MP_INFO(x,y).int_2 > (MAX_COAL_AT_POWER_STATION / 10)) MP_TYPE(x,y) = CST_POWERS_COAL_LOW; else MP_TYPE(x,y) = CST_POWERS_COAL_EMPTY; } void mps_coal_power (int x, int y) { int i = 0; char s[12]; mps_store_title(i++,_("Coal")); mps_store_title(i++,_("Power Station")); i++; format_power (s, sizeof(s), MP_INFO(x,y).int_1); mps_store_title(i++,_("Max Output")); mps_store_title(i++,s); i++; format_power (s, sizeof(s), MP_INFO(x,y).int_5); mps_store_title(i++,_("Current Output")); mps_store_title(i++,s); i++; mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_2 * 100.0 / MAX_COAL_AT_POWER_STATION); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_3 * 100.0 / MAX_JOBS_AT_COALPS); mps_store_sfp(i++,_("Tech"), MP_INFO(x,y).int_4 * 100.0 / MAX_TECH_LEVEL); mps_store_sd(i++,_("Grid ID"), MP_INFO(x,y).int_6); } lincity-1.13.1/modules/coal_power.h0000644000175000017500000000071610066265532014155 00000000000000/* ---------------------------------------------------------------------- * * coal_power.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __coal_power_h__ #define __coal_power_h__ void do_power_source_coal(int x, int y); void mps_coal_power (int, int); #endif /* __coal_power_h__ */ lincity-1.13.1/modules/power_line.c0000644000175000017500000000230210071463102014137 00000000000000/* ---------------------------------------------------------------------- * * power_line.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include /*** Power Lines ***/ /* int_5 is animation schedule int_6 is the grid it is on int_7 is a grid timestamp */ void do_power_line (int x, int y) { if (grid[MP_INFO(x,y).int_6]->powered == -1) return; switch(MP_INFO(x,y).int_5) { case 0: MP_INFO(x,y).int_5 = POWER_MODULUS; break; case 1: if (!(MP_TYPE(x,y) <= 11 && MP_TYPE(x,y) >= 1)) break; MP_TYPE(x,y) += 11; break; case 2: if (!(MP_TYPE(x,y) >= 11 && MP_TYPE(x,y) <= 22)) break; MP_TYPE(x,y) -= 11; break; } MP_INFO(x,y).int_5--; } void mps_power_line (int x, int y) { int i = 0; mps_store_title(i++,_("Power Line")); i++; mps_store_sd(i++,_("Grid ID"),MP_INFO(x,y).int_6); } lincity-1.13.1/modules/power_line.h0000644000175000017500000000071310066272212014154 00000000000000/* ---------------------------------------------------------------------- * * power_line.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __power_line_h__ #define __power_line_h__ void do_power_line(int x, int y); void mps_power_line (int x, int y); #endif /* __power_line_h__ */ lincity-1.13.1/modules/track.c0000644000175000017500000000337110071463145013116 00000000000000/* ---------------------------------------------------------------------- * * track.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include /* --------------------------------------------------------------------- For track, road and rail: int_1 contains the amount of food int_2 contains the amount of jobs int_3 contains the amount of coal int_4 contains the amount of goods int_5 contains the amount of ore int_6 contains the amount of steel int_7 contains the amount of waste --------------------------------------------------------------------- */ void do_track (int x, int y) { static int wb_count = 0; general_transport (&MP_INFO(x,y), &MP_POL(x,y), MAX_WASTE_ON_TRACK, &wb_count); } void mps_track (int x, int y) { int i = 0; mps_store_title(i++,_("Track")); i++; mps_store_sfp(i++,_("Food"), MP_INFO(x,y).int_1 * 100.0 / MAX_FOOD_ON_TRACK); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_2 * 100.0 / MAX_JOBS_ON_TRACK); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_ON_TRACK); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_4 * 100.0 / MAX_GOODS_ON_TRACK); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_5 * 100.0 / MAX_ORE_ON_TRACK); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_6 * 100.0 / MAX_STEEL_ON_TRACK); mps_store_sfp(i++,_("Waste"), MP_INFO(x,y).int_7 * 100.0 / MAX_WASTE_ON_TRACK); } lincity-1.13.1/modules/track.h0000644000175000017500000000065410066246461013130 00000000000000/* ---------------------------------------------------------------------- * * track.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __track_h__ #define __track_h__ void do_track(int x, int y); void mps_track(int x, int y); #endif /* __track_h__ */ lincity-1.13.1/modules/rail.c0000644000175000017500000000413510071463202012732 00000000000000/* ---------------------------------------------------------------------- * * rail.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include /* --------------------------------------------------------------------- For track, road and rail: int_1 contains the amount of food int_2 contains the amount of jobs int_3 contains the amount of coal int_4 contains the amount of goods int_5 contains the amount of ore int_6 contains the amount of steel int_7 contains the amount of waste --------------------------------------------------------------------- */ void do_rail (int x, int y) { static int wb_count = 0; int *pol = &MP_POL(x,y); Map_Point_Info *minfo = &MP_INFO(x,y); transport_cost += 3; if (total_time % DAYS_PER_RAIL_POLLUTION == 0) *pol += RAIL_POLLUTION; if ((total_time & RAIL_GOODS_USED_MASK) == 0 && minfo->int_4 > 0) { --minfo->int_4; ++minfo->int_7; } if ((total_time & RAIL_STEEL_USED_MASK) == 0 && minfo->int_6 > 0) { --minfo->int_6; ++minfo->int_7; } general_transport (minfo, pol, MAX_WASTE_ON_RAIL, &wb_count); } void mps_rail (int x, int y) { int i = 0; mps_store_title(i++,_("Rail")); i++; mps_store_sfp(i++,_("Food"), MP_INFO(x,y).int_1 * 100.0 / MAX_FOOD_ON_RAIL); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_2 * 100.0 / MAX_JOBS_ON_RAIL); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_ON_RAIL); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_4 * 100.0 / MAX_GOODS_ON_RAIL); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_5 * 100.0 / MAX_ORE_ON_RAIL); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_6 * 100.0 / MAX_STEEL_ON_RAIL); mps_store_sfp(i++,_("Waste"), MP_INFO(x,y).int_7 * 100.0 / MAX_WASTE_ON_RAIL); } lincity-1.13.1/modules/rail.h0000644000175000017500000000064610066246471012755 00000000000000/* ---------------------------------------------------------------------- * * rail.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __rail_h__ #define __rail_h__ void do_rail(int x, int y); void mps_rail(int x, int y); #endif /* __rail_h__ */ lincity-1.13.1/modules/road.c0000644000175000017500000000375310071463165012745 00000000000000/* ---------------------------------------------------------------------- * * road.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include #include /* --------------------------------------------------------------------- For track, road and rail: int_1 contains the amount of food int_2 contains the amount of jobs int_3 contains the amount of coal int_4 contains the amount of goods int_5 contains the amount of ore int_6 contains the amount of steel int_7 contains the amount of waste --------------------------------------------------------------------- */ void do_road (int x, int y) { static int wb_count = 0; int *pol = &MP_POL(x,y); Map_Point_Info *minfo = &MP_INFO(x,y); ++transport_cost; if (total_time % DAYS_PER_ROAD_POLLUTION == 0) *pol += ROAD_POLLUTION; if ((total_time & ROAD_GOODS_USED_MASK) == 0 && minfo->int_4 > 0) { --minfo->int_4; ++minfo->int_7; } general_transport (minfo, pol, MAX_WASTE_ON_ROAD, &wb_count); } void mps_road (int x, int y) { int i = 0; mps_store_title(i++,_("Road")); i++; mps_store_sfp(i++,_("Food"), MP_INFO(x,y).int_1 * 100.0 / MAX_FOOD_ON_ROAD); mps_store_sfp(i++,_("Jobs"), MP_INFO(x,y).int_2 * 100.0 / MAX_JOBS_ON_ROAD); mps_store_sfp(i++,_("Coal"), MP_INFO(x,y).int_3 * 100.0 / MAX_COAL_ON_ROAD); mps_store_sfp(i++,_("Goods"), MP_INFO(x,y).int_4 * 100.0 / MAX_GOODS_ON_ROAD); mps_store_sfp(i++,_("Ore"), MP_INFO(x,y).int_5 * 100.0 / MAX_ORE_ON_ROAD); mps_store_sfp(i++,_("Steel"), MP_INFO(x,y).int_6 * 100.0 / MAX_STEEL_ON_ROAD); mps_store_sfp(i++,_("Waste"), MP_INFO(x,y).int_7 * 100.0 / MAX_WASTE_ON_ROAD); } lincity-1.13.1/modules/road.h0000644000175000017500000000064610066246260012747 00000000000000/* ---------------------------------------------------------------------- * * road.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __road_h__ #define __road_h__ void do_road(int x, int y); void mps_road(int x, int y); #endif /* __road_h__ */ lincity-1.13.1/modules/water.c0000644000175000017500000000131210066321265013125 00000000000000/* ---------------------------------------------------------------------- * * water.c * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #include void mps_water (int x, int y) { int i = 0; char * p; mps_store_title(i++,_("Water")); i++; p = (MP_INFO(x,y).flags & FLAG_IS_RIVER) ? _("Yes") : _("No"); mps_store_ss(i++,_("Navigable"),p); } lincity-1.13.1/modules/water.h0000644000175000017500000000062010066320454013132 00000000000000/* ---------------------------------------------------------------------- * * water.h * This file is part of lincity. * Lincity is copyright (c) I J Peters 1995-1997, (c) Greg Sharp 1997-2001. * (c) Corey Keasling, 2004 * ---------------------------------------------------------------------- */ #ifndef __water_h__ #define __water_h__ void mps_water (int x, int y); #endif /* __water_h__ */