OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /or1k/trunk/insight/itcl/itk/win
    from Rev 578 to Rev 1765
    Reverse comparison

Rev 578 → Rev 1765

/makefile.bc
0,0 → 1,228
# Borland C++ 4.52 makefile
#
# Copyright (c) 1993-1996 Lucent Technologies
# based on original from
# Copyright (c) 1995-1996 by Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 
!include "..\..\Makefile.bc"
 
#
# Project directories
#
# ROOT = top of source tree
# TMPDIR = location where .obj files should be stored during build
 
ROOT = ..
TMPDIR = .
TARGET_LIB_ITK = $(TARGET_LIB)\Itk2.2
TARGET_DOC_ITK = $(TARGET_DOC)\Itk
 
# uncomment the following line to compile with symbols
#DEBUG=1
 
# uncomment the following two lines to compile with TCL_MEM_DEBUG
#DEBUGDEFINES =TCL_MEM_DEBUG
 
 
INCLUDES =$(BORLAND)\include;$(ROOT)\generic;$(ROOT);$(TCLDIR)\generic;$(ITCLDIR)\generic;$(TKDIR)\generic;$(TKDIR)\xlib;$(TKDIR)\bitmaps
LIBDIRS =$(BORLAND)\lib;$(ROOT)\win
 
!ifndef DEBUG
 
# these macros cause maximum optimization and no symbols
DEBUGLDFLAGS =
DEBUGCCFLAGS = -v- -vi- -O2
 
!else
 
# these macros enable debugging
DEBUGLDFLAGS = -v
DEBUGCCFLAGS = -k -Od -v
 
!endif
 
DEFINES = _RTLDLL;USE_TCLALLOC=0;STRICT;$(DEBUGDEFINES);ITCL_NAMESPACES=1
PROJECTCCFLAGS= $(DEBUGCCFLAGS) -w-par -w-stu
 
LNFLAGS_exe = -Tpe -aa -c $(DEBUGLDFLAGS) $(BORLAND)\lib\c0w32
LNFLAGS_dll = -Tpd -aa -c $(DEBUGLDFLAGS) $(BORLAND)\lib\c0d32
 
LNLIBS_exe = $(ITKLIB) $(ITCLLIBDIR)\$(ITCLLIB) $(TKLIBDIR)\$(TKLIB) $(TCLLIBDIR)\$(TCLLIB) import32 cw32i
LNLIBS_dll = $(ITCLLIBDIR)\$(ITCLLIB) $(TKLIBDIR)\$(TKLIB) $(TCLLIBDIR)\$(TCLLIB) import32 cw32i
 
#
# Global makefile settings
#
 
.AUTODEPEND
.CACHEAUTODEPEND
 
.suffixes: .c .dll .lib .obj .exe
 
.path.c=$(ROOT)\win;$(ROOT)\generic;
.path.obj=$(TMPDIR)
 
ITKWISHOBJS = \
$(TKLIBDIR)\tkConsole.obj \
$(TMPDIR)\winMain.obj
 
ITKOBJS = \
$(TMPDIR)\itk_archetype.obj \
$(TMPDIR)\itk_cmds.obj \
$(TMPDIR)\itk_option.obj \
$(TMPDIR)\itk_util.obj \
$(TMPDIR)\dllEntryPoint.obj
 
ITKWISH = itkwish.exe
 
 
#
# Targets
#
 
all: cfgdll $(ITKDLL) cfgexe $(ITKWISH) cfgcln
test: $(ITKWISH)
$(CP) $(TCLLIBDIR)\*.dll
$(CP) $(TKLIBDIR)\*.dll
$(CP) $(ITCLLIBDIR)\*.dll
#set ITK_
$(ITKWISH) <<|
cd ..\tests
source all
exit
|
 
install: all
$(MKDIR) "$(TARGET_ROOT)"
$(MKDIR) "$(TARGET_BIN)"
$(MKDIR) "$(TARGET_LIB_ROOT)"
$(MKDIR) "$(TARGET_LIB)"
$(MKDIR) "$(TARGET_LIB_ITK)"
$(MKDIR) "$(TARGET_INCLUDE_ROOT)"
$(MKDIR) "$(TARGET_INCLUDE)"
$(MKDIR) "$(TARGET_DOC)"
$(MKDIR) "$(TARGET_DOC_ITK)"
$(CP) $(TMPDIR)\$(ITKWISH) "$(TARGET_BIN)"
$(CP) $(TMPDIR)\$(ITKDLL) "$(TARGET_BIN)"
$(CP) $(ROOT)\generic\itk.h "$(TARGET_INCLUDE)"
$(CP) $(ROOT)\library\*.* "$(TARGET_LIB_ITK)"
$(CP) $(ROOT)\win\*.tcl "$(TARGET_LIB_ITK)"
$(CP) $(ROOT)\..\html\Itk\*.* "$(TARGET_DOC_ITK)"
 
# Implicit Targets
 
.c.obj:
@$(BCC32) {$< }
 
.dll.lib:
$(IMPLIB) -c $@ $<
 
.rc.res:
$(RC) -i$(ROOT)\generic;$(ITCLDIR)\generic;$(TCLDIR)\generic;$(TKDIR)\generic $<
 
#
# Special case object file targets
#
 
#
# Configuration file targets - these files are implicitly used by the compiler
#
 
cfgdll:
@$(CP) &&|
-n$(TMPDIR) -I$(INCLUDES) -c -WD
-D$(DEFINES) -3 -d $(PROJECTCCFLAGS)
| bcc32.cfg >NUL
 
cfgexe:
@$(CP) &&|
-n$(TMPDIR) -I$(INCLUDES) -c -W
-D$(DEFINES) -3 -d $(PROJECTCCFLAGS)
| bcc32.cfg >NUL
 
cfgtest:
@$(CP) &&|
-n$(TMPDIR) -I$(INCLUDES) -c -W
-D$(DEFINES);TCL_TEST -3 -d $(PROJECTCCFLAGS)
| bcc32.cfg >NUL
 
cfgcln:
@$(RM) bcc32.cfg
 
#
# Executable targets
#
 
$(ITKDLL): $(ITKOBJS) itk.def rc\itk.res
$(TLINK32) @&&|
$(LNFLAGS_dll) $(ITKOBJS)
$@
-x
$(LNLIBS_dll)
itk.def
rc\itk.res
|
 
$(ITKWISH): $(ITKWISHOBJS) $(ITKLIB) rc\itkwish.res
$(TLINK32) @&&|
$(LNFLAGS_exe) $(ITKWISHOBJS)
$@
-x
$(LNLIBS_exe)
|, &&|
EXETYPE WINDOWS
CODE PRELOAD MOVEABLE DISCARDABLE
DATA PRELOAD MOVEABLE MULTIPLE
|, rc\itkwish.res
 
#
# Other dependencies
#
 
 
# The following rule automatically generates a tk.def file containing
# an export entry for every public symbol in the $(TKDLL) library.
 
itk.def: $(ITKOBJS)
$(TCLLIBDIR)\dumpexts.exe -o $@ $(ITKDLL) @&&|
$(ITKOBJS)
|
 
# Dependencies for .rc files:
rc\itk.res: rc\*.cur rc\itk.ico
rc\itkwish.res: rc\*.cur rc\itk.ico
 
# debugging rules, the .dll and .exe files must be in the same
# directory as the object files for debugging purposes
 
$(TMPDIR)\$(ITKDLL): $(ITKDLL)
$(CP) $(ITKDLL) $(TMPDIR)
 
$(TMPDIR)\$(ITCLDLL): $(ITCLLIBDIR)\$(ITCLDLL)
$(CP) $(ITCLLIBDIR)\$(ITCLDLL) $(TMPDIR)
 
$(TMPDIR)\$(TKDLL): $(TKLIBDIR)\$(TKDLL)
$(CP) $(TKLIBDIR)\$(TKDLL) $(TMPDIR)
 
$(TMPDIR)\$(TCLDLL): $(TCLLIBDIR)\$(TCLDLL)
$(CP) $(TCLLIBDIR)\$(TCLDLL) $(TMPDIR)
 
$(TMPDIR)\$(ITKWISH): $(ITKWISH)
$(CP) $(ITKWISH) $(TMPDIR)
 
debug: $(TMPDIR)\$(ITKDLL) $(TMPDIR)\$(ITCLDLL) $(TMPDIR)\$(TKDLL) $(TMPDIR)\$(TCLDLL)
 
 
# remove all generated files
 
clean:
-@$(RM) $(ITKWISH)
-@$(RM) $(ITKLIB)
-@$(RM) $(ITKDLL)
-@$(RM) itk.def
-@$(RM) $(TMPDIR)\Rc\*.res
-@$(RM) $(TMPDIR)\*.obj
-@$(RM) *.cfg
makefile.bc Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: configure =================================================================== --- configure (nonexistent) +++ configure (revision 1765) @@ -0,0 +1,4120 @@ +#! /bin/sh + +# Guess values for system-dependent variables and create Makefiles. +# Generated automatically using autoconf version 2.13 +# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. + +# Defaults: +ac_help= +ac_default_prefix=/usr/local +# Any additions from configure.in: +ac_default_prefix=/usr/local +ac_help="$ac_help + --enable-gcc allow use of gcc if available" +ac_help="$ac_help + --with-tcl=DIR use Tcl 8.0 binaries from DIR" +ac_help="$ac_help + --with-tk=DIR use Tk 8.0 binaries from DIR" +ac_help="$ac_help + --with-itcl=DIR use Itcl 3.0 binaries from DIR" +ac_help="$ac_help + --with-cflags=FLAGS set compiler flags to FLAGS" +ac_help="$ac_help + --with-cc=CC set C compiler to CC" +ac_help="$ac_help + --with-x use the X Window System" +ac_help="$ac_help + --enable-shared build libitk as a shared library" + +# Initialize some variables set by options. +# The variables have the same names as the options, with +# dashes changed to underlines. +build=NONE +cache_file=./config.cache +exec_prefix=NONE +host=NONE +no_create= +nonopt=NONE +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +target=NONE +verbose= +x_includes=NONE +x_libraries=NONE +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' + +# Initialize some other variables. +subdirs= +MFLAGS= MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} +# Maximum number of lines to put in a shell here document. +ac_max_here_lines=12 + +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 + + case "$ac_option" in + -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) ac_optarg= ;; + esac + + # 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 ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build="$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" ;; + + -datadir | --datadir | --datadi | --datad | --data | --dat | --da) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ + | --da=*) + datadir="$ac_optarg" ;; + + -disable-* | --disable-*) + ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + eval "enable_${ac_feature}=no" ;; + + -enable-* | --enable-*) + ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } + fi + ac_feature=`echo $ac_feature| sed 's/-/_/g'` + case "$ac_option" in + *=*) ;; + *) 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) + # 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 << EOF +Usage: configure [options] [host] +Options: [defaults in brackets after descriptions] +Configuration: + --cache-file=FILE cache test results in FILE + --help print this message + --no-create do not create output files + --quiet, --silent do not print \`checking...' messages + --version print the version of autoconf that created configure +Directory and file names: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [same as prefix] + --bindir=DIR user executables in DIR [EPREFIX/bin] + --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] + --libexecdir=DIR program executables in DIR [EPREFIX/libexec] + --datadir=DIR read-only architecture-independent data in DIR + [PREFIX/share] + --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data in DIR + [PREFIX/com] + --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] + --libdir=DIR object code libraries in DIR [EPREFIX/lib] + --includedir=DIR C header files in DIR [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] + --infodir=DIR info documentation in DIR [PREFIX/info] + --mandir=DIR man documentation in DIR [PREFIX/man] + --srcdir=DIR find the sources in DIR [configure dir or ..] + --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 +EOF + cat << EOF +Host type: + --build=BUILD configure for building on BUILD [BUILD=HOST] + --host=HOST configure for HOST [guessed] + --target=TARGET configure for TARGET [TARGET=HOST] +Features and packages: + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --x-includes=DIR X include files are in DIR + --x-libraries=DIR X library files are in DIR +EOF + if test -n "$ac_help"; then + echo "--enable and --with options recognized:$ac_help" + fi + exit 0 ;; + + -host | --host | --hos | --ho) + ac_prev=host ;; + -host=* | --host=* | --hos=* | --ho=*) + host="$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) + 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 ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target="$ac_optarg" ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers) + echo "configure generated by autoconf version 2.13" + exit 0 ;; + + -with-* | --with-*) + ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } + fi + ac_package=`echo $ac_package| sed 's/-/_/g'` + case "$ac_option" in + *=*) ;; + *) ac_optarg=yes ;; + esac + eval "with_${ac_package}='$ac_optarg'" ;; + + -without-* | --without-*) + ac_package=`echo $ac_option|sed -e 's/-*without-//'` + # Reject names that are not valid shell variable names. + if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } + fi + 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 "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } + ;; + + *) + if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then + echo "configure: warning: $ac_option: invalid host type" 1>&2 + fi + if test "x$nonopt" != xNONE; then + { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } + fi + nonopt="$ac_option" + ;; + + esac +done + +if test -n "$ac_prev"; then + { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } +fi + +trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 + +# File descriptor usage: +# 0 standard input +# 1 file creation +# 2 errors and warnings +# 3 some systems may open it to /dev/tty +# 4 used on the Kubota Titan +# 6 checking for... messages and results +# 5 compiler messages saved in config.log +if test "$silent" = yes; then + exec 6>/dev/null +else + exec 6>&1 +fi +exec 5>./config.log + +echo "\ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. +" 1>&5 + +# Strip out --no-create and --no-recursion so they do not pile up. +# Also quote any args containing shell metacharacters. +ac_configure_args= +for ac_arg +do + case "$ac_arg" in + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c) ;; + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) + ac_configure_args="$ac_configure_args '$ac_arg'" ;; + *) ac_configure_args="$ac_configure_args $ac_arg" ;; + esac +done + +# NLS nuisances. +# Only set these to C if already set. These must not be set unconditionally +# because not all systems understand e.g. LANG=C (notably SCO). +# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! +# Non-C LC_CTYPE values break the ctype check. +if test "${LANG+set}" = set; then LANG=C; export LANG; fi +if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi +if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi +if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi + +# 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 + +# A filename unique to this package, relative to the directory that +# configure is in, which we can look for to find out if srcdir is correct. +ac_unique_file=../generic/itk.h + +# 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_prog=$0 + ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` + test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. + 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 "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } + else + { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } + fi +fi +srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` + +# 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 "loading site script $ac_site_file" + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + echo "loading cache $cache_file" + . $cache_file +else + echo "creating cache $cache_file" + > $cache_file +fi + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +ac_exeext= +ac_objext=o +if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then + # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. + if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then + ac_n= ac_c=' +' ac_t=' ' + else + ac_n=-n ac_c= ac_t= + fi +else + ac_n= ac_c='\c' ac_t= +fi + + + +ac_aux_dir= +for ac_dir in ../../../ $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 + fi +done +if test -z "$ac_aux_dir"; then + { echo "configure: error: can not find install-sh or install.sh in ../../../ $srcdir/../../../" 1>&2; exit 1; } +fi +ac_config_guess=$ac_aux_dir/config.guess +ac_config_sub=$ac_aux_dir/config.sub +ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. + + +# Make sure we can run config.sub. +if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then : +else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } +fi + +echo $ac_n "checking host system type""... $ac_c" 1>&6 +echo "configure:569: checking host system type" >&5 + +host_alias=$host +case "$host_alias" in +NONE) + case $nonopt in + NONE) + if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then : + else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; } + fi ;; + *) host_alias=$nonopt ;; + esac ;; +esac + +host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias` +host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` +echo "$ac_t""$host" 1>&6 + + +# Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:593: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_RANLIB="ranlib" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":" +fi +fi +RANLIB="$ac_cv_prog_RANLIB" +if test -n "$RANLIB"; then + echo "$ac_t""$RANLIB" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +# Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:624: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:654: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_prog_rejected=no + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + break + fi + done + IFS="$ac_save_ifs" +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 $# -gt 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 + set dummy "$ac_dir/$ac_word" "$@" + shift + ac_cv_prog_CC="$@" + fi +fi +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:705: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:737: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 748 "configure" +#include "confdefs.h" + +main(){return(0);} +EOF +if { (eval echo configure:753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:779: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:784: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:812: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&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 $ac_n "checking for object suffix""... $ac_c" 1>&6 +echo "configure:844: checking for object suffix" >&5 +if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + rm -f conftest* +echo 'int i = 1;' > conftest.$ac_ext +if { (eval echo configure:850: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + for ac_file in conftest.*; do + case $ac_file in + *.c) ;; + *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;; + esac + done +else + { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; } +fi +rm -f conftest* +fi + +echo "$ac_t""$ac_cv_objext" 1>&6 +OBJEXT=$ac_cv_objext +ac_objext=$ac_cv_objext + +echo $ac_n "checking build system type""... $ac_c" 1>&6 +echo "configure:868: checking build system type" >&5 + +build_alias=$build +case "$build_alias" in +NONE) + case $nonopt in + NONE) build_alias=$host_alias ;; + *) build_alias=$nonopt ;; + esac ;; +esac + +build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias` +build_cpu=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +build_vendor=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` +echo "$ac_t""$build" 1>&6 + +if test $host != $build; then + ac_tool_prefix=${host_alias}- +else + ac_tool_prefix= +fi + +# Extract the first word of "${ac_tool_prefix}nm", so it can be a program name with args. +set dummy ${ac_tool_prefix}nm; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:894: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$NM"; then + ac_cv_prog_NM="$NM" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_NM="${ac_tool_prefix}nm" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +NM="$ac_cv_prog_NM" +if test -n "$NM"; then + echo "$ac_t""$NM" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +if test -z "$ac_cv_prog_NM"; then +if test -n "$ac_tool_prefix"; then + # Extract the first word of "nm", so it can be a program name with args. +set dummy nm; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:926: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_NM'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$NM"; then + ac_cv_prog_NM="$NM" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_NM="nm" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_NM" && ac_cv_prog_NM="nm" +fi +fi +NM="$ac_cv_prog_NM" +if test -n "$NM"; then + echo "$ac_t""$NM" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +else + NM="nm" +fi +fi + + +# Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. +set dummy ${ac_tool_prefix}as; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:962: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_AS="${ac_tool_prefix}as" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +AS="$ac_cv_prog_AS" +if test -n "$AS"; then + echo "$ac_t""$AS" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +if test -z "$ac_cv_prog_AS"; then +if test -n "$ac_tool_prefix"; then + # Extract the first word of "as", so it can be a program name with args. +set dummy as; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:994: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_AS="as" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_AS" && ac_cv_prog_AS="as" +fi +fi +AS="$ac_cv_prog_AS" +if test -n "$AS"; then + echo "$ac_t""$AS" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +else + AS="as" +fi +fi + + +# Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. +set dummy ${ac_tool_prefix}ld; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1030: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$LD"; then + ac_cv_prog_LD="$LD" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_LD="${ac_tool_prefix}ld" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +LD="$ac_cv_prog_LD" +if test -n "$LD"; then + echo "$ac_t""$LD" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +if test -z "$ac_cv_prog_LD"; then +if test -n "$ac_tool_prefix"; then + # Extract the first word of "ld", so it can be a program name with args. +set dummy ld; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1062: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$LD"; then + ac_cv_prog_LD="$LD" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_LD="ld" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_LD" && ac_cv_prog_LD="ld" +fi +fi +LD="$ac_cv_prog_LD" +if test -n "$LD"; then + echo "$ac_t""$LD" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +else + LD="ld" +fi +fi + + +# Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1098: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +DLLTOOL="$ac_cv_prog_DLLTOOL" +if test -n "$DLLTOOL"; then + echo "$ac_t""$DLLTOOL" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +if test -z "$ac_cv_prog_DLLTOOL"; then +if test -n "$ac_tool_prefix"; then + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1130: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_DLLTOOL="dlltool" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_DLLTOOL" && ac_cv_prog_DLLTOOL="dlltool" +fi +fi +DLLTOOL="$ac_cv_prog_DLLTOOL" +if test -n "$DLLTOOL"; then + echo "$ac_t""$DLLTOOL" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +else + DLLTOOL="dlltool" +fi +fi + + +# Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. +set dummy ${ac_tool_prefix}windres; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1166: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$WINDRES"; then + ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_WINDRES="${ac_tool_prefix}windres" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +WINDRES="$ac_cv_prog_WINDRES" +if test -n "$WINDRES"; then + echo "$ac_t""$WINDRES" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + +if test -z "$ac_cv_prog_WINDRES"; then +if test -n "$ac_tool_prefix"; then + # Extract the first word of "windres", so it can be a program name with args. +set dummy windres; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1198: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$WINDRES"; then + ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_WINDRES="windres" + break + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_prog_WINDRES" && ac_cv_prog_WINDRES="windres" +fi +fi +WINDRES="$ac_cv_prog_WINDRES" +if test -n "$WINDRES"; then + echo "$ac_t""$WINDRES" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + +else + WINDRES="windres" +fi +fi + + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# 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" +# ./install, which can be erroneously created by make from ./install.sh. +echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 +echo "configure:1244: checking for a BSD compatible install" >&5 +if test -z "$INSTALL"; then +if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" + for ac_dir in $PATH; do + # Account for people who put trailing slashes in PATH elements. + case "$ac_dir/" in + /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/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 + if test -f $ac_dir/$ac_prog; then + if test $ac_prog = install && + grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + else + ac_cv_path_install="$ac_dir/$ac_prog -c" + break 2 + fi + fi + done + ;; + esac + done + IFS="$ac_save_IFS" + +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 "$ac_t""$INSTALL" 1>&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_PROGRAM}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + +# needed for the subtle differences between cygwin and mingw32 +case "${host}" in +*-*-cygwin*) + DLL_LDLIBS=-lcygwin + DLL_LDFLAGS='-nostartfiles -Wl,--dll' + ;; +*-*-mingw32*) + DLL_LDLIBS= + DLL_LDFLAGS='-mdll' + ;; +esac + + + +ITCL_VERSION=3.0 +ITCL_MAJOR_VERSION=3 +ITCL_MINOR_VERSION=0 +VERSION=${ITCL_MAJOR_VERSION}${ITCL_MINOR_VERSION} + +if test "${prefix}" = "NONE"; then + prefix=/usr/local +fi +if test "${exec_prefix}" = "NONE"; then + exec_prefix=$prefix +fi + +# ----------------------------------------------------------------------- +# Set up a new default --prefix. If a previous installation of +# [incr Tcl] can be found searching $PATH use that directory. +# ----------------------------------------------------------------------- + + +if test "x$prefix" = xNONE; then +echo $ac_n "checking for prefix by $ac_c" 1>&6 +# Extract the first word of "itclsh", so it can be a program name with args. +set dummy itclsh; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1334: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_path_ITCLSH'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + case "$ITCLSH" in + /*) + ac_cv_path_ITCLSH="$ITCLSH" # Let the user override the test with a path. + ;; + ?:/*) + ac_cv_path_ITCLSH="$ITCLSH" # Let the user override the test with a dos path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_path_ITCLSH="$ac_dir/$ac_word" + break + fi + done + IFS="$ac_save_ifs" + ;; +esac +fi +ITCLSH="$ac_cv_path_ITCLSH" +if test -n "$ITCLSH"; then + echo "$ac_t""$ITCLSH" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -n "$ac_cv_path_ITCLSH"; then + prefix=`echo $ac_cv_path_ITCLSH|sed 's%/[^/][^/]*//*[^/][^/]*$%%'` + fi +fi + + +# ----------------------------------------------------------------------- +BUILD_DIR=`pwd` +ITK_SRC_DIR=`cd $srcdir/..; pwd` + +if ! test "$GCC" = yes; then + tmp="`cygpath --windows $ITK_SRC_DIR`" + ITK_SRC_DIR="`echo $tmp | sed -e s#\\\\\\\\#/#g`" +fi + +cd ${BUILD_DIR} + +# Check whether --enable-gcc or --disable-gcc was given. +if test "${enable_gcc+set}" = set; then + enableval="$enable_gcc" + itk_ok=$enableval +else + itk_ok=no +fi + +if test "$itk_ok" = "yes"; then + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1395: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1425: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_prog_rejected=no + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + break + fi + done + IFS="$ac_save_ifs" +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 $# -gt 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 + set dummy "$ac_dir/$ac_word" "$@" + shift + ac_cv_prog_CC="$@" + fi +fi +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:1476: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:1508: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 1519 "configure" +#include "confdefs.h" + +main(){return(0);} +EOF +if { (eval echo configure:1524: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:1550: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:1555: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:1583: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&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 + +else + CC=${CC-cc} + +fi +echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 +echo "configure:1619: checking how to run the C preprocessor" >&5 +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then +if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + # This must be in double quotes, not single quotes, because CPP may get + # substituted into the Makefile and "${CC-cc}" will confuse make. + CPP="${CC-cc} -E" + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:1640: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP="${CC-cc} -E -traditional-cpp" + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:1657: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP="${CC-cc} -nologo -E" + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:1674: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP=/lib/cpp +fi +rm -f conftest* +fi +rm -f conftest* +fi +rm -f conftest* + ac_cv_prog_CPP="$CPP" +fi + CPP="$ac_cv_prog_CPP" +else + ac_cv_prog_CPP="$CPP" +fi +echo "$ac_t""$CPP" 1>&6 + +for ac_hdr in unistd.h limits.h +do +ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +echo "configure:1702: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:1712: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + eval "ac_cv_header_$ac_safe=yes" +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_header_$ac_safe=no" +fi +rm -f conftest* +fi +if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` + cat >> confdefs.h <&6 +fi +done + + + +#-------------------------------------------------------------------- +# See if there was a command-line option for where Tcl is; if +# not, assume that its top-level directory is a sibling of ours. +# CYGNUS LOCAL - Actually Tcl & Tk are siblings of the itcl directory +# that contains itcl & itk & iwidgets. +#-------------------------------------------------------------------- + +# Check whether --with-tcl or --without-tcl was given. +if test "${with_tcl+set}" = set; then + withval="$with_tcl" + TCL_BIN_DIR=$withval +else + TCL_BIN_DIR=`cd ../../../tcl/win; pwd` +fi + + +if test ! -f $TCL_BIN_DIR/../unix/tclConfig.sh; then + TCL_BIN_DIR=`cd ../../../tcl8.1/win;pwd` +fi + +if test ! -f $TCL_BIN_DIR/../unix/tclConfig.sh; then + { echo "configure: error: There's no tclConfig.sh in $TCL_BIN_DIR; perhaps you didn't specify the Tcl *build* directory (not the toplevel Tcl directory) or you forgot to configure Tcl?" 1>&2; exit 1; } +fi + +#-------------------------------------------------------------------- +# Read in configuration information generated by Tcl for shared +# libraries, and arrange for it to be substituted into our +# Makefile. +#-------------------------------------------------------------------- + +file=$TCL_BIN_DIR/../unix/tclConfig.sh +. $file + + +SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS +SHLIB_LD=$TCL_SHLIB_LD +SHLIB_LD_LIBS=$TCL_SHLIB_LD_LIBS +SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX +SHLIB_VERSION=$TCL_SHLIB_VERSION +DL_LIBS=$TCL_DL_LIBS +LD_FLAGS=$TCL_LD_FLAGS +ITK_LD_SEARCH_FLAGS=$TCL_LD_SEARCH_FLAGS + +#-------------------------------------------------------------------- +# See if there was a command-line option for where Tk is; if +# not, assume that its top-level directory is a sibling of ours. +# CYGNUS LOCAL - actually these are one level higher in the CYGNUS tree. +#-------------------------------------------------------------------- + +# Check whether --with-tcl or --without-tcl was given. +if test "${with_tcl+set}" = set; then + withval="$with_tcl" + TK_BIN_DIR=$withval +else + TK_BIN_DIR=`cd ../../../tk/win; pwd` +fi + + +if test ! -f $TK_BIN_DIR/../unix/tkConfig.sh; then + TK_BIN_DIR=`cd ../../../tk8.1/win;pwd` +fi + +if test ! -f $TK_BIN_DIR/../unix/tkConfig.sh; then + { echo "configure: error: There's no tkConfig.sh in $TK_BIN_DIR; perhaps you didn't specify the Tk *build* directory (not the toplevel Tcl directory) or you forgot to configure Tcl?" 1>&2; exit 1; } +fi + +file=$TK_BIN_DIR/../unix/tkConfig.sh +. $file + +if ! test "$GCC" = yes; then + tmp="`cygpath --windows $TK_BIN_DIR`" + TK_BIN_DIR="`echo $tmp | sed -e s#\\\\\\\\#/#g`" +fi + + +#-------------------------------------------------------------------- +# See if there was a command-line option for where [incr Tcl] is. +# If not, assume that its top-level directory is a sibling of ours. +#-------------------------------------------------------------------- + +# Check whether --with-itcl or --without-itcl was given. +if test "${with_itcl+set}" = set; then + withval="$with_itcl" + ITCL_BIN_DIR=$withval +else + ITCL_BIN_DIR=`cd ../../itcl/win; pwd` +fi + +if test ! -d $ITCL_BIN_DIR; then + { echo "configure: error: Itcl directory $ITCL_BIN_DIR doesn't exist" 1>&2; exit 1; } +fi +if test ! -f $ITCL_BIN_DIR/Makefile; then + { echo "configure: error: There's no Makefile in $ITCL_BIN_DIR; perhaps you didn't specify the Itcl *build* directory (not the toplevel Itcl directory) or you forgot to configure Itcl?" 1>&2; exit 1; } +fi + +file=$ITCL_BIN_DIR/../itclConfig.sh +. $file + + +echo $ac_n "checking whether C compiler is gcc""... $ac_c" 1>&6 +echo "configure:1840: checking whether C compiler is gcc" >&5 +if eval "test \"`echo '$''{'itcl_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + cat > conftest.$ac_ext <&5 | + egrep "_cc_is_gcc_" >/dev/null 2>&1; then + rm -rf conftest* + itcl_cv_prog_gcc=yes +else + rm -rf conftest* + itcl_cv_prog_gcc=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$itcl_cv_prog_gcc" 1>&6 + +if test -z "$CFLAGS" ; then + CFLAGS="-O" +fi +if test "$itcl_cv_prog_gcc" = "yes" ; then + CFLAGS="$CFLAGS -Wshadow -Wtraditional -Wall" +fi + +echo $ac_n "checking default compiler flags""... $ac_c" 1>&6 +echo "configure:1876: checking default compiler flags" >&5 +# Check whether --with-cflags or --without-cflags was given. +if test "${with_cflags+set}" = set; then + withval="$with_cflags" + CFLAGS="$with_cflags" +fi + + +echo "$ac_t""$CFLAGS" 1>&6 + +#-------------------------------------------------------------------- +# Supply a substitute for stdlib.h if it doesn't define strtol, +# strtoul, or strtod (which it doesn't in some versions of SunOS). +#-------------------------------------------------------------------- + +echo $ac_n "checking stdlib.h""... $ac_c" 1>&6 +echo "configure:1892: checking stdlib.h" >&5 +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtol" >/dev/null 2>&1; then + rm -rf conftest* + itk_ok=yes +else + rm -rf conftest* + itk_ok=no +fi +rm -f conftest* + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtoul" >/dev/null 2>&1; then + : +else + rm -rf conftest* + itk_ok=no +fi +rm -f conftest* + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtod" >/dev/null 2>&1; then + : +else + rm -rf conftest* + itk_ok=no +fi +rm -f conftest* + +if test $itk_ok = no; then + cat >> confdefs.h <<\EOF +#define NO_STDLIB_H 1 +EOF + +fi +echo "$ac_t""$itk_ok" 1>&6 + +#-------------------------------------------------------------------- +# Check for various typedefs and provide substitutes if +# they don't exist. +#-------------------------------------------------------------------- + +echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 +echo "configure:1950: checking for ANSI C header files" >&5 +if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#include +#include +#include +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:1963: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + ac_cv_header_stdc=yes +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + ac_cv_header_stdc=no +fi +rm -f conftest* + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "memchr" >/dev/null 2>&1; then + : +else + rm -rf conftest* + 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 < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "free" >/dev/null 2>&1; then + : +else + rm -rf conftest* + 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 < +#define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#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); } + +EOF +if { (eval echo configure:2030: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +then + : +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -fr conftest* + ac_cv_header_stdc=no +fi +rm -fr conftest* +fi + +fi +fi + +echo "$ac_t""$ac_cv_header_stdc" 1>&6 +if test $ac_cv_header_stdc = yes; then + cat >> confdefs.h <<\EOF +#define STDC_HEADERS 1 +EOF + +fi + +echo $ac_n "checking for mode_t""... $ac_c" 1>&6 +echo "configure:2054: checking for mode_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])mode_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_mode_t=yes +else + rm -rf conftest* + ac_cv_type_mode_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_mode_t" 1>&6 +if test $ac_cv_type_mode_t = no; then + cat >> confdefs.h <<\EOF +#define mode_t int +EOF + +fi + +echo $ac_n "checking for pid_t""... $ac_c" 1>&6 +echo "configure:2087: checking for pid_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])pid_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_pid_t=yes +else + rm -rf conftest* + ac_cv_type_pid_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_pid_t" 1>&6 +if test $ac_cv_type_pid_t = no; then + cat >> confdefs.h <<\EOF +#define pid_t int +EOF + +fi + +echo $ac_n "checking for size_t""... $ac_c" 1>&6 +echo "configure:2120: checking for size_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])size_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_size_t=yes +else + rm -rf conftest* + ac_cv_type_size_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_size_t" 1>&6 +if test $ac_cv_type_size_t = no; then + cat >> confdefs.h <<\EOF +#define size_t unsigned +EOF + +fi + +echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 +echo "configure:2153: checking for uid_t in sys/types.h" >&5 +if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "uid_t" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_uid_t=yes +else + rm -rf conftest* + ac_cv_type_uid_t=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_type_uid_t" 1>&6 +if test $ac_cv_type_uid_t = no; then + cat >> confdefs.h <<\EOF +#define uid_t int +EOF + + cat >> confdefs.h <<\EOF +#define gid_t int +EOF + +fi + + +# ----------------------------------------------------------------------- +# C compiler and debugging flags +# ----------------------------------------------------------------------- +echo $ac_n "checking which C compiler""... $ac_c" 1>&6 +echo "configure:2191: checking which C compiler" >&5 +if test -z "$CC" ; then + CC="cc" +fi +# Check whether --with-cc or --without-cc was given. +if test "${with_cc+set}" = set; then + withval="$with_cc" + CC=$with_cc +fi + +echo "$ac_t""$CC" 1>&6 + + +echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 +echo "configure:2205: checking how to run the C preprocessor" >&5 +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then +if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + # This must be in double quotes, not single quotes, because CPP may get + # substituted into the Makefile and "${CC-cc}" will confuse make. + CPP="${CC-cc} -E" + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2226: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP="${CC-cc} -E -traditional-cpp" + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2243: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP="${CC-cc} -nologo -E" + cat > conftest.$ac_ext < +Syntax Error +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2260: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + CPP=/lib/cpp +fi +rm -f conftest* +fi +rm -f conftest* +fi +rm -f conftest* + ac_cv_prog_CPP="$CPP" +fi + CPP="$ac_cv_prog_CPP" +else + ac_cv_prog_CPP="$CPP" +fi +echo "$ac_t""$CPP" 1>&6 + + +#-------------------------------------------------------------------- +# Supply substitutes for missing POSIX header files. +# Replacements are handled in "tclInt.h" which we include here. +#-------------------------------------------------------------------- + +ac_safe=`echo "limits.h" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for limits.h""... $ac_c" 1>&6 +echo "configure:2292: checking for limits.h" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2302: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + eval "ac_cv_header_$ac_safe=yes" +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_header_$ac_safe=no" +fi +rm -f conftest* +fi +if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + : +else + echo "$ac_t""no" 1>&6 +cat >> confdefs.h <<\EOF +#define NO_LIMITS_H 1 +EOF + +fi + +ac_safe=`echo "stdlib.h" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for stdlib.h""... $ac_c" 1>&6 +echo "configure:2329: checking for stdlib.h" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2339: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + eval "ac_cv_header_$ac_safe=yes" +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_header_$ac_safe=no" +fi +rm -f conftest* +fi +if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + tcl_ok=1 +else + echo "$ac_t""no" 1>&6 +tcl_ok=0 +fi + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtol" >/dev/null 2>&1; then + : +else + rm -rf conftest* + tcl_ok=0 +fi +rm -f conftest* + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtoul" >/dev/null 2>&1; then + : +else + rm -rf conftest* + tcl_ok=0 +fi +rm -f conftest* + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strtod" >/dev/null 2>&1; then + : +else + rm -rf conftest* + tcl_ok=0 +fi +rm -f conftest* + +if test $tcl_ok = 0; then + cat >> confdefs.h <<\EOF +#define NO_STDLIB_H 1 +EOF + +fi +ac_safe=`echo "string.h" | sed 'y%./+-%__p_%'` +echo $ac_n "checking for string.h""... $ac_c" 1>&6 +echo "configure:2411: checking for string.h" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2421: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + eval "ac_cv_header_$ac_safe=yes" +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_header_$ac_safe=no" +fi +rm -f conftest* +fi +if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then + echo "$ac_t""yes" 1>&6 + tcl_ok=1 +else + echo "$ac_t""no" 1>&6 +tcl_ok=0 +fi + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strstr" >/dev/null 2>&1; then + : +else + rm -rf conftest* + tcl_ok=0 +fi +rm -f conftest* + +cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "strerror" >/dev/null 2>&1; then + : +else + rm -rf conftest* + tcl_ok=0 +fi +rm -f conftest* + +if test $tcl_ok = 0; then + cat >> confdefs.h <<\EOF +#define NO_STRING_H 1 +EOF + +fi + +#-------------------------------------------------------------------- +# Check for various typedefs and provide substitutes if +# they don't exist. +#-------------------------------------------------------------------- + +echo $ac_n "checking for mode_t""... $ac_c" 1>&6 +echo "configure:2484: checking for mode_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])mode_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_mode_t=yes +else + rm -rf conftest* + ac_cv_type_mode_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_mode_t" 1>&6 +if test $ac_cv_type_mode_t = no; then + cat >> confdefs.h <<\EOF +#define mode_t int +EOF + +fi + +echo $ac_n "checking for pid_t""... $ac_c" 1>&6 +echo "configure:2517: checking for pid_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])pid_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_pid_t=yes +else + rm -rf conftest* + ac_cv_type_pid_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_pid_t" 1>&6 +if test $ac_cv_type_pid_t = no; then + cat >> confdefs.h <<\EOF +#define pid_t int +EOF + +fi + +echo $ac_n "checking for size_t""... $ac_c" 1>&6 +echo "configure:2550: checking for size_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +#if STDC_HEADERS +#include +#include +#endif +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "(^|[^a-zA-Z_0-9])size_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_size_t=yes +else + rm -rf conftest* + ac_cv_type_size_t=no +fi +rm -f conftest* + +fi +echo "$ac_t""$ac_cv_type_size_t" 1>&6 +if test $ac_cv_type_size_t = no; then + cat >> confdefs.h <<\EOF +#define size_t unsigned +EOF + +fi + +echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 +echo "configure:2583: checking for uid_t in sys/types.h" >&5 +if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "uid_t" >/dev/null 2>&1; then + rm -rf conftest* + ac_cv_type_uid_t=yes +else + rm -rf conftest* + ac_cv_type_uid_t=no +fi +rm -f conftest* + +fi + +echo "$ac_t""$ac_cv_type_uid_t" 1>&6 +if test $ac_cv_type_uid_t = no; then + cat >> confdefs.h <<\EOF +#define uid_t int +EOF + + cat >> confdefs.h <<\EOF +#define gid_t int +EOF + +fi + + +#-------------------------------------------------------------------- +# Locate the X11 header files and the X11 library archive. Try +# the ac_path_x macro first, but if it doesn't find the X stuff +# (e.g. because there's no xmkmf program) then check through +# a list of possible directories. Under some conditions the +# autoconf macro will return an include directory that contains +# no include files, so double-check its result just to be safe. +#-------------------------------------------------------------------- + +# If we find X, set shell vars x_includes and x_libraries to the +# paths, otherwise set no_x=yes. +# Uses ac_ vars as temps to allow command line to override cache and checks. +# --without-x overrides everything else, but does not touch the cache. +echo $ac_n "checking for X""... $ac_c" 1>&6 +echo "configure:2631: checking for X" >&5 + +# 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 eval "test \"`echo '$''{'ac_cv_have_x'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&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 conftestdir +if mkdir conftestdir; then + cd conftestdir + # Make sure to not put "make" in the Imakefile rules, since we grep it out. + cat > Imakefile <<'EOF' +acfindx: + @echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"' +EOF + 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 conftestdir +fi + +if test "$ac_x_includes" = NO; then + # Guess where to find include files, by looking for this one X11 .h file. + test -z "$x_direct_test_include" && x_direct_test_include=X11/Intrinsic.h + + # First, try using that file with no special directory specified. +cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2698: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + rm -rf conftest* + # We can compile using X headers with no special include directory. +ac_x_includes= +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + # Look for the header file in a standard set of common directories. +# Check X11 before X11Rn because it is often a symlink to the current release. + for ac_dir in \ + /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 \ + ; \ + do + if test -r "$ac_dir/$x_direct_test_include"; then + ac_x_includes=$ac_dir + break + fi + done +fi +rm -f conftest* +fi # $ac_x_includes = NO + +if test "$ac_x_libraries" = NO; then + # Check for the libraries. + + test -z "$x_direct_test_library" && x_direct_test_library=Xt + test -z "$x_direct_test_function" && x_direct_test_function=XtMalloc + + # See if we find them without any special options. + # Don't add to $LIBS permanently. + ac_save_LIBS="$LIBS" + LIBS="-l$x_direct_test_library $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + LIBS="$ac_save_LIBS" +# We can link X programs with no special library path. +ac_x_libraries= +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + LIBS="$ac_save_LIBS" +# First see if replacing the include by lib works. +# Check X11 before X11Rn because it is often a symlink to the current release. +for ac_dir in `echo "$ac_x_includes" | sed s/include/lib/` \ + /usr/X11/lib \ + /usr/X11R6/lib \ + /usr/X11R5/lib \ + /usr/X11R4/lib \ + \ + /usr/lib/X11 \ + /usr/lib/X11R6 \ + /usr/lib/X11R5 \ + /usr/lib/X11R4 \ + \ + /usr/local/X11/lib \ + /usr/local/X11R6/lib \ + /usr/local/X11R5/lib \ + /usr/local/X11R4/lib \ + \ + /usr/local/lib/X11 \ + /usr/local/lib/X11R6 \ + /usr/local/lib/X11R5 \ + /usr/local/lib/X11R4 \ + \ + /usr/X386/lib \ + /usr/x386/lib \ + /usr/XFree86/lib/X11 \ + \ + /usr/lib \ + /usr/local/lib \ + /usr/unsupported/lib \ + /usr/athena/lib \ + /usr/local/x11r5/lib \ + /usr/lpp/Xamples/lib \ + /lib/usr/lib/X11 \ + \ + /usr/openwin/lib \ + /usr/openwin/share/lib \ + ; \ +do + for ac_extension in a so sl; do + if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then + ac_x_libraries=$ac_dir + break 2 + fi + done +done +fi +rm -f conftest* +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 "$ac_t""$have_x" 1>&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" + echo "$ac_t""libraries $x_libraries, headers $x_includes" 1>&6 +fi + +not_really_there="" +if test "$no_x" = ""; then + if test "$x_includes" = ""; then + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2869: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + not_really_there="yes" +fi +rm -f conftest* + else + if test ! -r $x_includes/X11/Intrinsic.h; then + not_really_there="yes" + fi + fi +fi +if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then + echo checking for X11 header files + XINCLUDES="# no special path needed" + cat > conftest.$ac_ext < +EOF +ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +{ (eval echo configure:2896: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` +if test -z "$ac_err"; then + : +else + echo "$ac_err" >&5 + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + XINCLUDES="nope" +fi +rm -f conftest* + if test "$XINCLUDES" = nope; then + dirs="/usr/unsupported/include /usr/local/include /usr/X386/include /usr/X11R6/include /usr/include/X11R6 /usr/X11R5/include /usr/include/X11R5 /usr/include/X11R4 /usr/openwin/include /usr/X11/include /usr/sww/include" + for i in $dirs ; do + if test -r $i/X11/Intrinsic.h; then + XINCLUDES=" -I$i" + fi + done + fi +else + if test "$x_includes" != ""; then + XINCLUDES=-I$x_includes + else + XINCLUDES="# no special path needed" + fi +fi +if test "$XINCLUDES" = nope; then + echo "Warning: couldn't find any X11 include files." + XINCLUDES="# no include files found" +fi + + +if test "$no_x" = yes; then + XLIBSW=nope + if test "$XLIBSW" = nope; then + dirs="/usr/unsupported/lib /usr/local/lib /usr/X386/lib /usr/X11R6/lib /usr/lib/X11R6 /usr/X11R5/lib /usr/lib/X11R5 /usr/lib/X11R4 /usr/openwin/lib /usr/X11/lib /usr/sww/X11/lib" + for i in $dirs ; do + if test -r $i/libX11.a; then + XLIBSW="-L$i -lX11" + fi + done + fi +else + if test "$x_libraries" = ""; then + XLIBSW=-lX11 + else + XLIBSW="-L$x_libraries -lX11" + fi +fi +if test "$XLIBSW" = nope ; then + echo $ac_n "checking for XCreateWindow in -lXwindow""... $ac_c" 1>&6 +echo "configure:2948: checking for XCreateWindow in -lXwindow" >&5 +ac_lib_var=`echo Xwindow'_'XCreateWindow | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lXwindow $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + XLIBSW=-lXwindow +else + echo "$ac_t""no" 1>&6 +fi + +fi +if test "$XLIBSW" = nope ; then + echo "$ac_t""couldn't find any! Using -lX11." 1>&6 + XLIBSW=-lX11 +fi + +#-------------------------------------------------------------------- +# If the X library binaries are in a non-standard directory, and +# if a mechanism such as -R is available on this platform for +# specifying a runtime search path for shared libraries, add the X +# library location into that search path. +#-------------------------------------------------------------------- + +if test "$x_libraries" != "" -a "$ITK_LD_SEARCH_FLAGS" != ""; then + itk_tmp=`sed -e "s|\\\${LIB_RUNTIME_DIR}|$x_libraries|" << EOF +$ITK_LD_SEARCH_FLAGS +EOF` + ITK_LD_SEARCH_FLAGS="$ITK_LD_SEARCH_FLAGS $itk_tmp" +fi + +#-------------------------------------------------------------------- +# Check for the existence of various libraries. The order here +# is important, so that then end up in the right order in the +# command line generated by make. The -lsocket and -lnsl libraries +# require a couple of special tricks: +# 1. Use "connect" and "accept" to check for -lsocket, and +# "gethostbyname" to check for -lnsl. +# 2. Use each function name only once: can't redo a check because +# autoconf caches the results of the last check and won't redo it. +# 3. Use -lnsl and -lsocket only if they supply procedures that +# aren't already present in the normal libraries. This is because +# IRIX 5.2 has libraries, but they aren't needed and they're +# bogus: they goof up name resolution if used. +# 4. On some SVR4 systems, can't use -lsocket without -lnsl too. +# To get around this problem, check for both libraries together +# if -lsocket doesn't work by itself. +#-------------------------------------------------------------------- + +echo $ac_n "checking for main in -lXbsd""... $ac_c" 1>&6 +echo "configure:3026: checking for main in -lXbsd" >&5 +ac_lib_var=`echo Xbsd'_'main | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lXbsd $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + LIBS="$LIBS -lXbsd" +else + echo "$ac_t""no" 1>&6 +fi + + +itk_checkBoth=0 +echo $ac_n "checking for connect""... $ac_c" 1>&6 +echo "configure:3064: checking for connect" >&5 +if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* 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() { + +/* 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 +connect(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_connect=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_connect=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'connect`\" = yes"; then + echo "$ac_t""yes" 1>&6 + itk_checkSocket=0 +else + echo "$ac_t""no" 1>&6 +itk_checkSocket=1 +fi + +if test "$itk_checkSocket" = 1; then + echo $ac_n "checking for main in -lsocket""... $ac_c" 1>&6 +echo "configure:3114: checking for main in -lsocket" >&5 +ac_lib_var=`echo socket'_'main | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lsocket $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + LIBS="$LIBS -lsocket" +else + echo "$ac_t""no" 1>&6 +itk_checkBoth=1 +fi + +fi +if test "$itk_checkBoth" = 1; then + itk_oldLibs=$LIBS + LIBS="$LIBS -lsocket -lnsl" + echo $ac_n "checking for accept""... $ac_c" 1>&6 +echo "configure:3155: checking for accept" >&5 +if eval "test \"`echo '$''{'ac_cv_func_accept'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char accept(); + +int main() { + +/* 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_accept) || defined (__stub___accept) +choke me +#else +accept(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_accept=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_accept=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'accept`\" = yes"; then + echo "$ac_t""yes" 1>&6 + itk_checkNsl=0 +else + echo "$ac_t""no" 1>&6 +LIBS=$itk_oldLibs +fi + +fi +echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 +echo "configure:3205: checking for gethostbyname" >&5 +if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* 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() { + +/* 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 +gethostbyname(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3233: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_gethostbyname=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_gethostbyname=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'gethostbyname`\" = yes"; then + echo "$ac_t""yes" 1>&6 + : +else + echo "$ac_t""no" 1>&6 +echo $ac_n "checking for main in -lnsl""... $ac_c" 1>&6 +echo "configure:3251: checking for main in -lnsl" >&5 +ac_lib_var=`echo nsl'_'main | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lnsl $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + LIBS="$LIBS -lnsl" +else + echo "$ac_t""no" 1>&6 +fi + +fi + + +#-------------------------------------------------------------------- +# One more check related to the X libraries. The standard releases +# of Ultrix don't support the "xauth" mechanism, so send won't work +# unless TK_NO_SECURITY is defined. However, there are usually copies +# of the MIT X server available as well, which do support xauth. +# Check for the MIT stuff and use it if it exists. +# +# Note: can't use ac_check_lib macro (at least, not in Autoconf 2.1) +# because it can't deal with the "-" in the library name. +#-------------------------------------------------------------------- + +if test -d /usr/include/mit ; then + echo $ac_n "checking MIT X libraries""... $ac_c" 1>&6 +echo "configure:3302: checking MIT X libraries" >&5 + itk_oldCFlags=$CFLAGS + CFLAGS="$CFLAGS -I/usr/include/mit" + itk_oldLibs=$LIBS + LIBS="$LIBS -lX11-mit" + cat > conftest.$ac_ext < + +int main() { + + XOpenDisplay(0); + +; return 0; } +EOF +if { (eval echo configure:3319: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + + echo "$ac_t""yes" 1>&6 + XLIBSW="-lX11-mit" + XINCLUDES="-I/usr/include/mit" + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + echo "$ac_t""no" 1>&6 +fi +rm -f conftest* + CFLAGS=$itk_oldCFlags + LIBS=$itk_oldLibs +fi + +#-------------------------------------------------------------------- +# On a few very rare systems, all of the libm.a stuff is +# already in libc.a. Set compiler flags accordingly. +# Also, Linux requires the "ieee" library for math to +# work right (and it must appear before "-lm"). +#-------------------------------------------------------------------- + +MATH_LIBS="" +echo $ac_n "checking for sin""... $ac_c" 1>&6 +echo "configure:3346: checking for sin" >&5 +if eval "test \"`echo '$''{'ac_cv_func_sin'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char sin(); + +int main() { + +/* 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_sin) || defined (__stub___sin) +choke me +#else +sin(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3374: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_sin=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_sin=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'sin`\" = yes"; then + echo "$ac_t""yes" 1>&6 + : +else + echo "$ac_t""no" 1>&6 +MATH_LIBS="-lm" +fi + +echo $ac_n "checking for main in -lieee""... $ac_c" 1>&6 +echo "configure:3395: checking for main in -lieee" >&5 +ac_lib_var=`echo ieee'_'main | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lieee $LIBS" +cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + MATH_LIBS="-lieee $MATH_LIBS" +else + echo "$ac_t""no" 1>&6 +fi + + +#-------------------------------------------------------------------- +# If this system doesn't have a memmove procedure, use memcpy +# instead. +#-------------------------------------------------------------------- + +echo $ac_n "checking for memmove""... $ac_c" 1>&6 +echo "configure:3437: checking for memmove" >&5 +if eval "test \"`echo '$''{'ac_cv_func_memmove'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char memmove(); + +int main() { + +/* 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_memmove) || defined (__stub___memmove) +choke me +#else +memmove(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_memmove=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_memmove=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'memmove`\" = yes"; then + echo "$ac_t""yes" 1>&6 + : +else + echo "$ac_t""no" 1>&6 +cat >> confdefs.h <<\EOF +#define memmove memcpy +EOF + +fi + + +#-------------------------------------------------------------------- +# Figure out whether "char" is unsigned. If so, set a +# #define for __CHAR_UNSIGNED__. +#-------------------------------------------------------------------- + +#AC_C_CHAR_UNSIGNED + +#-------------------------------------------------------------------- +# Under Solaris 2.4, strtod returns the wrong value for the +# terminating character under some conditions. Check for this +# and if the problem exists use a substitute procedure +# "fixstrtod" (provided by Tcl) that corrects the error. +#-------------------------------------------------------------------- + +echo $ac_n "checking for strtod""... $ac_c" 1>&6 +echo "configure:3504: checking for strtod" >&5 +if eval "test \"`echo '$''{'ac_cv_func_strtod'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char strtod(); + +int main() { + +/* 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_strtod) || defined (__stub___strtod) +choke me +#else +strtod(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_strtod=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_strtod=no" +fi +rm -f conftest* +fi + +if eval "test \"`echo '$ac_cv_func_'strtod`\" = yes"; then + echo "$ac_t""yes" 1>&6 + itk_strtod=1 +else + echo "$ac_t""no" 1>&6 +itk_strtod=0 +fi + +if test "$itk_strtod" = 1; then + echo $ac_n "checking for Solaris 2.4 strtod bug""... $ac_c" 1>&6 +echo "configure:3554: checking for Solaris 2.4 strtod bug" >&5 + if test "$cross_compiling" = yes; then + itk_ok=0 +else + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +then + itk_ok=1 +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -fr conftest* + itk_ok=0 +fi +rm -fr conftest* +fi + + if test "$itk_ok" = 1; then + echo "$ac_t""ok" 1>&6 + else + echo "$ac_t""buggy" 1>&6 + cat >> confdefs.h <<\EOF +#define strtod fixstrtod +EOF + + fi +fi + +#-------------------------------------------------------------------- +# If we are building with cygwin, we need one set of library names, +# otherwise, we need the Source-Navigator set. +#-------------------------------------------------------------------- + + + +if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then + CYGITKLIBSPEC=itk${VERSION} +else + CYGITKLIBSPEC="itk`echo ${VERSION} | tr -d .`" +fi +CYGITKLIB=lib${CYGITKLIBSPEC}.a +CYGITKDLL=cygitk${VERSION}.dll +CYGITKWISH=cygitkwish${VERSION}.exe +CYGITKDEF=itkcyg.def +CYGITKTEST=cygitktest.exe +CYGIMPORTLIB=cygitk${VERSION}.lib +CYGITKRES=cygitk.o +CYGITKWISHRES=cygitkwish.o + +SNITKLIBSPEC=itk30.lib +SNITKLIB=${SNITKLIBSPEC} +SNITKDLL=snitk30.dll +SNITKWISH=snitkwish30.exe +SNITKDEF=itksn.def +SNITKTEST=snitktest.exe +SNIMPORTLIB=snitk30.lib +SNITKRES=snitk.obj +SNITKWISHRES=snitksh.obj + +if test "$GCC" = yes; then +ITKLIBSPEC=${CYGITKLIBSPEC} +ITKLIB=${CYGITKLIB} +ITKDLL=${CYGITKDLL} +ITKWISH=${CYGITKWISH} +ITKDEF=${CYGITKDEF} +ITKTEST=${CYGITKTEST} +ITKIMPORTLIB=${CYGIMPORTLIB} +ITKRES=${CYGITKRES} +ITKWISHRES=${CYGITKWISHRES} +else +ITKLIBSPEC=${SNITKLIBSPEC} +ITKLIB=${SNITKLIB} +ITKDLL=${SNITKDLL} +ITKWISH=${SNITKWISH} +ITKDEF=${SNITKDEF} +ITKTEST=${SNITKTEST} +ITKIMPORTLIB=${SNIMPORTLIB} +ITKRES=${SNITKRES} +ITKWISHRES=${SNITKWISHRES} +fi + +#-------------------------------------------------------------------- +# The statements below define a collection of symbols related to +# building libitk as a shared library instead of a static library. +#-------------------------------------------------------------------- + +# Check whether --enable-shared or --disable-shared was given. +if test "${enable_shared+set}" = set; then + enableval="$enable_shared" + ok=$enableval +else + ok=no +fi + +if test "$ok" = "yes" -a "${SHLIB_SUFFIX}" != ""; then + ITK_SHLIB_CFLAGS="${SHLIB_CFLAGS}" + eval "ITK_LIB_FILE=libitk${VERSION}${SHLIB_SUFFIX}" + ITK_PKG_FILE="[file join [file dirname \$dir] ${ITK_LIB_FILE}]" + MAKE_LIB="\${SHLIB_LD} -o ${ITK_LIB_FILE} ${LIBS} \${OBJS} ${SHLIB_LD_LIBS}" + RANLIB=":" +else + ITK_SHLIB_CFLAGS="" + eval "ITK_LIB_FILE=libitk${VERSION}.a" + ITK_PKG_FILE="" + MAKE_LIB="ar cr ${ITK_LIB_FILE} \${OBJS}" +fi + +# Note: in the following variable, it's important to use the absolute +# path name of the Tcl directory rather than "..": this is because +# AIX remembers this path and will attempt to use it at run-time to look +# up the Tcl library. + +if test "$GCC" = yes; then + ITK_BUILD_LIB_SPEC="-L`pwd` -l${ITKLIBSPEC}" + ITK_LIB_SPEC="-L${exec_prefix}/lib/ITK -l{ITKLIBSPEC}" + ITK_LIB_FULL_PATH="`pwd`/${ITKLIB}" +else + tmp="`pwd`/${ITKLIB}" + tmp2="`cygpath --windows $tmp`" + ITK_BUILD_LIB_SPEC="`echo $tmp2 | sed -e s#\\\\\\\\#/#g`" + ITK_LIB_FULL_PATH=${ITK_BUILD_LIB_SPEC} + tmp="${exec_prefix}/lib/ITK/${ITKLIB}" + tmp2="`cygpath --windows $tmp`" + ITK_LIB_SPEC="`echo $tmp2 | sed -e s#\\\\\\\\#/#g`" +fi + +if test "$GCC" = yes; then + BASELIBS="-lkernel32 $optlibs -ladvapi32 -luser32" + WINLIBS="-lgdi32 -lcomdlg32 -lwinspool" + LIBCDLL= +else + BASELIBS="kernel32.lib advapi32.lib user32.lib" + WINLIBS="gdi32.lib comdlg32.lib winspool.lib" + LIBCDLL="msvcrt.lib oldnames.lib" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +trap '' 1 2 15 +cat > confcache <<\EOF +# 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. It is not useful on other systems. +# If it contains results you don't want to keep, you may remove or edit it. +# +# By default, configure uses ./config.cache as the cache file, +# creating it if it does not exist already. You can give configure +# the --cache-file=FILE option to use a different cache file; that is +# what configure does when it calls configure scripts in +# subdirectories, so they share the cache. +# Giving --cache-file=/dev/null disables caching, for debugging configure. +# config.status only pays attention to the cache file if you give it the +# --recheck option to rerun configure. +# +EOF +# 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 \ + -e "s/'/'\\\\''/g" \ + -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" + ;; + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' + ;; + esac >> confcache +if cmp -s $cache_file confcache; then + : +else + if test -w $cache_file; then + echo "updating cache $cache_file" + cat confcache > $cache_file + else + echo "not updating unwritable cache $cache_file" + fi +fi +rm -f confcache + +trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +# Any assignment to VPATH causes Sun make to only execute +# the first set of double-colon rules, so remove it if not needed. +# If there is a colon in the path, we need to keep it. +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' +fi + +trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 + +# Transform confdefs.h into DEFS. +# Protect against shell expansion while executing Makefile rules. +# Protect against Makefile macro expansion. +cat > conftest.defs <<\EOF +s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g +s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g +s%\[%\\&%g +s%\]%\\&%g +s%\$%$$%g +EOF +DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '` +rm -f conftest.defs + + +# Without the "./", some shells look in PATH for config.status. +: ${CONFIG_STATUS=./config.status} + +echo creating $CONFIG_STATUS +rm -f $CONFIG_STATUS +cat > $CONFIG_STATUS </dev/null | sed 1q`: +# +# $0 $ac_configure_args +# +# Compiler output produced by configure, useful for debugging +# configure, is in ./config.log if it exists. + +ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" +for ac_option +do + case "\$ac_option" in + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" + exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; + -version | --version | --versio | --versi | --vers | --ver | --ve | --v) + echo "$CONFIG_STATUS generated by autoconf version 2.13" + exit 0 ;; + -help | --help | --hel | --he | --h) + echo "\$ac_cs_usage"; exit 0 ;; + *) echo "\$ac_cs_usage"; exit 1 ;; + esac +done + +ac_given_srcdir=$srcdir +ac_given_INSTALL="$INSTALL" + +trap 'rm -fr `echo "Makefile ../unix/pkgIndex.tcl ../itkConfig.sh" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 +EOF +cat >> $CONFIG_STATUS < conftest.subs <<\\CEOF +$ac_vpsub +$extrasub +s%@SHELL@%$SHELL%g +s%@CFLAGS@%$CFLAGS%g +s%@CPPFLAGS@%$CPPFLAGS%g +s%@CXXFLAGS@%$CXXFLAGS%g +s%@FFLAGS@%$FFLAGS%g +s%@DEFS@%$DEFS%g +s%@LDFLAGS@%$LDFLAGS%g +s%@LIBS@%$LIBS%g +s%@exec_prefix@%$exec_prefix%g +s%@prefix@%$prefix%g +s%@program_transform_name@%$program_transform_name%g +s%@bindir@%$bindir%g +s%@sbindir@%$sbindir%g +s%@libexecdir@%$libexecdir%g +s%@datadir@%$datadir%g +s%@sysconfdir@%$sysconfdir%g +s%@sharedstatedir@%$sharedstatedir%g +s%@localstatedir@%$localstatedir%g +s%@libdir@%$libdir%g +s%@includedir@%$includedir%g +s%@oldincludedir@%$oldincludedir%g +s%@infodir@%$infodir%g +s%@mandir@%$mandir%g +s%@host@%$host%g +s%@host_alias@%$host_alias%g +s%@host_cpu@%$host_cpu%g +s%@host_vendor@%$host_vendor%g +s%@host_os@%$host_os%g +s%@RANLIB@%$RANLIB%g +s%@CC@%$CC%g +s%@OBJEXT@%$OBJEXT%g +s%@build@%$build%g +s%@build_alias@%$build_alias%g +s%@build_cpu@%$build_cpu%g +s%@build_vendor@%$build_vendor%g +s%@build_os@%$build_os%g +s%@NM@%$NM%g +s%@AS@%$AS%g +s%@LD@%$LD%g +s%@DLLTOOL@%$DLLTOOL%g +s%@WINDRES@%$WINDRES%g +s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g +s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g +s%@INSTALL_DATA@%$INSTALL_DATA%g +s%@DLL_LDFLAGS@%$DLL_LDFLAGS%g +s%@DLL_LDLIBS@%$DLL_LDLIBS%g +s%@ITCLSH@%$ITCLSH%g +s%@CPP@%$CPP%g +s%@XINCLUDES@%$XINCLUDES%g +s%@DL_LIBS@%$DL_LIBS%g +s%@LD_FLAGS@%$LD_FLAGS%g +s%@MATH_LIBS@%$MATH_LIBS%g +s%@MAKE_LIB@%$MAKE_LIB%g +s%@SHLIB_CFLAGS@%$SHLIB_CFLAGS%g +s%@SHLIB_LD@%$SHLIB_LD%g +s%@SHLIB_LD_LIBS@%$SHLIB_LD_LIBS%g +s%@SHLIB_SUFFIX@%$SHLIB_SUFFIX%g +s%@SHLIB_VERSION@%$SHLIB_VERSION%g +s%@TCL_BIN_DIR@%$TCL_BIN_DIR%g +s%@TCL_BUILD_LIB_SPEC@%$TCL_BUILD_LIB_SPEC%g +s%@TCL_SRC_DIR@%$TCL_SRC_DIR%g +s%@TCL_VERSION@%$TCL_VERSION%g +s%@TCL_LIB_FILE@%$TCL_LIB_FILE%g +s%@TCL_LIB_FULL_PATH@%$TCL_LIB_FULL_PATH%g +s%@TK_BIN_DIR@%$TK_BIN_DIR%g +s%@TK_BUILD_LIB_SPEC@%$TK_BUILD_LIB_SPEC%g +s%@TK_SRC_DIR@%$TK_SRC_DIR%g +s%@TK_VERSION@%$TK_VERSION%g +s%@TK_LIB_FILE@%$TK_LIB_FILE%g +s%@TK_LIB_FULL_PATH@%$TK_LIB_FULL_PATH%g +s%@ITCL_BIN_DIR@%$ITCL_BIN_DIR%g +s%@ITCL_BUILD_LIB_SPEC@%$ITCL_BUILD_LIB_SPEC%g +s%@ITCL_MAJOR_VERSION@%$ITCL_MAJOR_VERSION%g +s%@ITCL_MINOR_VERSION@%$ITCL_MINOR_VERSION%g +s%@ITCL_SRC_DIR@%$ITCL_SRC_DIR%g +s%@ITCL_VERSION@%$ITCL_VERSION%g +s%@ITCL_LIB_FILE@%$ITCL_LIB_FILE%g +s%@ITCL_LIB_FULL_PATH@%$ITCL_LIB_FULL_PATH%g +s%@ITK_BUILD_LIB_SPEC@%$ITK_BUILD_LIB_SPEC%g +s%@ITK_LD_SEARCH_FLAGS@%$ITK_LD_SEARCH_FLAGS%g +s%@ITK_LIB_FILE@%$ITK_LIB_FILE%g +s%@ITK_LIB_FULL_PATH@%$ITK_LIB_FULL_PATH%g +s%@ITK_LIB_SPEC@%$ITK_LIB_SPEC%g +s%@ITK_PKG_FILE@%$ITK_PKG_FILE%g +s%@ITK_SHLIB_CFLAGS@%$ITK_SHLIB_CFLAGS%g +s%@ITK_SRC_DIR@%$ITK_SRC_DIR%g +s%@XLIBSW@%$XLIBSW%g +s%@CYGITKLIB@%$CYGITKLIB%g +s%@CYGITKDLL@%$CYGITKDLL%g +s%@CYGITKWISH@%$CYGITKWISH%g +s%@CYGITKDEF@%$CYGITKDEF%g +s%@CYGITKTEST@%$CYGITKTEST%g +s%@CYGIMPORTLIB@%$CYGIMPORTLIB%g +s%@CYGITKRES@%$CYGITKRES%g +s%@CYGITKWISHRES@%$CYGITKWISHRES%g +s%@SNITKLIB@%$SNITKLIB%g +s%@SNITKDLL@%$SNITKDLL%g +s%@SNITKWISH@%$SNITKWISH%g +s%@SNITKDEF@%$SNITKDEF%g +s%@SNITKTEST@%$SNITKTEST%g +s%@SNIMPORTLIB@%$SNIMPORTLIB%g +s%@SNITKRES@%$SNITKRES%g +s%@SNITKWISHRES@%$SNITKWISHRES%g +s%@ITKLIB@%$ITKLIB%g +s%@ITKDLL@%$ITKDLL%g +s%@ITKWISH@%$ITKWISH%g +s%@ITKDEF@%$ITKDEF%g +s%@ITKTEST@%$ITKTEST%g +s%@ITKIMPORTLIB@%$ITKIMPORTLIB%g +s%@ITKRES@%$ITKRES%g +s%@ITKWISHRES@%$ITKWISHRES%g +s%@BASELIBS@%$BASELIBS%g +s%@WINLIBS@%$WINLIBS%g +s%@LIBCDLL@%$LIBCDLL%g + +CEOF +EOF + +cat >> $CONFIG_STATUS <<\EOF + +# 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_cmds=90 # Maximum number of lines to put in a sed script. +ac_file=1 # Number of current file. +ac_beg=1 # First line for current file. +ac_end=$ac_max_sed_cmds # 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" conftest.subs > conftest.s$ac_file + else + sed "${ac_end}q" conftest.subs > conftest.s$ac_file + fi + if test ! -s conftest.s$ac_file; then + ac_more_lines=false + rm -f conftest.s$ac_file + else + if test -z "$ac_sed_cmds"; then + ac_sed_cmds="sed -f conftest.s$ac_file" + else + ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" + fi + ac_file=`expr $ac_file + 1` + ac_beg=$ac_end + ac_end=`expr $ac_end + $ac_max_sed_cmds` + fi +done +if test -z "$ac_sed_cmds"; then + ac_sed_cmds=cat +fi +EOF + +cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF +for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then + # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". + case "$ac_file" in + *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` + ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + *) ac_file_in="${ac_file}.in" ;; + esac + + # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. + + # Remove last slash and all that follows it. Not all systems have dirname. + ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` + if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then + # The file is in a subdirectory. + test ! -d "$ac_dir" && mkdir "$ac_dir" + ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" + # A "../" for each directory in $ac_dir_suffix. + ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` + else + ac_dir_suffix= ac_dots= + fi + + case "$ac_given_srcdir" in + .) srcdir=. + if test -z "$ac_dots"; then top_srcdir=. + else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; + /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; + *) # Relative path. + srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" + top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + + case "$ac_given_INSTALL" in + [/$]*) INSTALL="$ac_given_INSTALL" ;; + *) INSTALL="$ac_dots$ac_given_INSTALL" ;; + esac + + echo creating "$ac_file" + rm -f "$ac_file" + configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." + case "$ac_file" in + *Makefile*) ac_comsub="1i\\ +# $configure_input" ;; + *) ac_comsub= ;; + esac + + ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` + sed -e "$ac_comsub +s%@configure_input@%$configure_input%g +s%@srcdir@%$srcdir%g +s%@top_srcdir@%$top_srcdir%g +s%@INSTALL@%$INSTALL%g +" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file +fi; done +rm -f conftest.s* + +EOF +cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF + +exit 0 +EOF +chmod +x $CONFIG_STATUS +rm -fr confdefs* $ac_clean_files +test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 + +
configure Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: Makefile.in =================================================================== --- Makefile.in (nonexistent) +++ Makefile.in (revision 1765) @@ -0,0 +1,433 @@ +# This file is CYGNUS LOCAL. It is a copy of makefile.vc modified for +# GNU make. +# +# Visual C++ 4.0 makefile +# +# Copyright (c) 1993-1996 Lucent Technologies +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +VPATH = @srcdir@:@srcdir@/../generic:@srcdir@/../unix +srcdir = @srcdir@ +libdir=@libdir@ +bindir=@bindir@ +includedir=@includedir@ +mandir=@mandir@ +datadir=@datadir@ + +CC = @CC@ +CFLAGS = @CFLAGS@ +NM = @NM@ +AS = @AS@ +LD = @LD@ +DLLTOOL = @DLLTOOL@ +WINDRES = @WINDRES@ +OBJEXT = @OBJEXT@ + +DLL_LDFLAGS = @DLL_LDFLAGS@ +DLL_LDLIBS = @DLL_LDLIBS@ + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ + +# +# Project directories +# +# ROOT = top of source tree +# +# TMPDIR = location where .obj files should be stored during build +# + +ROOT = @ITK_SRC_DIR@ +TMPDIR = . + +TCLLIBDIR = @TCL_BIN_DIR@ +TKLIBDIR = @TK_BIN_DIR@ +ITCLLIBDIR = @ITCL_BIN_DIR@ + +TCLSRCDIR = @TCL_SRC_DIR@ +TKSRCDIR = @TK_SRC_DIR@ +ITCLSRCDIR = @ITCL_SRC_DIR@ + + +SRC_INC_DIR = $(ROOT)/generic +SRC_WIN_DIR = $(ROOT)/win +SRC_UNIX_DIR = $(ROOT)/unix +SRC_LIB_DIR = $(ROOT)/library +SRC_MAN_DIR = $(ROOT)/doc + +# +# Here are all the built files we will need: +# + +ITCL_VERSION = @ITCL_VERSION@ +VERSION = 30 + +CYGITKLIB = @CYGITKLIB@ +CYGITKDLL = @CYGITKDLL@ +CYGITKWISH = @CYGITKWISH@ +CYGITKDEF = @CYGITKDEF@ +CYGITKTEST = @CYGITKTEST@ +CYGIMPORTLIB = @CYGIMPORTLIB@ +CYGITKRES = @CYGITKRES@ +CYGITKWISHRES = @CYGITKWISHRES@ + +SNITKLIB = @SNITKLIB@ +SNITKDLL = @SNITKDLL@ +SNITKWISH = @SNITKWISH@ +SNITKDEF = @SNITKDEF@ +SNITKTEST = @SNITKTEST@ +SNIMPORTLIB = @SNIMPORTLIB@ +SNITKRES = @SNITKRES@ +SNITKWISHRES = @SNITKWISHRES@ + +ITKLIB = @ITKLIB@ +ITKDLL = @ITKDLL@ +ITKWISH = @ITKWISH@ +ITKDEF = @ITKDEF@ +ITKTEST = @ITKTEST@ +ITKIMPORTLIB = @ITKIMPORTLIB@ +ITKRES = @ITKRES@ +ITKWISHRES = @ITKWISHRES@ + + +# Directory in which to install the library of Itcl scripts and demos +# (note: you can set the ITK_LIBRARY environment variable at run-time to +# override the compiled-in location): +ITK_LIBRARY = $(prefix)/share/itk$(ITCL_VERSION) + +# Directory in which to install the archive libitcl.a: +INSTALL_LIB_DIR = $(libdir) + +# Directory in which to install the program itclsh: +INSTALL_BIN_DIR = $(bindir) + +# Directory in which to install the include file itcl.h: +INSTALL_INCLUDE_DIR = $(includedir) + +# Top-level directory for manual entries: +INSTALL_MAN_DIR = $(mandir) + +# Directory in which to install manual entry for itclsh: +INSTALL_MAN1_DIR = $(INSTALL_MAN_DIR)/man1 + +# Directory in which to install manual entries for Itcl's C library +# procedures: +INSTALL_MAN3_DIR = $(INSTALL_MAN_DIR)/man3 + +# Directory in which to install manual entries for the built-in +# Tcl commands implemented by Itcl: +INSTALL_MANN_DIR = $(INSTALL_MAN_DIR)/mann + + +# Comment the following line to compile with symbols +NODEBUG=1 + +# uncomment the following two lines to compile with TCL_MEM_DEBUG +#DEBUGDEFINES = -DTCL_MEM_DEBUG + +ITKWISHOBJS = \ + $(TKLIBDIR)/tkConsole.$(OBJEXT) \ + $(TMPDIR)/winMain.$(OBJEXT) + +TKTESTOBJS = \ + $(TMPDIR)/tkConsole.$(OBJEXT) \ + $(TMPDIR)/tkTest.$(OBJEXT) \ + $(TMPDIR)/tkSquare.$(OBJEXT) \ + $(TMPDIR)/testMain.$(OBJEXT) + +ITKOBJS = \ + $(TMPDIR)/itk_archetype.$(OBJEXT) \ + $(TMPDIR)/itk_cmds.$(OBJEXT) \ + $(TMPDIR)/itk_option.$(OBJEXT) \ + $(TMPDIR)/itk_util.$(OBJEXT) \ + $(TMPDIR)/dllEntryPoint.$(OBJEXT) + +DUMPEXTS = $(TCLLIBDIR)/dumpexts.exe + +TCLLIB = @TCL_LIB_FILE@ +TCL_BUILD_LIB_SPEC = @TCL_BUILD_LIB_SPEC@ +TCL_LIB_FULL_PATH = @TCL_LIB_FULL_PATH@ +TKLIB = @TK_LIB_FILE@ +TK_BUILD_LIB_SPEC = @TK_BUILD_LIB_SPEC@ +TK_LIB_FULL_PATH = @TK_LIB_FULL_PATH@ +ITCLLIB = @ITCL_LIB_FILE@ +ITCL_BUILD_LIB_SPEC = @ITCL_BUILD_LIB_SPEC@ +ITCL_LIB_FULL_PATH = @ITCL_LIB_FULL_PATH@ + +TCL_INCLUDES = -I$(TCLSRCDIR)/generic -I$(TCLSRCDIR)/win +TK_INCLUDES = -I$(TKSRCDIR)/generic -I$(TKSRCDIR)/win -I$(TKSRCDIR)/xlib +ITCL_INCLUDES = -I$(ITCLSRCDIR)/generic -I$(ITCLSRCDIR)/win +ITK_INCLUDES = -I$(SRC_INC_DIR) -I$(SRC_WIN_DIR) $(ITCL_INCLUDES) \ + $(TCL_INCLUDES) $(TK_INCLUDES) + +ITK_DEFINES = -D__WIN32__ $(DEBUGDEFINES) -DDLL_BUILD -DBUILD_itk -D_DLL +ITK_CFLAGS = $(ITK_INCLUDES) $(ITK_DEFINES) $(CFLAGS) + +CPU = i386 + +###################################################################### +# Link flags +###################################################################### + +conlflags = -Wl,--subsystem,console -mwindows +guilflags = -mwindows +dlllflags = + +baselibs = @BASELIBS@ +winlibs = @WINLIBS@ +libcdll = @LIBCDLL@ + +guilibs = $(baselibs) $(winlibs) +conlibs = $(baselibs) +guilibsdll = $(libcdll) $(baselibs) $(winlibs) +conlibsdll = $(libcdll) $(baselibs) + +# +# Targets +# + +release: $(ITKDLL) $(ITKWISH) $(ITKLIB) +all: $(ITKDLL) $(ITKWISH) $(ITKLIB) +test: $(ITKWISH) + $(CP) $(TCLLIBDIR)\*.dll + $(ITKWISH) << + cd ../tests + source all + +$(TMPDIR)/$(CYGITKDEF): $(ITKOBJS) + echo 'EXPORTS' > tmp.def + -for o in $(ITKOBJS); do \ + $(NM) --extern-only --defined-only $$o | sed -e 's/[^ ]* [^ ]* //' -e 's/^_//' | fgrep -v DllEntryPoint | fgrep -v DllMain | fgrep -v impure_ptr >> tmp.def; \ + done + mv tmp.def $(TMPDIR)/$(CYGITKDEF) + +$(CYGITKDLL): $(ITKOBJS) $(TMPDIR)/$(CYGITKDEF) $(TMPDIR)/$(CYGITKRES) + $(CC) -s $(DLL_LDFLAGS) -Wl,--base-file,itk.base \ + -o $(CYGITKDLL) $(ITKOBJS) $(TMPDIR)/$(CYGITKRES) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows -Wl,-e,_DllMain@12 \ + -Wl,--image-base,0x66800000 + $(DLLTOOL) --as=$(AS) --dllname $(CYGITKDLL) --def $(TMPDIR)/$(CYGITKDEF) \ + --base-file itk.base --output-exp itk.exp + $(CC) -s $(DLL_LDFLAGS) -Wl,--base-file,itk.base -Wl,itk.exp \ + -o $(CYGITKDLL) $(ITKOBJS) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows -Wl,-e,_DllMain@12 \ + -Wl,--image-base,0x66800000 + $(DLLTOOL) --as=$(AS) --dllname $(ITKDLL) --def $(TMPDIR)/$(CYGITKDEF) \ + --base-file itk.base --output-exp itk.exp + $(CC) $(DLL_LDFLAGS) -Wl,itk.exp -o $(CYGITKDLL) $(ITKOBJS) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows \ + -Wl,-e,_DllMain@12 -Wl,--image-base,0x66800000 + +$(CYGITKLIB): $(TMPDIR)/$(CYGITKDEF) + $(DLLTOOL) --as=$(AS) --dllname $(ITKDLL) --def $(TMPDIR)/$(CYGITKDEF) \ + --output-lib $(CYGITKLIB) + +$(CYGITKWISH): $(ITKWISHOBJS) $(CYGITKLIB) $(TMPDIR)/$(CYGITKWISHRES) + $(CC) $(ldebug) $(guilflags) $(ITKWISHOBJS) $(ITK_CFLAGS) $(TMPDIR)/$(CYGITKWISHRES) \ + $(ITKLIB) $(TKLIBDIR)/$(TKLIB) \ + $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(guilibsdll) \ + -o $(CYGITKWISH) + +$(CYGITKTEST): $(ITKTESTOBJS) $(CYGITKLIB) $(TMPDIR)/$(CYGITKWISHRES) + $(CC) $(ldebug) $(guilflags) $(WISHOBJS) $(ITK_CFLAGS) $(TMPDIR)/$(CYGITKWISHRES) \ + $(CYGITKLIB) $(TKLIBDIR)/$(TKLIB) \ + $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(guilibsdll) \ + -o $(CYGITKTEST) + +$(TMPDIR)/$(CYGITKRES): $(ROOT)/win/rc/itk.rc + $(WINDRES) --include $(ROOT)/win/rc --include $(ROOT)/generic \ + --include $(ITCLSRCDIR)/generic \ + --include $(TCLSRCDIR)/generic --include $(TKSRCDIR)/generic \ + --define VS_VERSION_INFO=1 $(ROOT)/win/rc/itk.rc $(TMPDIR)/$(CYGITKRES) + +$(TMPDIR)/$(CYGITKWISHRES): $(ROOT)/win/rc/itkwish.rc + $(WINDRES) --include $(ROOT)/win/rc --include $(ITCLSRCDIR)/generic \ + --include $(TCLSRCDIR)/generic --include $(TKSRCDIR)/generic\ + --include $(ROOT)/generic --define VS_VERSION_INFO=1 \ + $(ROOT)/win/rc/itkwish.rc $(TMPDIR)/$(CYGITKWISHRES) + +# Visual C++ specific targets + +$(TMPDIR)/$(SNITKDEF): $(DUMPEXTS) $(ITKOBJS) + $(DUMPEXTS) -o $@ $(SNITKDLL) $(ITKOBJS) + +$(SNITKDLL): $(ITKOBJS) $(TMPDIR)/$(SNITKDEF) $(TMPDIR)/$(SNITKRES) $(TCL_LIB_FULL_PATH) \ + $(TK_LIB_FULL_PATH) $(ITCL_LIB_FULL_PATH) + link.exe -DEBUG -dll -def:$(TMPDIR)/$(SNITKDEF) -NODEFAULTLIB \ + -out:$(SNITKDLL) $(guilibsdll) $(ITKOBJS) $(TMPDIR)/$(SNITKRES) \ + $(TCL_BUILD_LIB_SPEC) $(TK_BUILD_LIB_SPEC) $(ITCL_BUILD_LIB_SPEC) + +$(SNITKLIB) $(SNIMPORTLIB): + cp $(SNIMPORTLIB) $(SNITKLIB) + +$(SNITKWISH): $(ITKWISHOBJS) $(SNITKLIB) $(TMPDIR)/$(SNITKWISHRES) $(TCL_LIB_FULL_PATH) \ + $(TK_LIB_FULL_PATH) $(ITCL_LIB_FULL_PATH) + link.exe -DEBUG -NODEFAULTLIB -entry:WinMainCRTStartup \ + -out:$@ $(guilibsdll) $(ITKWISHOBJS) $(TMPDIR)/$(SNITKWISHRES) \ + $(SNITKLIB) $(TCL_BUILD_LIB_SPEC) $(TK_BUILD_LIB_SPEC) \ + $(ITCL_BUILD_LIB_SPEC) + +$(SNITKTEST): $(ITKWISHOBJS) $(ITCLTESTOBJS) $(SNITKLIB) $(TMPDIR)/$(SNITKWISHRES) \ + $(TCL_LIB_FULL_PATH) $(TK_LIB_FULL_PATH) $(ITCL_LIB_FULL_PATH) + link.exe -DEBUG -NODEFAULTLIB -entry:WinMainCRTStartup \ + -out $@ $(guilibsdll) $(ITKWISHOBJS) $(TMPDIR)/$(SNITKWISHRES) \ + $(SNITKLIB) $(TCL_BUILD_LIB_SPEC) $(TK_BUILD_LIB_SPEC) \ + $(ITCL_BUILD_LIB_SPEC) + +$(TMPDIR)/$(SNITKWISHRES):: $(SRC_WIN_DIR)/rc/itkwish.rc + rc $(ITK_INCLUDES) -d__WIN32__ -dVS_VERSION_INFO=1 -fo$@ $? + +$(TMPDIR)/$(SNITKRES):: $(SRC_WIN_DIR)/rc/itk.rc + rc $(ITK_INCLUDES) -d__WIN32__ -dVS_VERSION_INFO=1 -fo$@ $? + +# +# Special case object file targets +# + +$(TMPDIR)/testMain.$(OBJEXT): $(ROOT)/win/winMain.c + $(CC) -c $(ITK_CFLAGS) -DTCL_TEST -DTK_TEST -DSTATIC_BUILD -o $@ $? + +$(TMPDIR)/winMain.$(OBJEXT): $(ROOT)/win/winMain.c + $(CC) -c $(ITK_CFLAGS) -DSTATIC_BUILD -o $@ $? + +# +# Implicit rules +# + +$(TMPDIR)/%.$(OBJEXT): $(SRC_INC_DIR)/%.c + $(CC) -c $(ITK_CFLAGS) -o $@ $< + +$(TMPDIR)/%.$(OBJEXT): $(SRC_WIN_DIR)/%.c + $(CC) -c $(ITK_CFLAGS) -o $@ $< + +clean: + + rm -f $(TMPDIR)/*.$(OBJEXT) $(TMPDIR)/*.exp $(TMPDIR)/*.def + rm -f $(ITKLIB) $(ITKDLL) $(ITKDLL) $(ITKWISH) + + +Makefile: $(srcdir)/Makefile.in config.status + $(SHELL) config.status + +config.status: $(srcdir)/configure + ./config.status --recheck + +#---------------------------------------------------------------------- +# +# Installation +# +#---------------------------------------------------------------------- + + +install:: install-basic install-binaries + @echo done + +install-binaries:: + @for i in $(INSTALL_LIB_DIR) $(INSTALL_BIN_DIR) ; \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @echo "Installing $(ITKLIB) as $(INSTALL_LIB_DIR)/$(ITKLIB)" + @$(INSTALL_DATA) $(ITKLIB) $(INSTALL_LIB_DIR)/$(ITKLIB) + @echo "Installing $(ITKWISH) as $(INSTALL_BIN_DIR)/$(ITKWISH)" + @$(INSTALL_PROGRAM) $(ITKWISH) $(INSTALL_BIN_DIR)/$(ITKWISH) + @echo "Installing $(ITKDLL) as $(INSTALL_BIN_DIR)/$(ITKDLL)" + @$(INSTALL_PROGRAM) $(ITKDLL) $(INSTALL_BIN_DIR)/$(ITKDLL) + +# +# Basic installation +# +install-basic:: install-libraries install-headers \ + install-man + + +install-headers: + @for i in $(INSTALL_INCLUDE_DIR); \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @for i in $(SRC_INC_DIR)/itk.h; \ + do \ + echo "Installing $$i"; \ + $(INSTALL_DATA) $$i $(INSTALL_INCLUDE_DIR); \ + done; + +install-libraries: install-shared-libraries + @for i in $(prefix)/lib $(ITK_LIBRARY); \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @for i in $(SRC_LIB_DIR)/*.tcl $(SRC_LIB_DIR)/*.itk; \ + do \ + echo "Installing $$i"; \ + $(INSTALL_DATA) $$i $(ITK_LIBRARY); \ + done; + + @echo "Installing pkgIndex.tcl" + @$(INSTALL_DATA) $(srcdir)/pkgIndex.tcl $(ITK_LIBRARY) + + @echo "Installing tclIndex" + @$(INSTALL_DATA) $(SRC_LIB_DIR)/tclIndex $(ITK_LIBRARY) + +install-shared-libraries: + @echo "Installing $(ITKDLL) as $(INSTALL_BIN_DIR)/$(ITKDLL)" + @$(INSTALL_PROGRAM) $(ITKDLL) $(INSTALL_BIN_DIR)/$(ITKDLL) + +install-man: + @for i in $(INSTALL_MAN_DIR) $(INSTALL_MAN1_DIR) \ + $(INSTALL_MAN3_DIR) $(INSTALL_MANN_DIR) ; \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @cd $(SRC_MAN_DIR); for i in *.n ; \ + do \ + echo "Installing doc/$$i"; \ + rm -f $(INSTALL_MANN_DIR)/$$i; \ + sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ + $$i > $(INSTALL_MANN_DIR)/$$i; \ + chmod 444 $(INSTALL_MANN_DIR)/$$i; \ + done; \ + for i in *.1 ; \ + do \ + echo "Installing doc/$$i"; \ + rm -f $(INSTALL_MAN1_DIR)/$$i; \ + sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ + $$i > $(INSTALL_MAN1_DIR)/$$i; \ + chmod 444 $(INSTALL_MAN1_DIR)/$$i; \ + done; + +install-info info installcheck: + +install-minimal: install-libraries + @echo "Installing $(ITKDLL) as $(INSTALL_BIN_DIR)/$(ITKDLL)" + @$(INSTALL_PROGRAM) $(ITKDLL) $(INSTALL_BIN_DIR)/$(ITKDLL)
Makefile.in Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: winMain.c =================================================================== --- winMain.c (nonexistent) +++ winMain.c (revision 1765) @@ -0,0 +1,354 @@ +/* + * winMain.c -- + * + * Main entry point for wish and other Tk-based applications. + * + * Copyright (c) 1995 Sun Microsystems, Inc. + * + * See the file "license.terms" for information on usage and redistribution + * of this file, and for a DISCLAIMER OF ALL WARRANTIES. + * + * SCCS: @(#) winMain.c 1.33 96/12/17 12:56:14 + */ + +#include +#define WIN32_LEAN_AND_MEAN +#include +#undef WIN32_LEAN_AND_MEAN +#include +#include + +#include "itk.h" + +/* include tclInt.h for access to namespace API */ +#include "tclInt.h" + +/* + * The following declarations refer to internal Tk routines. These + * interfaces are available for use, but are not supported. + */ + +EXTERN void TkConsoleCreate(void); +EXTERN int TkConsoleInit(Tcl_Interp *interp); + +/* + * Forward declarations for procedures defined later in this file: + */ + +static void setargv _ANSI_ARGS_((int *argcPtr, char ***argvPtr)); +static void WishPanic _ANSI_ARGS_(TCL_VARARGS(char *,format)); + +#ifdef TK_TEST +EXTERN int Tktest_Init(Tcl_Interp *interp); +#endif /* TK_TEST */ + + +/* + *---------------------------------------------------------------------- + * + * WinMain -- + * + * Main entry point from Windows. + * + * Results: + * Returns false if initialization fails, otherwise it never + * returns. + * + * Side effects: + * Just about anything, since from here we call arbitrary Tcl code. + * + *---------------------------------------------------------------------- + */ + +int APIENTRY +WinMain(hInstance, hPrevInstance, lpszCmdLine, nCmdShow) + HINSTANCE hInstance; + HINSTANCE hPrevInstance; + LPSTR lpszCmdLine; + int nCmdShow; +{ + char **argv, *p; + int argc; + char buffer[MAX_PATH]; + + Tcl_SetPanicProc(WishPanic); + + /* + * Set up the default locale to be standard "C" locale so parsing + * is performed correctly. + */ + + setlocale(LC_ALL, "C"); + + + /* + * Increase the application queue size from default value of 8. + * At the default value, cross application SendMessage of WM_KILLFOCUS + * will fail because the handler will not be able to do a PostMessage! + * This is only needed for Windows 3.x, since NT dynamically expands + * the queue. + */ + SetMessageQueue(64); + + /* + * Create the console channels and install them as the standard + * channels. All I/O will be discarded until TkConsoleInit is + * called to attach the console to a text widget. + */ + + TkConsoleCreate(); + + setargv(&argc, &argv); + + /* + * Replace argv[0] with full pathname of executable, and forward + * slashes substituted for backslashes. + */ + + GetModuleFileName(NULL, buffer, sizeof(buffer)); + argv[0] = buffer; + for (p = buffer; *p != '\0'; p++) { + if (*p == '\\') { + *p = '/'; + } + } + + Tk_Main(argc, argv, Tcl_AppInit); + return 1; +} + + +/* + *---------------------------------------------------------------------- + * + * Tcl_AppInit -- + * + * This procedure performs application-specific initialization. + * Most applications, especially those that incorporate additional + * packages, will have their own version of this procedure. + * + * Results: + * Returns a standard Tcl completion code, and leaves an error + * message in interp->result if an error occurs. + * + * Side effects: + * Depends on the startup script. + * + *---------------------------------------------------------------------- + */ + +int +Tcl_AppInit(interp) + Tcl_Interp *interp; /* Interpreter for application. */ +{ + if (Tcl_Init(interp) == TCL_ERROR) { + goto error; + } + if (Tk_Init(interp) == TCL_ERROR) { + goto error; + } + Tcl_StaticPackage(interp, "Tk", Tk_Init, Tk_SafeInit); + + if (Itcl_Init(interp) == TCL_ERROR) { + return TCL_ERROR; + } + if (Itk_Init(interp) == TCL_ERROR) { + return TCL_ERROR; + } + Tcl_StaticPackage(interp, "Itcl", Itcl_Init, Itcl_SafeInit); + Tcl_StaticPackage(interp, "Itk", Itk_Init, (Tcl_PackageInitProc *) NULL); + + /* + * This is itkwish, so import all [incr Tcl] commands by + * default into the global namespace. Fix up the autoloader + * to do the same. + */ + if (Tcl_Import(interp, Tcl_GetGlobalNamespace(interp), + "::itk::*", /* allowOverwrite */ 1) != TCL_OK) { + return TCL_ERROR; + } + + if (Tcl_Import(interp, Tcl_GetGlobalNamespace(interp), + "::itcl::*", /* allowOverwrite */ 1) != TCL_OK) { + return TCL_ERROR; + } + + if (Tcl_Eval(interp, "auto_mkindex_parser::slavehook { _%@namespace import -force ::itcl::* ::itk::* }") != TCL_OK) { + return TCL_ERROR; + } + + /* + * Initialize the console only if we are running as an interactive + * application. + */ + + if (TkConsoleInit(interp) == TCL_ERROR) { + goto error; + } + +#ifdef TK_TEST + if (Tktest_Init(interp) == TCL_ERROR) { + goto error; + } + Tcl_StaticPackage(interp, "Tktest", Tktest_Init, + (Tcl_PackageInitProc *) NULL); +#endif /* TK_TEST */ + + Tcl_SetVar(interp, "tcl_rcFileName", "~/itkwishrc.tcl", TCL_GLOBAL_ONLY); + return TCL_OK; + +error: + WishPanic(interp->result); + return TCL_ERROR; +} + +/* + *---------------------------------------------------------------------- + * + * WishPanic -- + * + * Display a message and exit. + * + * Results: + * None. + * + * Side effects: + * Exits the program. + * + *---------------------------------------------------------------------- + */ + +void +WishPanic TCL_VARARGS_DEF(char *,arg1) +{ + va_list argList; + char buf[1024]; + char *format; + + format = TCL_VARARGS_START(char *,arg1,argList); + vsprintf(buf, format, argList); + + MessageBeep(MB_ICONEXCLAMATION); + MessageBox(NULL, buf, "Fatal Error in Wish", + MB_ICONSTOP | MB_OK | MB_TASKMODAL | MB_SETFOREGROUND); +#ifdef _MSC_VER + DebugBreak(); +#endif + ExitProcess(1); +} +/* + *------------------------------------------------------------------------- + * + * setargv -- + * + * Parse the Windows command line string into argc/argv. Done here + * because we don't trust the builtin argument parser in crt0. + * Windows applications are responsible for breaking their command + * line into arguments. + * + * 2N backslashes + quote -> N backslashes + begin quoted string + * 2N + 1 backslashes + quote -> literal + * N backslashes + non-quote -> literal + * quote + quote in a quoted string -> single quote + * quote + quote not in quoted string -> empty string + * quote -> begin quoted string + * + * Results: + * Fills argcPtr with the number of arguments and argvPtr with the + * array of arguments. + * + * Side effects: + * Memory allocated. + * + *-------------------------------------------------------------------------- + */ + +static void +setargv(argcPtr, argvPtr) + int *argcPtr; /* Filled with number of argument strings. */ + char ***argvPtr; /* Filled with argument strings (malloc'd). */ +{ + char *cmdLine, *p, *arg, *argSpace; + char **argv; + int argc, size, inquote, copy, slashes; + + cmdLine = GetCommandLine(); + + /* + * Precompute an overly pessimistic guess at the number of arguments + * in the command line by counting non-space spans. + */ + + size = 2; + for (p = cmdLine; *p != '\0'; p++) { + if (isspace(*p)) { + size++; + while (isspace(*p)) { + p++; + } + if (*p == '\0') { + break; + } + } + } + argSpace = (char *) ckalloc((unsigned) (size * sizeof(char *) + + strlen(cmdLine) + 1)); + argv = (char **) argSpace; + argSpace += size * sizeof(char *); + size--; + + p = cmdLine; + for (argc = 0; argc < size; argc++) { + argv[argc] = arg = argSpace; + while (isspace(*p)) { + p++; + } + if (*p == '\0') { + break; + } + + inquote = 0; + slashes = 0; + while (1) { + copy = 1; + while (*p == '\\') { + slashes++; + p++; + } + if (*p == '"') { + if ((slashes & 1) == 0) { + copy = 0; + if ((inquote) && (p[1] == '"')) { + p++; + copy = 1; + } else { + inquote = !inquote; + } + } + slashes >>= 1; + } + + while (slashes) { + *arg = '\\'; + arg++; + slashes--; + } + + if ((*p == '\0') || (!inquote && isspace(*p))) { + break; + } + if (copy != 0) { + *arg = *p; + arg++; + } + p++; + } + *arg = '\0'; + argSpace = arg + 1; + } + argv[argc] = NULL; + + *argcPtr = argc; + *argvPtr = argv; +} +
winMain.c Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor56.cur =================================================================== --- rc/cursor56.cur (nonexistent) +++ rc/cursor56.cur (revision 1765) @@ -0,0 +1,2 @@ + +0( @€ÿÿÿ <Dˆˆ  @ @€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿñÿÿÿáÿÿÿÁÿÿÿÿÿÿÿÿþÿÿþÿÿüÿÿüÿÿøÿÿðÿÿðÿÿà?ÿÿÀ?ÿÿÀÿÿÀÿÿÿ \ No newline at end of file
rc/cursor56.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor92.cur =================================================================== --- rc/cursor92.cur (nonexistent) +++ rc/cursor92.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€@@a 0'ÈI¦(ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ?ÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿ aÿÿÿÿÿÿ€ÿÿ@ÿÿ ÿÿè‘ÿÿ \ No newline at end of file
rc/cursor92.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor58.cur =================================================================== --- rc/cursor58.cur (nonexistent) +++ rc/cursor58.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ@xá€8!„CÃÂÀàð˜˜ðàÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÁÿÿÿÿ€ÿÿøÿÿ‡‡ÿÿcÿÿ00ÿÿp8ÿÿp>ÿÿàÿÿÀÿÿ€ÿÿ€ÿÿÀÿÿàÿÿð?ÿÿ \ No newline at end of file
rc/cursor58.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor94.cur =================================================================== --- rc/cursor94.cur (nonexistent) +++ rc/cursor94.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿøøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÀÿÿÀÿÿÀÿÿÀÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor94.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor96.cur =================================================================== --- rc/cursor96.cur (nonexistent) +++ rc/cursor96.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿààà?ð`È „ƒ‡ƒ‡Á a?ðàààÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿÀÿÿÀÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿÀÿÿÀÿÿÀÿÿ \ No newline at end of file
rc/cursor96.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor98.cur =================================================================== --- rc/cursor98.cur (nonexistent) +++ rc/cursor98.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿpÀ€€€€€€€€€€Àpÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿð‡ÿÿðÿÿðÿÿüÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿüÿÿðÿÿðÿÿð‡ÿÿ \ No newline at end of file
rc/cursor98.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor0a.cur =================================================================== --- rc/cursor0a.cur (nonexistent) +++ rc/cursor0a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ8Žˆˆˆ?þ(Š(Š(Š(Š?þˆˆˆ8Žÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‚ ÿÿ‚ ÿÿ‚ ÿÿâ#ÿÿ€ÿÿ€ÿÿ€ÿÿ‚ ÿÿ‚ ÿÿ€ÿÿ€ÿÿ€ÿÿâ#ÿÿ‚ ÿÿ‚ ÿÿ‚ ÿÿ \ No newline at end of file
rc/cursor0a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor0c.cur =================================================================== --- rc/cursor0c.cur (nonexistent) +++ rc/cursor0c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿÿüÿüÀÀÀÇðÆÅÄ€Ä@Ä ÄÀÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÇÿÿçÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor0c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor4a.cur =================================================================== --- rc/cursor4a.cur (nonexistent) +++ rc/cursor4a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿýýýýýýDEEUEUEUEUDEýýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿÀÿÿ \ No newline at end of file
rc/cursor4a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor0e.cur =================================================================== --- rc/cursor0e.cur (nonexistent) +++ rc/cursor0e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÿüÿü ?ŒŒŒŒŒŒ Œ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿáÿÿ€!ÿÿ€!ÿÿ€!ÿÿø!ÿÿð!ÿÿâ!ÿÿÆ!ÿÿŽ!ÿÿž!ÿÿÿáÿÿÿáÿÿ \ No newline at end of file
rc/cursor0e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor4c.cur =================================================================== --- rc/cursor4c.cur (nonexistent) +++ rc/cursor4c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?ð?ð00000000ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor4c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor4e.cur =================================================================== --- rc/cursor4e.cur (nonexistent) +++ rc/cursor4e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?ð?ð00000000ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿ‡ÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor4e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor8a.cur =================================================================== --- rc/cursor8a.cur (nonexistent) +++ rc/cursor8a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€€€€€€ˆ À€?þ?þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿæ3ÿÿâ#ÿÿðÿÿøÿÿüÿÿþ?ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ \ No newline at end of file
rc/cursor8a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor8c.cur =================================================================== --- rc/cursor8c.cur (nonexistent) +++ rc/cursor8c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€€€€€€€€þþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor8c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor8e.cur =================================================================== --- rc/cursor8e.cur (nonexistent) +++ rc/cursor8e.cur (revision 1765) @@ -0,0 +1,2 @@ + 0( @ÿÿÿ   +`  €ÀàààÀ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿãÿÿâÿÿâÿÿàÿÿàÿÿàÿÿô_ÿÿø?ÿÿðÿÿàÿÿàÿÿàÿÿðÿÿø?ÿÿüÿÿüÿÿ \ No newline at end of file
rc/cursor8e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor20.cur =================================================================== --- rc/cursor20.cur (nonexistent) +++ rc/cursor20.cur (revision 1765) @@ -0,0 +1,3 @@ + 0( @ÿÿÿB„¢ŠR”*¨Ð + ü~ü~ + Ð*¨R”¢ŠB„ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ™3ÿÿI$ÿÿ! ÿÿ‘ÿÿÉ'ÿÿ@ÿÿ€ÿÿþÿÿÿ€ÿÿ@ÿÿÉ'ÿÿ‘ÿÿ! ÿÿI$ÿÿ™3ÿÿ \ No newline at end of file
rc/cursor20.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor22.cur =================================================================== --- rc/cursor22.cur (nonexistent) +++ rc/cursor22.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿÿÿÿÿÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿ \ No newline at end of file
rc/cursor22.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor60.cur =================================================================== --- rc/cursor60.cur (nonexistent) +++ rc/cursor60.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ†F&ö&F†ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿÿÿðÿÿüðÿÿüpÿÿþ0ÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ0ÿÿüpÿÿüðÿÿÿðÿÿ \ No newline at end of file
rc/cursor60.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor24.cur =================================================================== --- rc/cursor24.cur (nonexistent) +++ rc/cursor24.cur (revision 1765) @@ -0,0 +1,3 @@ + 0( @ÿÿÿ€À + "ˆB„þþþþB„"ˆ + À€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿø?ÿÿðÿÿàÿÿÀÿÿˆ#ÿÿÿÿÿÿÿÿÿÿÿÿˆ#ÿÿÀÿÿàÿÿðÿÿø?ÿÿ \ No newline at end of file
rc/cursor24.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor62.cur =================================================================== --- rc/cursor62.cur (nonexistent) +++ rc/cursor62.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿøøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÀÿÿÀÿÿÀÿÿÀÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿ \ No newline at end of file
rc/cursor62.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor26.cur =================================================================== --- rc/cursor26.cur (nonexistent) +++ rc/cursor26.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÀððøøøøððÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøÿÿàÿÿàÿÿÀÿÿÀÿÿÀÿÿÀÿÿÀÿÿÀÿÿàÿÿàÿÿøÿÿÿÿÿÿ \ No newline at end of file
rc/cursor26.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor64.cur =================================================================== --- rc/cursor64.cur (nonexistent) +++ rc/cursor64.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿýýýýýýDEUEUEUEUEDEýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ \ No newline at end of file
rc/cursor64.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor28.cur =================================================================== --- rc/cursor28.cur (nonexistent) +++ rc/cursor28.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?ü    !„!„    ?üÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿÿñÿÿñÿÿŒ1ÿÿŒ1ÿÿŒ1ÿÿŒ1ÿÿñÿÿñÿÿ€ÿÿ€ÿÿ€ÿÿ \ No newline at end of file
rc/cursor28.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor66.cur =================================================================== --- rc/cursor66.cur (nonexistent) +++ rc/cursor66.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿþDDDGþD"D"D"D"â@"@"@"ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøÿÿÿÿÿÿÿÿˆÿÿˆÿÿÿÿÿÿÿÿˆÿÿÿÿ \ No newline at end of file
rc/cursor66.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor68.cur =================================================================== --- rc/cursor68.cur (nonexistent) +++ rc/cursor68.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ>8|xxxppp```@@ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿ€ÿÿÀÿÿÀÿÿàÿÿàÿÿðÿÿðÿÿøÿÿøÿÿüÿÿüÿÿþÿÿÿÿÿ \ No newline at end of file
rc/cursor68.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor1a.cur =================================================================== --- rc/cursor1a.cur (nonexistent) +++ rc/cursor1a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿþþxi–+Ô)”)”)”?ücÆD"OI’df3Ìøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ†`ÿÿ”(ÿÿ ÿÿ”)ÿÿ”)ÿÿ”)ÿÿ€ÿÿ˜ÿÿ°Lÿÿ ÿÿ¤$ÿÿ’ÿÿˆ1ÿÿÀÿÿ \ No newline at end of file
rc/cursor1a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor1c.cur =================================================================== --- rc/cursor1c.cur (nonexistent) +++ rc/cursor1c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?ø@@ÚšëªjªY@@ÀÀOâP` àÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿÀÿÿ \ No newline at end of file
rc/cursor1c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor5a.cur =================================================================== --- rc/cursor5a.cur (nonexistent) +++ rc/cursor5a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€€€€øø€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿÀÿÿÀÿÿÀÿÿÀÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor5a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor1e.cur =================================================================== --- rc/cursor1e.cur (nonexistent) +++ rc/cursor1e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿýþýþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿÿðÿÿðÿÿðÿÿðÿÿðÿÿÿÿÿÿÿÿÿÿÿÿðÿÿðÿÿðÿÿðÿÿðÿÿ \ No newline at end of file
rc/cursor1e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor5c.cur =================================================================== --- rc/cursor5c.cur (nonexistent) +++ rc/cursor5c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ€Àà€€€Àà p00pàÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿø?ÿÿðÿÿàÿÿðÿÿø?ÿÿø?ÿÿøÿÿðÿÿáÿÿÁ‡ÿÿÇÿÿÀÿÿàÿÿðÿÿø?ÿÿ \ No newline at end of file
rc/cursor5c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor5e.cur =================================================================== --- rc/cursor5e.cur (nonexistent) +++ rc/cursor5e.cur (revision 1765) @@ -0,0 +1,2 @@ + +0( @€ÿÿÿ  `ààààààà` ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóÿÿÿáÿÿÿáÿÿÿðÏÿÿðÿÿøÿÿÀÿÿÀÿÿàÿÿðÿÿøÿÿüÿÿþÿÿÿÿÿÿÿÿÿÏÿÿ \ No newline at end of file
rc/cursor5e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor30.cur =================================================================== --- rc/cursor30.cur (nonexistent) +++ rc/cursor30.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?ü"D&d,48!„!„8,4&d"D?üÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ˜ÿÿ ÿÿÿÿ‚Aÿÿ„!ÿÿ„!ÿÿ‚Aÿÿÿÿ ÿÿ˜ÿÿ€ÿÿ€ÿÿÿÿÿÿ \ No newline at end of file
rc/cursor30.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor32.cur =================================================================== --- rc/cursor32.cur (nonexistent) +++ rc/cursor32.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿâö>2~~LH|oðGàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøÿÿðÿÿàÿÿÀÿÿÇÀÿÿÏ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿóÿÿãÿÿÿÿÿÿÿÿ8ÿÿ \ No newline at end of file
rc/cursor32.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor70.cur =================================================================== --- rc/cursor70.cur (nonexistent) +++ rc/cursor70.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿüüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÏÿÿÿÇÿÿÿÿÿÿÿÿÿÿÿÿÿÇÿÿÿÏÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor70.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor34.cur =================================================================== --- rc/cursor34.cur (nonexistent) +++ rc/cursor34.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€Àà€ˆ1Œþþ1Œˆ€àÀ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿü?ÿÿøÿÿðÿÿèÿÿÄ#ÿÿ€ÿÿÿÿÿÿ€ÿÿÄ#ÿÿèÿÿðÿÿøÿÿü?ÿÿþÿÿ \ No newline at end of file
rc/cursor34.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor72.cur =================================================================== --- rc/cursor72.cur (nonexistent) +++ rc/cursor72.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ@@@@@@@@@@@ðàÀ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿðÿÿðÿÿøÿÿüÿÿþ?ÿÿÿÿÿ \ No newline at end of file
rc/cursor72.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor36.cur =================================================================== --- rc/cursor36.cur (nonexistent) +++ rc/cursor36.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿàð`8ü0þ0ÿ🰀3pxÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿÿÀÿÿÿãÿÿÿãÿÿÿàÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor36.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor74.cur =================================================================== --- rc/cursor74.cur (nonexistent) +++ rc/cursor74.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€Ààð@@@@@@@ðàÀ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ?ÿÿüÿÿøÿÿðÿÿðÿÿüÿÿüÿÿüÿÿüÿÿüÿÿðÿÿðÿÿøÿÿüÿÿþ?ÿÿÿÿÿÿ \ No newline at end of file
rc/cursor74.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor38.cur =================================================================== --- rc/cursor38.cur (nonexistent) +++ rc/cursor38.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ>ø! ' /''8?ø<Ë È ê È@€?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÁÿÿÀÿÿàÿÿðÿÿðÿÿðÿÿðÿÿÀÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿ ÿÿÀÿÿÿ \ No newline at end of file
rc/cursor38.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor76.cur =================================================================== --- rc/cursor76.cur (nonexistent) +++ rc/cursor76.cur (revision 1765) @@ -0,0 +1,3 @@ + + +0( @ÿÿÿ< D~ï8ïïïïïïïïï|8ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿóÿÿÿÿÿÿÿÿÁÿÿáÿÿáÿÿáÿÿáÿÿñÿÿùÿÿÿÿÿÿÿÿÿƒÿÿÿÇÿÿ \ No newline at end of file
rc/cursor76.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor78.cur =================================================================== --- rc/cursor78.cur (nonexistent) +++ rc/cursor78.cur (revision 1765) @@ -0,0 +1,2 @@ + 0( @ÿÿÿþ +â"D"D"D Gà@@@€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿüÿÿüÿÿÿàÿÿðÿÿðÿÿÿÿˆÿÿˆÿÿÿÿÿÿÿÿÿÿÿ?ÿÿ?ÿÿ?ÿÿ \ No newline at end of file
rc/cursor78.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor2a.cur =================================================================== --- rc/cursor2a.cur (nonexistent) +++ rc/cursor2a.cur (revision 1765) @@ -0,0 +1,3 @@ + 0( @€ÿÿÿ€Àà +°˜€€€€˜ +°àÀ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿøÿÿðÿÿàÿÿÀÿÿÀÿÿÀÿÿü?ÿÿü?ÿÿÀÿÿÀÿÿÀÿÿàÿÿðÿÿøÿÿ \ No newline at end of file
rc/cursor2a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/itk.rc =================================================================== --- rc/itk.rc (nonexistent) +++ rc/itk.rc (revision 1765) @@ -0,0 +1,252 @@ +// SCCS: @(#) tk.rc 1.17 96/09/12 16:22:08 + +// + +// Version + +// + + + +#define RESOURCE_INCLUDED + +#include + +#include + + + +VS_VERSION_INFO VERSIONINFO + + FILEVERSION ITCL_MAJOR_VERSION,ITCL_MINOR_VERSION,ITCL_RELEASE_LEVEL,0 + + PRODUCTVERSION ITCL_MAJOR_VERSION,ITCL_MINOR_VERSION,ITCL_RELEASE_LEVEL,0 + + FILEFLAGSMASK 0x3fL + + FILEFLAGS 0x0L + + FILEOS 0x4L + + FILETYPE 0x2L + + FILESUBTYPE 0x0L + +BEGIN + + BLOCK "StringFileInfo" + + BEGIN + + BLOCK "040904b0" + + BEGIN + + VALUE "FileDescription", "Itk DLL\0" + + VALUE "Authors", "Michael McLennan\0" + + + + VALUE "OriginalFilename", "itk" STRINGIFY(ITCL_MAJOR_VERSION) STRINGIFY(ITCL_MINOR_VERSION) ".dll\0" + + VALUE "CompanyName", "Bell Labs Innovations for Lucent Technologies\0" + + VALUE "FileVersion", ITCL_PATCH_LEVEL + + VALUE "LegalCopyright", "Copyright \251 1993-1998\0" + + VALUE "ProductName", "[incr Tk] " ITCL_VERSION " for Windows\0" + + VALUE "ProductVersion", ITCL_PATCH_LEVEL + + END + + END + + BLOCK "VarFileInfo" + + BEGIN + + VALUE "Translation", 0x409, 1200 + + END + +END + + + +// + +// Icon + +// + + + +tk ICON DISCARDABLE "itk.ico" + + + +// + +// Cursor + +// + + + +X_cursor CURSOR DISCARDABLE "cursor00.cur" + +arrow CURSOR DISCARDABLE "cursor02.cur" + +based_arrow_down CURSOR DISCARDABLE "cursor04.cur" + +based_arrow_up CURSOR DISCARDABLE "cursor06.cur" + +boat CURSOR DISCARDABLE "cursor08.cur" + +bogosity CURSOR DISCARDABLE "cursor0a.cur" + +bottom_left_corner CURSOR DISCARDABLE "cursor0c.cur" + +bottom_right_corner CURSOR DISCARDABLE "cursor0e.cur" + +bottom_side CURSOR DISCARDABLE "cursor10.cur" + +bottom_tee CURSOR DISCARDABLE "cursor12.cur" + +box_spiral CURSOR DISCARDABLE "cursor14.cur" + +center_ptr CURSOR DISCARDABLE "cursor16.cur" + +circle CURSOR DISCARDABLE "cursor18.cur" + +clock CURSOR DISCARDABLE "cursor1a.cur" + +coffee_mug CURSOR DISCARDABLE "cursor1c.cur" + +cross CURSOR DISCARDABLE "cursor1e.cur" + +cross_reverse CURSOR DISCARDABLE "cursor20.cur" + +crosshair CURSOR DISCARDABLE "cursor22.cur" + +diamond_cross CURSOR DISCARDABLE "cursor24.cur" + +dot CURSOR DISCARDABLE "cursor26.cur" + +dotbox CURSOR DISCARDABLE "cursor28.cur" + +double_arrow CURSOR DISCARDABLE "cursor2a.cur" + +draft_large CURSOR DISCARDABLE "cursor2c.cur" + +draft_small CURSOR DISCARDABLE "cursor2e.cur" + +draped_box CURSOR DISCARDABLE "cursor30.cur" + +exchange CURSOR DISCARDABLE "cursor32.cur" + +fleur CURSOR DISCARDABLE "cursor34.cur" + +gobbler CURSOR DISCARDABLE "cursor36.cur" + +gumby CURSOR DISCARDABLE "cursor38.cur" + +hand1 CURSOR DISCARDABLE "cursor3a.cur" + +hand2 CURSOR DISCARDABLE "cursor3c.cur" + +heart CURSOR DISCARDABLE "cursor3e.cur" + +icon CURSOR DISCARDABLE "cursor40.cur" + +iron_cross CURSOR DISCARDABLE "cursor42.cur" + +left_ptr CURSOR DISCARDABLE "cursor44.cur" + +left_side CURSOR DISCARDABLE "cursor46.cur" + +left_tee CURSOR DISCARDABLE "cursor48.cur" + +leftbutton CURSOR DISCARDABLE "cursor4a.cur" + +ll_angle CURSOR DISCARDABLE "cursor4c.cur" + +lr_angle CURSOR DISCARDABLE "cursor4e.cur" + +man CURSOR DISCARDABLE "cursor50.cur" + +middlebutton CURSOR DISCARDABLE "cursor52.cur" + +mouse CURSOR DISCARDABLE "cursor54.cur" + +pencil CURSOR DISCARDABLE "cursor56.cur" + +pirate CURSOR DISCARDABLE "cursor58.cur" + +plus CURSOR DISCARDABLE "cursor5a.cur" + +question_arrow CURSOR DISCARDABLE "cursor5c.cur" + +right_ptr CURSOR DISCARDABLE "cursor5e.cur" + +right_side CURSOR DISCARDABLE "cursor60.cur" + +right_tee CURSOR DISCARDABLE "cursor62.cur" + +rightbutton CURSOR DISCARDABLE "cursor64.cur" + +rtl_logo CURSOR DISCARDABLE "cursor66.cur" + +sailboat CURSOR DISCARDABLE "cursor68.cur" + +sb_down_arrow CURSOR DISCARDABLE "cursor6a.cur" + +sb_h_double_arrow CURSOR DISCARDABLE "cursor6c.cur" + +sb_left_arrow CURSOR DISCARDABLE "cursor6e.cur" + +sb_right_arrow CURSOR DISCARDABLE "cursor70.cur" + +sb_up_arrow CURSOR DISCARDABLE "cursor72.cur" + +sb_v_double_arrow CURSOR DISCARDABLE "cursor74.cur" + +shuttle CURSOR DISCARDABLE "cursor76.cur" + +sizing CURSOR DISCARDABLE "cursor78.cur" + +spider CURSOR DISCARDABLE "cursor7a.cur" + +spraycan CURSOR DISCARDABLE "cursor7c.cur" + +star CURSOR DISCARDABLE "cursor7e.cur" + +target CURSOR DISCARDABLE "cursor80.cur" + +tcross CURSOR DISCARDABLE "cursor82.cur" + +top_left_arrow CURSOR DISCARDABLE "cursor84.cur" + +top_left_corner CURSOR DISCARDABLE "cursor86.cur" + +top_right_corner CURSOR DISCARDABLE "cursor88.cur" + +top_side CURSOR DISCARDABLE "cursor8a.cur" + +top_tee CURSOR DISCARDABLE "cursor8c.cur" + +trek CURSOR DISCARDABLE "cursor8e.cur" + +ul_angle CURSOR DISCARDABLE "cursor90.cur" + +umbrella CURSOR DISCARDABLE "cursor92.cur" + +ur_angle CURSOR DISCARDABLE "cursor94.cur" + +watch CURSOR DISCARDABLE "cursor96.cur" + +xterm CURSOR DISCARDABLE "cursor98.cur" +
rc/itk.rc Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor2c.cur =================================================================== --- rc/cursor2c.cur (nonexistent) +++ rc/cursor2c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ@ €€ÀÀàà?ððøø< ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿŽ?ÿÿÆ?ÿÿâÿÿðÿÿøÿÿÀÿÿ€ÿÿÀÿÿðÿÿüÿÿÿÿÿÿÁÿÿÿñÿÿ \ No newline at end of file
rc/cursor2c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor6a.cur =================================================================== --- rc/cursor6a.cur (nonexistent) +++ rc/cursor6a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ€Ààð@@@@@@@@@@ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ?ÿÿüÿÿøÿÿðÿÿøÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿüÿÿ \ No newline at end of file
rc/cursor6a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor2e.cur =================================================================== --- rc/cursor2e.cur (nonexistent) +++ rc/cursor2e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ€@   °pøø< ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÇÿÿÿãÿÿÿñŸÿÿøŸÿÿüÿÿþÿÿøÿÿøÿÿþÿÿÿƒÿÿÿáÿÿÿùÿÿ \ No newline at end of file
rc/cursor2e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor6c.cur =================================================================== --- rc/cursor6c.cur (nonexistent) +++ rc/cursor6c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ?üx?üÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ÷ïÿÿãÇÿÿÀÿÿ€ÿÿÿÿ€ÿÿÀÿÿãÇÿÿ÷ïÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor6c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor6e.cur =================================================================== --- rc/cursor6e.cur (nonexistent) +++ rc/cursor6e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ?þx?þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ÷ÿÿÿãÿÿÿÀÿÿ€ÿÿÿÿ€ÿÿÀÿÿãÿÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor6e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/itk.ico =================================================================== --- rc/itk.ico (nonexistent) +++ rc/itk.ico (revision 1765) @@ -0,0 +1 @@ + 06 èf(N( @ÿÿÿpøøøøüþþþÿÿ€ÿ€ÿÀÿàÿàÿðÿø¼ð<àÿ<Àþ9€üsxÄÿÿÿÿÿøÿÿÀÿþÿüÿüÿüÿðÿÀÀÿüÿüÿüÿàÿàÿøÿøøð?ððààÀ€Ààðøü?þÿ€ÿ( @€€€€€€€€€€ÀÀÀ€€€ÿÿÿÿÿÿÿÿÿÿÿÿ€€€…€XˆU€€€ˆ…P€Xˆ€€ˆˆˆX€ˆˆˆˆˆˆˆˆxXˆˆˆ‡ˆˆ‡ˆ€x‡xwx€ˆ‡wwwwwxˆw÷wwwwxˆˆwÿwww÷w‡wÿ÷w÷÷qxÿÿ÷ÿw÷÷x€‡wÿÿÿÿÿÿÿ÷‡ÿÿÿÿÿÿÿÿpÿÿÿÿÿÿÿÿÿxÿÿÿÿÿÿÿÿÿ÷ÿÿÿÿÿÿÿÿÿÿð€ÿÿÿÿÿ€ÿðÿÿÿÿûÿðÿñÿÿÿÿÿøÿq¿ÿÿ¿øÿ€ðÿûÿø¿€øpppÿÿÿÿÿàÿÿ€ÿüÿüÿüÿüÿðÀÀÿüÿüÿüÿàÿàÿøÿøðð?ðàààÀ€Àààðü?þÿÿ( À€€€€€€€€€ÀÀÀ€€€ÿÿÿÿÿÿÿÿÿÿÿÿ€€ˆˆˆˆ€ˆ‡€ˆwwxˆ÷wwˆ‡ÿÿÿpÿÿÿøÿÿ¿ðwû°€pøààÀ€à€€ÀÀ€€€Àà \ No newline at end of file
rc/itk.ico Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor00.cur =================================================================== --- rc/cursor00.cur (nonexistent) +++ rc/cursor00.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿpx|>>|øðààðø>||>xpÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿÿàÿÿÀÿÿ€ÿÿ€ÿÿÀÿÿàÿÿðÿÿðÿÿàÿÿÀÿÿ€ÿÿ€ÿÿÀÿÿàÿÿðÿÿ \ No newline at end of file
rc/cursor00.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor02.cur =================================================================== --- rc/cursor02.cur (nonexistent) +++ rc/cursor02.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ p8@@``ððøøü|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿßÿÿÿÿÿÿ¿ÿÿƒÿÿÁÿÿàÿÿðÿÿøÿÿÀÿÿÀÿÿàÿÿøÿÿþÿÿÿ€ÿÿÿàÿÿÿøÿÿ \ No newline at end of file
rc/cursor02.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor04.cur =================================================================== --- rc/cursor04.cur (nonexistent) +++ rc/cursor04.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€À €€€€ððÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿøÿÿðÿÿðÿÿðÿÿü?ÿÿü?ÿÿàÿÿàÿÿàÿÿàÿÿàÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor04.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor40.cur =================================================================== --- rc/cursor40.cur (nonexistent) +++ rc/cursor40.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÿÿª«ÕUª«Ð  Р Р Р ÕUª«ÕUÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor40.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor42.cur =================================================================== --- rc/cursor42.cur (nonexistent) +++ rc/cursor42.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ?üøOògæsÎyžþþyžsÎgæOòø?üÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿ€ÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿÀÿÿ \ No newline at end of file
rc/cursor42.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor06.cur =================================================================== --- rc/cursor06.cur (nonexistent) +++ rc/cursor06.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿðð€€€€ À€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿàÿÿàÿÿàÿÿàÿÿàÿÿü?ÿÿü?ÿÿðÿÿðÿÿðÿÿü?ÿÿþÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor06.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor80.cur =================================================================== --- rc/cursor80.cur (nonexistent) +++ rc/cursor80.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÀ   AB„A   Àÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿø?ÿÿðÿÿàÿÿÇÇÿÿãÿÿŽãÿÿqÿÿ1ÿÿqÿÿŽãÿÿãÿÿÇçÿÿàÿÿðÿÿø?ÿÿ \ No newline at end of file
rc/cursor80.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor44.cur =================================================================== --- rc/cursor44.cur (nonexistent) +++ rc/cursor44.cur (revision 1765) @@ -0,0 +1,2 @@ + 0( @€ÿÿÿ``ÀÀ +€€ðàÀ€ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŸÿÿÿÿÿÿÿÿæÿÿâÿÿà?ÿÿàÿÿàÿÿàÿÿàÿÿà?ÿÿàÿÿàÿÿÿáÿÿÿãÿÿÿçÿÿÿ \ No newline at end of file
rc/cursor44.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor08.cur =================================================================== --- rc/cursor08.cur (nonexistent) +++ rc/cursor08.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÿÀ@ ÿÿˆ`Àÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿ`ÿÿð?ÿÿøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor08.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor82.cur =================================================================== --- rc/cursor82.cur (nonexistent) +++ rc/cursor82.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ€€€€€€?þ€€€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿ€ÿÿ€ÿÿ€ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿÿÿÿÿ \ No newline at end of file
rc/cursor82.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor46.cur =================================================================== --- rc/cursor46.cur (nonexistent) +++ rc/cursor46.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ```€abdoþdba`€``ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ?ÿÿ?ÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ?ÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor46.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor84.cur =================================================================== --- rc/cursor84.cur (nonexistent) +++ rc/cursor84.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ @€€øà?€>x`ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿÿøÿÿøñÿÿøãÿÿøÇÿÿðÿÿðÿÿà?ÿÿàÿÿÀÿÿÀÿÿ€ÿÿ€ÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor84.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor48.cur =================================================================== --- rc/cursor48.cur (nonexistent) +++ rc/cursor48.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿøøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÀÿÿÀÿÿÀÿÿÀÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿ \ No newline at end of file
rc/cursor48.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor86.cur =================================================================== --- rc/cursor86.cur (nonexistent) +++ rc/cursor86.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ``bbb b@b€ccø```þþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóÿÿãÿÿÇÿÿÿÿÿÿ?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor86.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/itkwish.rc =================================================================== --- rc/itkwish.rc (nonexistent) +++ rc/itkwish.rc (revision 1765) @@ -0,0 +1,43 @@ +// SCCS: @(#) wish.rc 1.13 96/09/12 16:22:14 +// +// Version +// + +#define RESOURCE_INCLUDED +#include +#include + +VS_VERSION_INFO VERSIONINFO + FILEVERSION ITCL_MAJOR_VERSION,ITCL_MINOR_VERSION,ITCL_RELEASE_LEVEL,0 + PRODUCTVERSION ITCL_MAJOR_VERSION,ITCL_MINOR_VERSION,ITCL_RELEASE_LEVEL,0 + FILEFLAGSMASK 0x3fL + FILEFLAGS 0x0L + FILEOS 0x4L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "FileDescription", "[incr Tk] Object-Oriented Wish Application\0" + VALUE "Authors", "Michael McLennan\0" + VALUE "OriginalFilename", "itkwish.exe\0" + VALUE "CompanyName", "Bell Labs Innovations for Lucent Technologies\0" + VALUE "FileVersion", ITCL_PATCH_LEVEL + VALUE "LegalCopyright", "Copyright \251 1993-1998\0" + VALUE "ProductName", "[incr Tk] " ITCL_VERSION " for Windows\0" + VALUE "ProductVersion", ITCL_PATCH_LEVEL + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +// +// Icon +// + +wish ICON DISCARDABLE "itk.ico"
rc/itkwish.rc Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor88.cur =================================================================== --- rc/cursor88.cur (nonexistent) +++ rc/cursor88.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿFFFFFÆÆþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÿÿÿðÿÿÏÿÿÇÿÿãÿÿñÿÿøÿÿüÿÿÀÿÿÀÿÿÀÿÿÿðÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor88.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor3a.cur =================================================================== --- rc/cursor3a.cur (nonexistent) +++ rc/cursor3a.cur (revision 1765) @@ -0,0 +1,2 @@ + +0( @€ÿÿÿ 1%àð/ø?øðøðàðxÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿáÿÿÿÀÿÿÿÀÿÿÀÿÿÀÿÿÀÿÿÀÿÿÀÿÿÀÿÿàÿÿøÿÿüÿÿþÿÿÿÿÿÿÁÿÿÿñÿÿ \ No newline at end of file
rc/cursor3a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor3c.cur =================================================================== --- rc/cursor3c.cur (nonexistent) +++ rc/cursor3c.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ Pè´ ú|/ºÔ/èèoèР€@€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿüÿÿøÿÿðÿÿàÿÿÀÿÿàÿÿÀÿÿàÿÿ€ÿÿÿÿÿÿ?ÿÿ€ÿÿ \ No newline at end of file
rc/cursor3c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor7a.cur =================================================================== --- rc/cursor7a.cur (nonexistent) +++ rc/cursor7a.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ   @@‡‡g˜ààg˜‡‡@@  ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŸçÿÿÏÏÿÿçŸÿÿç¿ÿÿp>ÿÿ00ÿÿÿÿÀÿÿÀÿÿ#ÿÿ00ÿÿp>ÿÿçŸÿÿïßÿÿÏÏÿÿŸçÿÿ \ No newline at end of file
rc/cursor7a.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor3e.cur =================================================================== --- rc/cursor3e.cur (nonexistent) +++ rc/cursor3e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ€À `00` À€€€€ÁcŒ>øÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüÿÿø?ÿÿðÿÿãÿÿÇÇÿÿãÿÿñÿÿ=yÿÿ?ùÿÿ?ùÿÿ>ùÿÿqÿÿ€ÿÿÁÿÿÿÿÿÿ \ No newline at end of file
rc/cursor3e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor7c.cur =================================================================== --- rc/cursor7c.cur (nonexistent) +++ rc/cursor7c.cur (revision 1765) @@ -0,0 +1,2 @@ + 0( @ÿÿÿ?!!99)9)9!?@ +@ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿÀ§ÿÿà§ÿÿà§ÿÿó§ÿÿÿçÿÿ \ No newline at end of file
rc/cursor7c.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor7e.cur =================================================================== --- rc/cursor7e.cur (nonexistent) +++ rc/cursor7e.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿ`p(h$ˆ 88À88`@€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÇÿÿ‡ÿÿÿÿgÿÿˆÏÿÿÿÿƒÿÿ?ñÿÿƒÿÿÇÿÿã?ÿÿòÿÿòÿÿøÿÿÿøÿÿÿýÿÿÿ \ No newline at end of file
rc/cursor7e.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor10.cur =================================================================== --- rc/cursor10.cur (nonexistent) +++ rc/cursor10.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ?þ?þ€À ˆ€€€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿþ?ÿÿüÿÿøÿÿðÿÿâ#ÿÿæ3ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿþ?ÿÿ \ No newline at end of file
rc/cursor10.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor12.cur =================================================================== --- rc/cursor12.cur (nonexistent) +++ rc/cursor12.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿþþ€€€€€€€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor12.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor50.cur =================================================================== --- rc/cursor50.cur (nonexistent) +++ rc/cursor50.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿø>x<P @€@@p$JC†€ð€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿ€ÿÿÿÿÀÿÿàÿÿðÿÿø?ÿÿøÿÿàÿÿÀÿÿ€ÿÿ8ÿÿ<}ÿÿÀÿÿÀÿÿàÿÿ \ No newline at end of file
rc/cursor50.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor14.cur =================================================================== --- rc/cursor14.cur (nonexistent) +++ rc/cursor14.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÿ@_ýPWõTUÕUUUUõTWýP_ÿ@ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor14.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor52.cur =================================================================== --- rc/cursor52.cur (nonexistent) +++ rc/cursor52.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿüüüüüüDDTTTTTTTTDDüüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿ€ÿÿÀÿÿ \ No newline at end of file
rc/cursor52.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor16.cur =================================================================== --- rc/cursor16.cur (nonexistent) +++ rc/cursor16.cur (revision 1765) @@ -0,0 +1 @@ + 0( @€ÿÿÿ€€€€ˆ˜ððààÀÀ€€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿü?ÿÿü?ÿÿü?ÿÿÄ#ÿÿÀÿÿÀÿÿÀÿÿàÿÿàÿÿðÿÿðÿÿøÿÿøÿÿü?ÿÿü?ÿÿ \ No newline at end of file
rc/cursor16.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor54.cur =================================================================== --- rc/cursor54.cur (nonexistent) +++ rc/cursor54.cur (revision 1765) @@ -0,0 +1,3 @@ + + +0( @ÿÿÿÀ 00 @@YšYšYš@?ü€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿü?ÿÿðÿÿÀÿÿ€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿÀÿÿøÿÿðÿÿÿðÿÿÿøÿÿ \ No newline at end of file
rc/cursor54.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor18.cur =================================================================== --- rc/cursor18.cur (nonexistent) +++ rc/cursor18.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿÀðø<<8pppp8<<øðÀÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøÿÿàÿÿÀÿÿ€ÿÿ€ÿÿÀÿÿàÿÿàÿÿàÿÿàÿÿÀÿÿ€ÿÿ€ÿÿÀÿÿàÿÿøÿÿ \ No newline at end of file
rc/cursor18.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: rc/cursor90.cur =================================================================== --- rc/cursor90.cur (nonexistent) +++ rc/cursor90.cur (revision 1765) @@ -0,0 +1 @@ + 0( @ÿÿÿøøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÃÿÿÿÀÿÿÀÿÿÀÿÿÀÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file
rc/cursor90.cur Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: makefile.vc =================================================================== --- makefile.vc (nonexistent) +++ makefile.vc (revision 1765) @@ -0,0 +1,271 @@ +# Visual C++ 2.x and 4.0 makefile +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. +# +# Copyright (c) 1995-1996 Sun Microsystems, Inc. +# SCCS: @(#) makefile.vc 1.8 98/07/29 13:14:52 + +# Does not depend on the presence of any environment variables in +# order to compile tcl; all needed information is derived from +# location of the compiler directories. +# +# NOTE: Be sure to modify the "makefile.vc" file in the toplevel directory +# for the itcl distribution. Include the location of your VC++ development +# tools and the installation directory. + +!include "..\..\makefile.vc" + + +# ROOT = top of source tree +# +# TMPDIR = location where .obj files should be stored during build + +ROOT = .. +ITCLDIR = ..\..\itcl + +###################################################################### +# Do not modify below this line +###################################################################### + +ITKNAMEPREFIX = itk +WISHNAMEPREFIX = itkwish +VERSION = 30 +DOTVERSION = 3.0 + +BINROOT = . +!IF "$(NODEBUG)" == "1" +TMPDIR = $(BINROOT)\Release +DBGX = +!ELSE +TMPDIR = $(BINROOT)\Debug +DBGX = d +!ENDIF +OUTDIR = $(TMPDIR) + +ITKDLLNAME = $(ITKNAMEPREFIX)$(VERSION)$(DBGX).dll +ITKDLL = $(OUTDIR)\$(ITKDLLNAME) +ITKLIB = $(OUTDIR)\$(ITKNAMEPREFIX)$(VERSION)$(DBGX).lib + +ITKWISH = $(OUTDIR)\$(WISHNAMEPREFIX)$(VERSION)$(DBGX).exe +DUMPEXTS = $(TMPDIR)\dumpexts.exe + +LIB_INSTALL_DIR = $(INSTALLDIR)\lib +BIN_INSTALL_DIR = $(INSTALLDIR)\bin +SCRIPT_INSTALL_DIR = $(INSTALLDIR)\lib\itk$(DOTVERSION) +INCLUDE_INSTALL_DIR = $(INSTALLDIR)\include + +ITKWISHOBJS = \ + $(TMPDIR)\winMain.obj \ + $(TMPDIR)\tkConsole.obj + +ITKOBJS = \ + $(TMPDIR)\itk_archetype.obj \ + $(TMPDIR)\itk_cmds.obj \ + $(TMPDIR)\itk_option.obj \ + $(TMPDIR)\itk_util.obj \ + $(TMPDIR)\dllEntryPoint.obj + +cc32 = $(TOOLS32)\bin\cl.exe +link32 = $(TOOLS32)\bin\link.exe +rc32 = $(TOOLS32_rc)\bin\rc.exe +include32 = -I$(TOOLS32)\include + +WINDIR = $(ROOT)\win +GENERICDIR = $(ROOT)\generic +RCDIR = $(WINDIR)\rc + +TCLBUILDDIR = $(TCLDIR)\win\$(OUTDIR) +TCLLIB = $(TCLBUILDDIR)\tcl80$(DBGX).lib +TCLDLL = $(TCLBUILDDIR)\tcl80$(DBGX).dll +TKBUILDDIR = $(TKDIR)\win\$(OUTDIR) +TKLIB = $(TKBUILDDIR)\tk80$(DBGX).lib +TKDLL = $(TKBUILDDIR)\tk80$(DBGX).dll +ITCLBUILDDIR = $(ITCLDIR)\win\$(OUTDIR) +ITCLLIB = $(ITCLBUILDDIR)\itcl$(VERSION)$(DBGX).lib +ITCLDLL = $(ITCLBUILDDIR)\itcl$(VERSION)$(DBGX).dll + +ITK_INCLUDES = -I$(WINDIR) -I$(GENERICDIR) \ + -I$(TCLDIR)\generic -I$(TKDIR)\generic -I$(TKDIR)\xlib -I$(ITCLDIR)\generic +ITK_DEFINES = -DBUILD_itk $(DEBUGDEFINES) + +ITK_CFLAGS = $(cdebug) $(cflags) $(cvarsdll) $(include32) \ + $(ITK_INCLUDES) $(ITK_DEFINES) + +###################################################################### +# Link flags +###################################################################### + +!IF "$(NODEBUG)" == "1" +ldebug = /RELEASE +!ELSE +ldebug = -debug:full -debugtype:cv +!ENDIF + +# declarations common to all linker options +lcommon = /NODEFAULTLIB /RELEASE /NOLOGO + +# declarations for use on Intel i386, i486, and Pentium systems +!IF "$(MACHINE)" == "IX86" +DLLENTRY = @12 +lflags = $(lcommon) -align:0x1000 /MACHINE:$(MACHINE) +!ELSE +lflags = $(lcommon) /MACHINE:$(MACHINE) +!ENDIF + +conlflags = $(lflags) -subsystem:console -entry:mainCRTStartup +guilflags = $(lflags) -subsystem:windows -entry:WinMainCRTStartup +dlllflags = $(lflags) -entry:_DllMainCRTStartup$(DLLENTRY) -dll + +!IF "$(MACHINE)" == "PPC" +libc = libc.lib +libcdll = crtdll.lib +!ELSE +libc = libc.lib oldnames.lib +libcdll = msvcrt.lib oldnames.lib +!ENDIF + +baselibs = kernel32.lib $(optlibs) advapi32.lib +winlibs = $(baselibs) user32.lib gdi32.lib comdlg32.lib winspool.lib +guilibs = $(libc) $(winlibs) + +guilibsdll = $(libcdll) $(winlibs) + +###################################################################### +# Compile flags +###################################################################### + +!IF "$(NODEBUG)" == "1" +!IF "$(MACHINE)" == "ALPHA" +# MSVC on Alpha doesn't understand -Ot +cdebug = -O2i -Gs -GD +!ELSE +cdebug = -Oti -Gs -GD +!ENDIF +!ELSE +cdebug = -Z7 -Od -WX +!ENDIF + +# declarations common to all compiler options +ccommon = -c -W3 -nologo -Fp$(TMPDIR)\ -YX + +!IF "$(MACHINE)" == "IX86" +cflags = $(ccommon) -D_X86_=1 +!ELSE +!IF "$(MACHINE)" == "MIPS" +cflags = $(ccommon) -D_MIPS_=1 +!ELSE +!IF "$(MACHINE)" == "PPC" +cflags = $(ccommon) -D_PPC_=1 +!ELSE +!IF "$(MACHINE)" == "ALPHA" +cflags = $(ccommon) -D_ALPHA_=1 +!ENDIF +!ENDIF +!ENDIF +!ENDIF + +cvars = -DWIN32 -D_WIN32 +cvarsmt = $(cvars) -D_MT +cvarsdll = $(cvarsmt) -D_DLL + +!IF "$(NODEBUG)" == "1" +cvarsdll = $(cvars) -MD +!ELSE +cvarsdll = $(cvars) -MDd +!ENDIF + +CON_CFLAGS = $(cdebug) $(cflags) $(cvars) $(include32) -DCONSOLE + +###################################################################### +# Project specific targets +###################################################################### + +all: setup $(ITKWISH) +test: setup $(ITKWISH) + -@copy $(TCLDLL) $(TMPDIR) + -@copy $(TKDLL) $(TMPDIR) + -@copy $(ITCLDLL) $(TMPDIR) + $(ITKWISH) + +setup: + if not exist $(TMPDIR) mkdir $(TMPDIR) + if not exist $(OUTDIR) mkdir $(OUTDIR) + +$(ITKLIB): $(ITKDLL) + +$(ITKDLL): $(ITKOBJS) $(TMPDIR)\itk.res $(TMPDIR)\itkvc.def + set LIB=$(TOOLS32)\lib + $(link32) $(ldebug) $(dlllflags) -def:$(TMPDIR)\itkvc.def \ + -out:$@ $(TMPDIR)\itk.res $(TCLLIB) $(TKLIB) $(ITCLLIB) \ + $(guilibsdll) @<< + $(ITKOBJS) +<< + +$(ITKWISH): $(ITKWISHOBJS) $(ITKLIB) $(TMPDIR)\itkwish.res + set LIB=$(TOOLS32)\lib + $(link32) $(ldebug) $(guilflags) $(TMPDIR)\itkwish.res -out:$@ \ + $(guilibsdll) $(TCLLIB) $(TKLIB) $(ITCLLIB) $(ITKLIB) $(ITKWISHOBJS) + +$(TMPDIR)\itkvc.def: $(DUMPEXTS) $(ITKOBJS) + $(DUMPEXTS) -o $@ $(ITKDLLNAME) @<< + $(ITKOBJS) +<< + +$(DUMPEXTS): $(TCLDIR)\win\winDumpExts.c + $(cc32) $(CON_CFLAGS) -Fo$(TMPDIR)\ $? + set LIB=$(TOOLS32)\lib + $(link32) $(ldebug) $(conlflags) $(guilibs) -out:$@ \ + $(TMPDIR)\winDumpExts.obj + +install: all + if not exist $(INSTALLDIR) mkdir $(INSTALLDIR) + if not exist $(BIN_INSTALL_DIR) mkdir $(BIN_INSTALL_DIR) + if not exist $(LIB_INSTALL_DIR) mkdir $(LIB_INSTALL_DIR) + if not exist $(SCRIPT_INSTALL_DIR) mkdir $(SCRIPT_INSTALL_DIR) + if not exist $(INCLUDE_INSTALL_DIR) mkdir $(INCLUDE_INSTALL_DIR) + copy $(ITKWISH) "$(BIN_INSTALL_DIR)" + copy $(ITKDLL) "$(BIN_INSTALL_DIR)" + copy $(ROOT)\generic\itk.h "$(INCLUDE_INSTALL_DIR)" + copy $(ROOT)\library\*.* "$(SCRIPT_INSTALL_DIR)" + copy $(ROOT)\win\*.tcl "$(SCRIPT_INSTALL_DIR)" + +# +# Special case object file targets +# + +$(TMPDIR)\winMain.obj: $(ROOT)\win\winMain.c + $(cc32) -DBUILD_tcl -DBUILD_tk $(ITK_CFLAGS) -Fo$@ $? + +$(TMPDIR)\tkConsole.obj: $(TKDIR)\generic\tkConsole.c + $(cc32) -DBUILD_tcl -DBUILD_tk $(ITK_CFLAGS) -Fo$@ $? + +# +# Implicit rules +# + +{$(GENERICDIR)}.c{$(TMPDIR)}.obj: + $(cc32) -DDLL_BUILD $(ITK_CFLAGS) -Fo$(TMPDIR)\ $< + +{$(WINDIR)}.c{$(TMPDIR)}.obj: + $(cc32) -DDLL_BUILD $(ITK_CFLAGS) -Fo$(TMPDIR)\ $< + +{$(ROOT)\unix}.c{$(TMPDIR)}.obj: + $(cc32) -DDLL_BUILD $(ITK_CFLAGS) -Fo$(TMPDIR)\ $< + +{$(RCDIR)}.rc{$(TMPDIR)}.res: + $(rc32) -fo $@ -r -i $(GENERICDIR) -i $(TCLDIR)\generic -i $(ITCLDIR)\generic $< + +clean: + -@del $(OUTDIR)\*.exp + -@del $(OUTDIR)\*.lib + -@del $(OUTDIR)\*.dll + -@del $(OUTDIR)\*.exe + -@del $(OUTDIR)\*.pdb + -@del $(TMPDIR)\*.pch + -@del $(TMPDIR)\*.obj + -@del $(TMPDIR)\*.res + -@del $(TMPDIR)\*.def + -@del $(TMPDIR)\*.exe + -@rmdir $(OUTDIR) + -@rmdir $(TMPDIR)
makefile.vc Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: configure.in =================================================================== --- configure.in (nonexistent) +++ configure.in (revision 1765) @@ -0,0 +1,630 @@ +dnl This file is an input file used by the GNU "autoconf" program to +dnl generate the file "configure", which is run during Tk installation +dnl to configure the system for the local environment. + +AC_PREREQ(2.5) + +AC_INIT(../generic/itk.h) + +AC_CONFIG_AUX_DIR(../../../) +AC_CANONICAL_HOST + +AC_PROG_RANLIB + +AC_PROG_CC +AC_OBJEXT +AC_CHECK_TOOL(NM, nm, nm) +AC_SUBST(NM) +AC_CHECK_TOOL(AS, as, as) +AC_SUBST(AS) +AC_CHECK_TOOL(LD, ld, ld) +AC_SUBST(LD) +AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool) +AC_SUBST(DLLTOOL) +AC_CHECK_TOOL(WINDRES, windres, windres) +AC_SUBST(WINDRES) + +AC_PROG_INSTALL + +# needed for the subtle differences between cygwin and mingw32 +case "${host}" in +*-*-cygwin*) + DLL_LDLIBS=-lcygwin + DLL_LDFLAGS='-nostartfiles -Wl,--dll' + ;; +*-*-mingw32*) + DLL_LDLIBS= + DLL_LDFLAGS='-mdll' + ;; +esac +AC_SUBST(DLL_LDFLAGS) +AC_SUBST(DLL_LDLIBS) + +ITCL_VERSION=3.0 +ITCL_MAJOR_VERSION=3 +ITCL_MINOR_VERSION=0 +VERSION=${ITCL_MAJOR_VERSION}${ITCL_MINOR_VERSION} + +if test "${prefix}" = "NONE"; then + prefix=/usr/local +fi +if test "${exec_prefix}" = "NONE"; then + exec_prefix=$prefix +fi + +# ----------------------------------------------------------------------- +# Set up a new default --prefix. If a previous installation of +# [incr Tcl] can be found searching $PATH use that directory. +# ----------------------------------------------------------------------- + +AC_PREFIX_DEFAULT(/usr/local) +AC_PREFIX_PROGRAM(itclsh) + +# ----------------------------------------------------------------------- +BUILD_DIR=`pwd` +ITK_SRC_DIR=`cd $srcdir/..; pwd` + +if ! test "$GCC" = yes; then + tmp="`cygpath --windows $ITK_SRC_DIR`" + ITK_SRC_DIR="`echo $tmp | sed -e s#\\\\\\\\#/#g`" +fi + +cd ${BUILD_DIR} + +AC_ARG_ENABLE(gcc, [ --enable-gcc allow use of gcc if available], + [itk_ok=$enableval], [itk_ok=no]) +if test "$itk_ok" = "yes"; then + AC_PROG_CC +else + CC=${CC-cc} +AC_SUBST(CC) +fi +AC_HAVE_HEADERS(unistd.h limits.h) + + +#-------------------------------------------------------------------- +# See if there was a command-line option for where Tcl is; if +# not, assume that its top-level directory is a sibling of ours. +# CYGNUS LOCAL - Actually Tcl & Tk are siblings of the itcl directory +# that contains itcl & itk & iwidgets. +#-------------------------------------------------------------------- + +AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl 8.0 binaries from DIR], + TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd ../../../tcl/win; pwd`) + +if test ! -f $TCL_BIN_DIR/../unix/tclConfig.sh; then + TCL_BIN_DIR=`cd ../../../tcl8.1/win;pwd` +fi + +if test ! -f $TCL_BIN_DIR/../unix/tclConfig.sh; then + AC_MSG_ERROR(There's no tclConfig.sh in $TCL_BIN_DIR; perhaps you didn't specify the Tcl *build* directory (not the toplevel Tcl directory) or you forgot to configure Tcl?) +fi + +#-------------------------------------------------------------------- +# Read in configuration information generated by Tcl for shared +# libraries, and arrange for it to be substituted into our +# Makefile. +#-------------------------------------------------------------------- + +file=$TCL_BIN_DIR/../unix/tclConfig.sh +. $file + +dnl CFLAGS=$TCL_CFLAGS + +SHLIB_CFLAGS=$TCL_SHLIB_CFLAGS +SHLIB_LD=$TCL_SHLIB_LD +SHLIB_LD_LIBS=$TCL_SHLIB_LD_LIBS +SHLIB_SUFFIX=$TCL_SHLIB_SUFFIX +SHLIB_VERSION=$TCL_SHLIB_VERSION +DL_LIBS=$TCL_DL_LIBS +LD_FLAGS=$TCL_LD_FLAGS +ITK_LD_SEARCH_FLAGS=$TCL_LD_SEARCH_FLAGS + +#-------------------------------------------------------------------- +# See if there was a command-line option for where Tk is; if +# not, assume that its top-level directory is a sibling of ours. +# CYGNUS LOCAL - actually these are one level higher in the CYGNUS tree. +#-------------------------------------------------------------------- + +AC_ARG_WITH(tcl, [ --with-tk=DIR use Tk 8.0 binaries from DIR], + TK_BIN_DIR=$withval, TK_BIN_DIR=`cd ../../../tk/win; pwd`) + +if test ! -f $TK_BIN_DIR/../unix/tkConfig.sh; then + TK_BIN_DIR=`cd ../../../tk8.1/win;pwd` +fi + +if test ! -f $TK_BIN_DIR/../unix/tkConfig.sh; then + AC_MSG_ERROR(There's no tkConfig.sh in $TK_BIN_DIR; perhaps you didn't specify the Tk *build* directory (not the toplevel Tcl directory) or you forgot to configure Tcl?) +fi + +file=$TK_BIN_DIR/../unix/tkConfig.sh +. $file + +if ! test "$GCC" = yes; then + tmp="`cygpath --windows $TK_BIN_DIR`" + TK_BIN_DIR="`echo $tmp | sed -e s#\\\\\\\\#/#g`" +fi + + +#-------------------------------------------------------------------- +# See if there was a command-line option for where [incr Tcl] is. +# If not, assume that its top-level directory is a sibling of ours. +#-------------------------------------------------------------------- + +AC_ARG_WITH(itcl, [ --with-itcl=DIR use Itcl 3.0 binaries from DIR], + ITCL_BIN_DIR=$withval, ITCL_BIN_DIR=`cd ../../itcl/win; pwd`) +if test ! -d $ITCL_BIN_DIR; then + AC_MSG_ERROR(Itcl directory $ITCL_BIN_DIR doesn't exist) +fi +if test ! -f $ITCL_BIN_DIR/Makefile; then + AC_MSG_ERROR(There's no Makefile in $ITCL_BIN_DIR; perhaps you didn't specify the Itcl *build* directory (not the toplevel Itcl directory) or you forgot to configure Itcl?) +fi + +file=$ITCL_BIN_DIR/../itclConfig.sh +. $file + + +AC_MSG_CHECKING([whether C compiler is gcc]) +AC_CACHE_VAL(itcl_cv_prog_gcc, [ + AC_EGREP_CPP(_cc_is_gcc_, [ +#ifdef __GNUC__ +_cc_is_gcc_ +#endif +], [itcl_cv_prog_gcc=yes], [itcl_cv_prog_gcc=no])]) +AC_MSG_RESULT([$itcl_cv_prog_gcc]) + +if test -z "$CFLAGS" ; then + CFLAGS="-O" +fi +if test "$itcl_cv_prog_gcc" = "yes" ; then + CFLAGS="$CFLAGS -Wshadow -Wtraditional -Wall" +fi + +AC_MSG_CHECKING([default compiler flags]) +AC_ARG_WITH(cflags, [ --with-cflags=FLAGS set compiler flags to FLAGS], + [CFLAGS="$with_cflags"]) + +AC_MSG_RESULT([$CFLAGS]) + +#-------------------------------------------------------------------- +# Supply a substitute for stdlib.h if it doesn't define strtol, +# strtoul, or strtod (which it doesn't in some versions of SunOS). +#-------------------------------------------------------------------- + +AC_MSG_CHECKING(stdlib.h) +AC_HEADER_EGREP(strtol, stdlib.h, itk_ok=yes, itk_ok=no) +AC_HEADER_EGREP(strtoul, stdlib.h, , itk_ok=no) +AC_HEADER_EGREP(strtod, stdlib.h, , itk_ok=no) +if test $itk_ok = no; then + AC_DEFINE(NO_STDLIB_H) +fi +AC_MSG_RESULT($itk_ok) + +#-------------------------------------------------------------------- +# Check for various typedefs and provide substitutes if +# they don't exist. +#-------------------------------------------------------------------- + +AC_MODE_T +AC_PID_T +AC_SIZE_T +AC_UID_T + +# ----------------------------------------------------------------------- +# C compiler and debugging flags +# ----------------------------------------------------------------------- +AC_MSG_CHECKING([which C compiler]) +if test -z "$CC" ; then + CC="cc" +fi +AC_ARG_WITH(cc, [ --with-cc=CC set C compiler to CC], + [CC=$with_cc]) +AC_MSG_RESULT([$CC]) +AC_SUBST(CC) + +AC_PROG_CPP + +#-------------------------------------------------------------------- +# Supply substitutes for missing POSIX header files. +# Replacements are handled in "tclInt.h" which we include here. +#-------------------------------------------------------------------- + +AC_CHECK_HEADER(limits.h, , AC_DEFINE(NO_LIMITS_H)) +AC_CHECK_HEADER(stdlib.h, tcl_ok=1, tcl_ok=0) +AC_EGREP_HEADER(strtol, stdlib.h, , tcl_ok=0) +AC_EGREP_HEADER(strtoul, stdlib.h, , tcl_ok=0) +AC_EGREP_HEADER(strtod, stdlib.h, , tcl_ok=0) +if test $tcl_ok = 0; then + AC_DEFINE(NO_STDLIB_H) +fi +AC_CHECK_HEADER(string.h, tcl_ok=1, tcl_ok=0) +AC_EGREP_HEADER(strstr, string.h, , tcl_ok=0) +AC_EGREP_HEADER(strerror, string.h, , tcl_ok=0) +if test $tcl_ok = 0; then + AC_DEFINE(NO_STRING_H) +fi + +#-------------------------------------------------------------------- +# Check for various typedefs and provide substitutes if +# they don't exist. +#-------------------------------------------------------------------- + +AC_MODE_T +AC_PID_T +AC_SIZE_T +AC_UID_T + +#-------------------------------------------------------------------- +# Locate the X11 header files and the X11 library archive. Try +# the ac_path_x macro first, but if it doesn't find the X stuff +# (e.g. because there's no xmkmf program) then check through +# a list of possible directories. Under some conditions the +# autoconf macro will return an include directory that contains +# no include files, so double-check its result just to be safe. +#-------------------------------------------------------------------- + +AC_PATH_X +not_really_there="" +if test "$no_x" = ""; then + if test "$x_includes" = ""; then + AC_TRY_CPP([#include ], , not_really_there="yes") + else + if test ! -r $x_includes/X11/Intrinsic.h; then + not_really_there="yes" + fi + fi +fi +if test "$no_x" = "yes" -o "$not_really_there" = "yes"; then + echo checking for X11 header files + XINCLUDES="# no special path needed" + AC_TRY_CPP([#include ], , XINCLUDES="nope") + if test "$XINCLUDES" = nope; then + dirs="/usr/unsupported/include /usr/local/include /usr/X386/include /usr/X11R6/include /usr/include/X11R6 /usr/X11R5/include /usr/include/X11R5 /usr/include/X11R4 /usr/openwin/include /usr/X11/include /usr/sww/include" + for i in $dirs ; do + if test -r $i/X11/Intrinsic.h; then + XINCLUDES=" -I$i" + fi + done + fi +else + if test "$x_includes" != ""; then + XINCLUDES=-I$x_includes + else + XINCLUDES="# no special path needed" + fi +fi +if test "$XINCLUDES" = nope; then + echo "Warning: couldn't find any X11 include files." + XINCLUDES="# no include files found" +fi +AC_SUBST(XINCLUDES) + +if test "$no_x" = yes; then + XLIBSW=nope + if test "$XLIBSW" = nope; then + dirs="/usr/unsupported/lib /usr/local/lib /usr/X386/lib /usr/X11R6/lib /usr/lib/X11R6 /usr/X11R5/lib /usr/lib/X11R5 /usr/lib/X11R4 /usr/openwin/lib /usr/X11/lib /usr/sww/X11/lib" + for i in $dirs ; do + if test -r $i/libX11.a; then + XLIBSW="-L$i -lX11" + fi + done + fi +else + if test "$x_libraries" = ""; then + XLIBSW=-lX11 + else + XLIBSW="-L$x_libraries -lX11" + fi +fi +if test "$XLIBSW" = nope ; then + AC_CHECK_LIB(Xwindow, XCreateWindow, XLIBSW=-lXwindow) +fi +if test "$XLIBSW" = nope ; then + AC_MSG_RESULT(couldn't find any! Using -lX11.) + XLIBSW=-lX11 +fi + +#-------------------------------------------------------------------- +# If the X library binaries are in a non-standard directory, and +# if a mechanism such as -R is available on this platform for +# specifying a runtime search path for shared libraries, add the X +# library location into that search path. +#-------------------------------------------------------------------- + +if test "$x_libraries" != "" -a "$ITK_LD_SEARCH_FLAGS" != ""; then + itk_tmp=`sed -e "s|\\\${LIB_RUNTIME_DIR}|$x_libraries|" << EOF +$ITK_LD_SEARCH_FLAGS +EOF` + ITK_LD_SEARCH_FLAGS="$ITK_LD_SEARCH_FLAGS $itk_tmp" +fi + +#-------------------------------------------------------------------- +# Check for the existence of various libraries. The order here +# is important, so that then end up in the right order in the +# command line generated by make. The -lsocket and -lnsl libraries +# require a couple of special tricks: +# 1. Use "connect" and "accept" to check for -lsocket, and +# "gethostbyname" to check for -lnsl. +# 2. Use each function name only once: can't redo a check because +# autoconf caches the results of the last check and won't redo it. +# 3. Use -lnsl and -lsocket only if they supply procedures that +# aren't already present in the normal libraries. This is because +# IRIX 5.2 has libraries, but they aren't needed and they're +# bogus: they goof up name resolution if used. +# 4. On some SVR4 systems, can't use -lsocket without -lnsl too. +# To get around this problem, check for both libraries together +# if -lsocket doesn't work by itself. +#-------------------------------------------------------------------- + +AC_CHECK_LIB(Xbsd, main, [LIBS="$LIBS -lXbsd"]) + +itk_checkBoth=0 +AC_CHECK_FUNC(connect, itk_checkSocket=0, itk_checkSocket=1) +if test "$itk_checkSocket" = 1; then + AC_CHECK_LIB(socket, main, LIBS="$LIBS -lsocket", itk_checkBoth=1) +fi +if test "$itk_checkBoth" = 1; then + itk_oldLibs=$LIBS + LIBS="$LIBS -lsocket -lnsl" + AC_CHECK_FUNC(accept, itk_checkNsl=0, [LIBS=$itk_oldLibs]) +fi +AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])) + +#-------------------------------------------------------------------- +# One more check related to the X libraries. The standard releases +# of Ultrix don't support the "xauth" mechanism, so send won't work +# unless TK_NO_SECURITY is defined. However, there are usually copies +# of the MIT X server available as well, which do support xauth. +# Check for the MIT stuff and use it if it exists. +# +# Note: can't use ac_check_lib macro (at least, not in Autoconf 2.1) +# because it can't deal with the "-" in the library name. +#-------------------------------------------------------------------- + +if test -d /usr/include/mit ; then + AC_MSG_CHECKING([MIT X libraries]) + itk_oldCFlags=$CFLAGS + CFLAGS="$CFLAGS -I/usr/include/mit" + itk_oldLibs=$LIBS + LIBS="$LIBS -lX11-mit" + AC_TRY_LINK([ + #include + ], [ + XOpenDisplay(0); + ], [ + AC_MSG_RESULT(yes) + XLIBSW="-lX11-mit" + XINCLUDES="-I/usr/include/mit" + ], AC_MSG_RESULT(no)) + CFLAGS=$itk_oldCFlags + LIBS=$itk_oldLibs +fi + +#-------------------------------------------------------------------- +# On a few very rare systems, all of the libm.a stuff is +# already in libc.a. Set compiler flags accordingly. +# Also, Linux requires the "ieee" library for math to +# work right (and it must appear before "-lm"). +#-------------------------------------------------------------------- + +MATH_LIBS="" +AC_CHECK_FUNC(sin, , MATH_LIBS="-lm") +AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"]) + +#-------------------------------------------------------------------- +# If this system doesn't have a memmove procedure, use memcpy +# instead. +#-------------------------------------------------------------------- + +AC_CHECK_FUNC(memmove, , [AC_DEFINE(memmove, memcpy)]) + +#-------------------------------------------------------------------- +# Figure out whether "char" is unsigned. If so, set a +# #define for __CHAR_UNSIGNED__. +#-------------------------------------------------------------------- + +#AC_C_CHAR_UNSIGNED + +#-------------------------------------------------------------------- +# Under Solaris 2.4, strtod returns the wrong value for the +# terminating character under some conditions. Check for this +# and if the problem exists use a substitute procedure +# "fixstrtod" (provided by Tcl) that corrects the error. +#-------------------------------------------------------------------- + +AC_CHECK_FUNC(strtod, itk_strtod=1, itk_strtod=0) +if test "$itk_strtod" = 1; then + AC_MSG_CHECKING([for Solaris 2.4 strtod bug]) + AC_TRY_RUN([ + extern double strtod(); + int main() + { + char *string = "NaN"; + char *term; + strtod(string, &term); + if ((term != string) && (term[-1] == 0)) { + exit(1); + } + exit(0); + }], itk_ok=1, itk_ok=0, itk_ok=0) + if test "$itk_ok" = 1; then + AC_MSG_RESULT(ok) + else + AC_MSG_RESULT(buggy) + AC_DEFINE(strtod, fixstrtod) + fi +fi + +#-------------------------------------------------------------------- +# If we are building with cygwin, we need one set of library names, +# otherwise, we need the Source-Navigator set. +#-------------------------------------------------------------------- + + + +if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then + CYGITKLIBSPEC=itk${VERSION} +else + CYGITKLIBSPEC="itk`echo ${VERSION} | tr -d .`" +fi +CYGITKLIB=lib${CYGITKLIBSPEC}.a +CYGITKDLL=cygitk${VERSION}.dll +CYGITKWISH=cygitkwish${VERSION}.exe +CYGITKDEF=itkcyg.def +CYGITKTEST=cygitktest.exe +CYGIMPORTLIB=cygitk${VERSION}.lib +CYGITKRES=cygitk.o +CYGITKWISHRES=cygitkwish.o + +SNITKLIBSPEC=itk30.lib +SNITKLIB=${SNITKLIBSPEC} +SNITKDLL=snitk30.dll +SNITKWISH=snitkwish30.exe +SNITKDEF=itksn.def +SNITKTEST=snitktest.exe +SNIMPORTLIB=snitk30.lib +SNITKRES=snitk.obj +SNITKWISHRES=snitksh.obj + +if test "$GCC" = yes; then +ITKLIBSPEC=${CYGITKLIBSPEC} +ITKLIB=${CYGITKLIB} +ITKDLL=${CYGITKDLL} +ITKWISH=${CYGITKWISH} +ITKDEF=${CYGITKDEF} +ITKTEST=${CYGITKTEST} +ITKIMPORTLIB=${CYGIMPORTLIB} +ITKRES=${CYGITKRES} +ITKWISHRES=${CYGITKWISHRES} +else +ITKLIBSPEC=${SNITKLIBSPEC} +ITKLIB=${SNITKLIB} +ITKDLL=${SNITKDLL} +ITKWISH=${SNITKWISH} +ITKDEF=${SNITKDEF} +ITKTEST=${SNITKTEST} +ITKIMPORTLIB=${SNIMPORTLIB} +ITKRES=${SNITKRES} +ITKWISHRES=${SNITKWISHRES} +fi + +#-------------------------------------------------------------------- +# The statements below define a collection of symbols related to +# building libitk as a shared library instead of a static library. +#-------------------------------------------------------------------- + +AC_ARG_ENABLE(shared, + [ --enable-shared build libitk as a shared library], + [ok=$enableval], [ok=no]) +if test "$ok" = "yes" -a "${SHLIB_SUFFIX}" != ""; then + ITK_SHLIB_CFLAGS="${SHLIB_CFLAGS}" + eval "ITK_LIB_FILE=libitk${VERSION}${SHLIB_SUFFIX}" + ITK_PKG_FILE="[[file join [file dirname \$dir] ${ITK_LIB_FILE}]]" + MAKE_LIB="\${SHLIB_LD} -o ${ITK_LIB_FILE} ${LIBS} \${OBJS} ${SHLIB_LD_LIBS}" + RANLIB=":" +else + ITK_SHLIB_CFLAGS="" + eval "ITK_LIB_FILE=libitk${VERSION}.a" + ITK_PKG_FILE="" + MAKE_LIB="ar cr ${ITK_LIB_FILE} \${OBJS}" +fi + +# Note: in the following variable, it's important to use the absolute +# path name of the Tcl directory rather than "..": this is because +# AIX remembers this path and will attempt to use it at run-time to look +# up the Tcl library. + +if test "$GCC" = yes; then + ITK_BUILD_LIB_SPEC="-L`pwd` -l${ITKLIBSPEC}" + ITK_LIB_SPEC="-L${exec_prefix}/lib/ITK -l{ITKLIBSPEC}" + ITK_LIB_FULL_PATH="`pwd`/${ITKLIB}" +else + tmp="`pwd`/${ITKLIB}" + tmp2="`cygpath --windows $tmp`" + ITK_BUILD_LIB_SPEC="`echo $tmp2 | sed -e s#\\\\\\\\#/#g`" + ITK_LIB_FULL_PATH=${ITK_BUILD_LIB_SPEC} + tmp="${exec_prefix}/lib/ITK/${ITKLIB}" + tmp2="`cygpath --windows $tmp`" + ITK_LIB_SPEC="`echo $tmp2 | sed -e s#\\\\\\\\#/#g`" +fi + +if test "$GCC" = yes; then + BASELIBS="-lkernel32 $optlibs -ladvapi32 -luser32" + WINLIBS="-lgdi32 -lcomdlg32 -lwinspool" + LIBCDLL= +else + BASELIBS="kernel32.lib advapi32.lib user32.lib" + WINLIBS="gdi32.lib comdlg32.lib winspool.lib" + LIBCDLL="msvcrt.lib oldnames.lib" +fi + +AC_SUBST(CFLAGS) +AC_SUBST(DL_LIBS) +AC_SUBST(LD_FLAGS) +AC_SUBST(MATH_LIBS) +AC_SUBST(MAKE_LIB) +AC_SUBST(SHLIB_CFLAGS) +AC_SUBST(SHLIB_LD) +AC_SUBST(SHLIB_LD_LIBS) +AC_SUBST(SHLIB_SUFFIX) +AC_SUBST(SHLIB_VERSION) +AC_SUBST(TCL_BIN_DIR) +AC_SUBST(TCL_BUILD_LIB_SPEC) +AC_SUBST(TCL_SRC_DIR) +AC_SUBST(TCL_VERSION) +AC_SUBST(TCL_LIB_FILE) +AC_SUBST(TCL_LIB_FULL_PATH) +AC_SUBST(TK_BIN_DIR) +AC_SUBST(TK_BUILD_LIB_SPEC) +AC_SUBST(TK_SRC_DIR) +AC_SUBST(TK_VERSION) +AC_SUBST(TK_LIB_FILE) +AC_SUBST(TK_LIB_FULL_PATH) +AC_SUBST(ITCL_BIN_DIR) +AC_SUBST(ITCL_BUILD_LIB_SPEC) +AC_SUBST(ITCL_MAJOR_VERSION) +AC_SUBST(ITCL_MINOR_VERSION) +AC_SUBST(ITCL_SRC_DIR) +AC_SUBST(ITCL_VERSION) +AC_SUBST(ITCL_LIB_FILE) +AC_SUBST(ITCL_LIB_FULL_PATH) +AC_SUBST(ITK_BUILD_LIB_SPEC) +AC_SUBST(ITK_LD_SEARCH_FLAGS) +AC_SUBST(ITK_LIB_FILE) +AC_SUBST(ITK_LIB_FULL_PATH) +AC_SUBST(ITK_LIB_SPEC) +AC_SUBST(ITK_PKG_FILE) +AC_SUBST(ITK_SHLIB_CFLAGS) +AC_SUBST(ITK_SRC_DIR) +AC_SUBST(XINCLUDES) +AC_SUBST(XLIBSW) +AC_SUBST(CYGITKLIB) +AC_SUBST(CYGITKDLL) +AC_SUBST(CYGITKWISH) +AC_SUBST(CYGITKDEF) +AC_SUBST(CYGITKTEST) +AC_SUBST(CYGIMPORTLIB) +AC_SUBST(CYGITKRES) +AC_SUBST(CYGITKWISHRES) +AC_SUBST(SNITKLIB) +AC_SUBST(SNITKDLL) +AC_SUBST(SNITKWISH) +AC_SUBST(SNITKDEF) +AC_SUBST(SNITKTEST) +AC_SUBST(SNIMPORTLIB) +AC_SUBST(SNITKRES) +AC_SUBST(SNITKWISHRES) +AC_SUBST(ITKLIB) +AC_SUBST(ITKDLL) +AC_SUBST(ITKWISH) +AC_SUBST(ITKDEF) +AC_SUBST(ITKTEST) +AC_SUBST(ITKIMPORTLIB) +AC_SUBST(ITKRES) +AC_SUBST(ITKWISHRES) +AC_SUBST(BASELIBS) +AC_SUBST(WINLIBS) +AC_SUBST(LIBCDLL) + +AC_OUTPUT(Makefile ../unix/pkgIndex.tcl ../itkConfig.sh) +
configure.in Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: dllEntryPoint.c =================================================================== --- dllEntryPoint.c (nonexistent) +++ dllEntryPoint.c (revision 1765) @@ -0,0 +1,92 @@ +/* + * dllEntryPoint.c -- + * + * This file implements the Dll entry point as needed by Windows. + */ + +/* + * dllEntryPoint.c -- + * + * This file implements the Dll entry point as needed by Windows. + */ + +#define WIN32_LEAN_AND_MEAN +#include +#include + +/* + * The following declaration is for the VC++ DLL entry point. + */ + +BOOL APIENTRY DllMain _ANSI_ARGS_((HINSTANCE hInst, + DWORD reason, LPVOID reserved)); + +/* CYGNUS LOCAL */ +#ifdef __CYGWIN32__ + +/* cygwin32 requires an impure pointer variable, which must be + explicitly initialized when the DLL starts up. */ +struct _reent *_impure_ptr; +extern struct _reent *_imp__reent_data; +#endif + +/* + *---------------------------------------------------------------------- + * + * DllEntryPoint -- + * + * This wrapper function is used by Borland to invoke the + * initialization code for Tk. It simply calls the DllMain + * routine. + * + * Results: + * See DllMain. + * + * Side effects: + * See DllMain. + * + *---------------------------------------------------------------------- + */ + +BOOL APIENTRY +DllEntryPoint(hInst, reason, reserved) + HINSTANCE hInst; /* Library instance handle. */ + DWORD reason; /* Reason this function is being called. */ + LPVOID reserved; /* Not used. */ +{ + return DllMain(hInst, reason, reserved); +} + +/* + *---------------------------------------------------------------------- + * + * DllMain -- + * + * DLL entry point. + * + * Results: + * TRUE on sucess, FALSE on failure. + * + * Side effects: + * None. + * + *---------------------------------------------------------------------- + */ + +BOOL APIENTRY +DllMain(hInstance, reason, reserved) + HINSTANCE hInstance; + DWORD reason; + LPVOID reserved; +{ +/* CYGNUS LOCAL */ +#ifdef __CYGWIN32__ + /* CYGNUS LOCAL */ + /* cygwin32 requires the impure data pointer to be initialized + when the DLL starts up. */ + _impure_ptr = _imp__reent_data; + /* END CYGNUS LOCAL */ +#endif + + return(TRUE); +}
dllEntryPoint.c Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: Makefile.in_first =================================================================== --- Makefile.in_first (nonexistent) +++ Makefile.in_first (revision 1765) @@ -0,0 +1,277 @@ +## This file is CYGNUS LOCAL. It is a copy of makefile.vc modified for +# GNU make. +# +# Visual C++ 4.0 makefile +# +# Copyright (c) 1993-1996 Lucent Technologies +# based on original from +# Copyright (c) 1995-1996 by Sun Microsystems, Inc. +# +# See the file "license.terms" for information on usage and redistribution +# of this file, and for a DISCLAIMER OF ALL WARRANTIES. + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +VPATH = @srcdir@:@srcdir@/../generic:@srcdir@/../unix +srcdir = @srcdir@ + +CC = @CC@ +CFLAGS = @CFLAGS@ +NM = @NM@ +AS = @AS@ +LD = @LD@ +DLLTOOL = @DLLTOOL@ +WINDRES = @WINDRES@ + +DLL_LDFLAGS = @DLL_LDFLAGS@ +DLL_LDLIBS = @DLL_LDLIBS@ + + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ + +ITCL_VERSION = @ITCL_VERSION@ +VERSION = $(ITCL_VERSION) + +ITKLIB = libitk$(VERSION).a +ITKDLL = cygitk$(VERSION).dll +ITKWISH = cygitkwish$(VERSION).exe +ITKTEST = itktest.exe + +TCLLIBDIR = @TCL_BIN_DIR@ +TCLLIB = @TCL_LIB_FILE@ +TKLIBDIR = @TK_BIN_DIR@ +TKLIB = @TK_LIB_FILE@ +ITCLLIBDIR = @ITCL_BIN_DIR@ +ITCLLIB = @ITCL_LIB_FILE@ + +# Project directories +# +# ROOT = top of source tree +# TMPDIR = location where .obj files should be stored during build + +ROOT = $(srcdir)/.. +TMPDIR = . + +###################################################################### +# Link flags +###################################################################### + +conlflags = $(lflags) -Wl,--subsystem,console -mwindows +guilflags = $(lflags) -mwindows +dlllflags = $(lflags) + +baselibs = -lkernel32 $(optlibs) -ladvapi32 +winlibs = $(baselibs) -luser32 -lgdi32 -lcomdlg32 -lwinspool +guilibs = $(libc) $(winlibs) + +guilibsdll = $(libcdll) $(winlibs) + +###################################################################### +# Compile flags +###################################################################### + +# Comment the following line to compile with symbols + +NODEBUG=1 + +# uncomment the following two lines to compile with TCL_MEM_DEBUG +#DEBUGDEFINES =-DTCL_MEM_DEBUG + + +WINDIR = $(ROOT)/win +GENERICDIR = $(ROOT)/generic + +TCLSRCDIR = @TCL_SRC_DIR@ +TKSRCDIR = @TK_SRC_DIR@ +ITCLSRCDIR = @ITCL_SRC_DIR@ + +TCL_INCLUDES = -I$(TCLSRCDIR)/generic -I$(TCLSRCDIR)/win +TK_INCLUDES = -I$(TKSRCDIR)/generic -I$(TKSRCDIR)/win -I$(TKSRCDIR)/xlib +ITCL_INCLUDES = -I$(ITCLSRCDIR)/generic -I$(ITCLSRCDIR)/win +ITK_INCLUDES = -I$(GENERICDIR) -I$(WINDIR) $(ITCL_INCLUDES) \ + $(TCL_INCLUDES) $(TK_INCLUDES) + +ITK_DEFINES = -D__WIN32__ $(DEBUGDEFINES) +ITK_CFLAGS = $(ITK_INCLUDES) $(ITK_DEFINES) $(CFLAGS) + +ITKWISHOBJS = \ + $(TKLIBDIR)/tkConsole.o \ + $(TMPDIR)/winMain.o + +TKTESTOBJS = \ + $(TMPDIR)/tkConsole.o \ + $(TMPDIR)/tkTest.o \ + $(TMPDIR)/tkSquare.o \ + $(TMPDIR)/testMain.o + +ITKOBJS = \ + $(TMPDIR)/itk_archetype.o \ + $(TMPDIR)/itk_cmds.o \ + $(TMPDIR)/itk_option.o \ + $(TMPDIR)/itk_util.o \ + $(TMPDIR)/dllEntryPoint.o + +ITKDLL = itk$(VERSION).dll +ITKLIB = libitk$(VERSION).a +ITKWISH = itkwish.exe +ITKTEST = tktest.exe +DUMPEXTS = # $(TCLLIBDIR)/dumpexts.exe + +CPU = i386 + +# +# Targets +# + +all: $(ITKDLL) $(ITKWISH) +test: $(ITKDLL) $(ITKTEST) + +install: install-binaries install-libraries + +install-binaries: $(ITKDLL) $(ITKLIB) $(ITKWISH) + @for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @echo "Installing $(ITKLIB)" + @$(INSTALL_DATA) $(ITKLIB) $(LIB_INSTALL_DIR)/$(ITKLIB) + @chmod 555 $(LIB_INSTALL_DIR)/$(ITKLIB) + @echo "Installing wish" + @$(INSTALL_PROGRAM) $(ITKWISH) $(BIN_INSTALL_DIR)/$(ITKWISH) + @echo "Installing tkConfig.sh" + @$(INSTALL_DATA) ../unix/tkConfig.sh $(LIB_INSTALL_DIR)/tkConfig.sh + +install-libraries: + @echo "Installing DLL" + @$(INSTALL_DATA) $(ITKDLL) $(BIN_INSTALL_DIR)/$(ITKDLL) + @for i in $(INSTALL_ROOT)@datadir@ $(INCLUDE_INSTALL_DIR) \ + $(SCRIPT_INSTALL_DIR) $(INSTALL_ROOT)@exec_prefix@ \ + $(INSTALL_ROOT)@exec_prefix@/@host_alias@ \ + $(INSTALL_ROOT)@exec_prefix@/@host_alias@/include \ + $(X11_INCLUDE_INSTALL_DIR) ; \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + @echo "Installing tk.h" + @$(INSTALL_DATA) $(GENERICDIR)/tk.h $(INCLUDE_INSTALL_DIR)/tk.h + for i in $(XLIBDIR)/X11/*.h; \ + do \ + echo "Installing $$i"; \ + $(INSTALL_DATA) $$i $(X11_INCLUDE_INSTALL_DIR); \ + done; + for i in $(ROOT)/library/*.tcl $(ROOT)/library/tclIndex $(ROOT)/library/prolog.ps $(ROOT)/unix/tkAppInit.c; \ + do \ + echo "Installing $$i"; \ + $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR); \ + done; + +install-minimal: + @echo "Installing DLL" + @$(INSTALL_DATA) $(ITKDLL) $(BIN_INSTALL_DIR)/$(ITKDLL) + @for i in $(INSTALL_ROOT)@datadir@ $(SCRIPT_INSTALL_DIR) ; \ + do \ + if [ ! -d $$i ] ; then \ + echo "Making directory $$i"; \ + mkdir $$i; \ + chmod 755 $$i; \ + else true; \ + fi; \ + done; + for i in $(ROOT)/library/*.tcl $(ROOT)/library/tclIndex $(ROOT)/library/prolog.ps; \ + do \ + echo "Installing $$i"; \ + $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR); \ + done; + +$(TMPDIR)/itkcyg.def: $(DUMPEXTS) $(ITKOBJS) + echo 'EXPORTS' > tmp.def + -for o in $(ITKOBJS); do \ + $(NM) --extern-only --defined-only $$o | sed -e 's/[^ ]* [^ ]* //' -e 's/^_//' | fgrep -v DllEntryPoint | fgrep -v DllMain | fgrep -v impure_ptr >> tmp.def; \ + done + mv tmp.def $(TMPDIR)/itkcyg.def + +$(ITKDLL): $(ITKOBJS) $(TMPDIR)/itkcyg.def + $(CC) -s $(DLL_LDFLAGS) -Wl,--base-file,itk.base \ + -o $(ITKDLL) $(ITKOBJS) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows -Wl,-e,_DllMain@12 \ + -Wl,--image-base,0x66600000 + $(DLLTOOL) --as=$(AS) --dllname $(ITKDLL) --def $(TMPDIR)/itkcyg.def \ + --base-file itk.base --output-exp itk.exp + $(CC) -s $(DLL_LDFLAGS) -Wl,--base-file,itk.base -Wl,itk.exp \ + -o $(ITKDLL) $(ITKOBJS) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows -Wl,-e,_DllMain@12 \ + -Wl,--image-base,0x66600000 + $(DLLTOOL) --as=$(AS) --dllname $(ITKDLL) --def $(TMPDIR)/itkcyg.def \ + --base-file itk.base --output-exp itk.exp + $(CC) $(DLL_LDFLAGS) -Wl,itk.exp -o $(ITKDLL) $(ITKOBJS) \ + $(TKLIBDIR)/$(TKLIB) $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(DLL_LDLIBS) -mwindows \ + -Wl,-e,_DllMain@12 -Wl,--image-base,0x66600000 + +$(ITKLIB): $(TMPDIR)/itkcyg.def + $(DLLTOOL) --as=$(AS) --dllname $(ITKDLL) --def $(TMPDIR)/itkcyg.def \ + --output-lib $(ITKLIB) + +$(ITKWISH): $(ITKWISHOBJS) $(ITKLIB) $(TMPDIR)/itkwishres.o + $(CC) $(ldebug) $(guilflags) $(ITKWISHOBJS) $(ITK_CFLAGS) $(TMPDIR)/itkwishres.o \ + $(ITKLIB) $(TKLIBDIR)/$(TKLIB) \ + $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(guilibsdll) \ + -o $(ITKWISH) + +$(ITKTEST): $(ITKTESTOBJS) $(ITKLIB) $(TMPDIR)/itkwishres.o + $(CC) $(ldebug) $(guilflags) $(WISHOBJS) $(ITK_CFLAGS) $(TMPDIR)/itkwishres.o \ + $(ITKLIB) $(TKLIBDIR)/$(TKLIB) \ + $(ITCLLIBDIR)/$(ITCLLIB) $(TCLLIBDIR)/$(TCLLIB) \ + $(guilibsdll) \ + -o $(ITKTEST) + +# +# Special case object file targets +# + +$(TMPDIR)/testMain.o: $(ROOT)/win/winMain.c + $(CC) -c $(ITK_CFLAGS) -DTK_TEST -o $@ $? + +$(TMPDIR)/winMain.o: $(ROOT)/win/winMain.c + $(CC) -c $(ITK_CFLAGS) -DTK_TEST -o $@ $? + +# +# Implicit rules +# + +$(TMPDIR)/%.o: $(GENERICDIR)/%.c + $(CC) -c $(ITK_CFLAGS) -o $@ $< + +itkres.o: $(ROOT)/win/rc/itk.rc + $(WINDRES) --include $(ROOT)/win/rc --include $(ROOT)/generic \ + --include $(ITCLSRCDIR)/generic \ + --include $(TCLSRCDIR)/generic --include $(TKSRCDIR)/generic \ + --define VS_VERSION_INFO=1 $(ROOT)/win/rc/itk.rc itkres.o + +itkwishres.o: $(ROOT)/win/rc/itkwish.rc + $(WINDRES) --include $(ROOT)/win/rc --include $(ITCLSRCDIR)/generic \ + --include $(TCLSRCDIR)/generic --include $(TKSRCDIR)/generic\ + --include $(ROOT)/generic --define VS_VERSION_INFO=1 \ + $(ROOT)/win/rc/itkwish.rc itkwishres.o + + +Makefile: $(WINDIR)/Makefile.in config.status + $(SHELL) config.status + +config.status: $(WINDIR)/configure + ./config.status --recheck
Makefile.in_first Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Index: pkgIndex.tcl =================================================================== --- pkgIndex.tcl (nonexistent) +++ pkgIndex.tcl (revision 1765) @@ -0,0 +1,3 @@ +# Tcl package index file, version 1.0 + +package ifneeded Itk 3.0 [list load itk30.dll Itk]
pkgIndex.tcl Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.