Sophie

Sophie

distrib > Mandriva > 2010.1 > x86_64 > media > contrib-release > by-pkgid > 0878b9d14ebef52e8f3984aeacb5e258 > files > 141

gnustep-make-2.2.0-1mdv2010.0.x86_64.rpm

2009-05-09  Adam Fedor  <fedor@gnu.org>

	* Version 2.2.0

2009-05-06  Adam Fedor  <fedor@gnu.org>

	* Documentation/news.texi, Documentation/releasenotes.texi: Update.

2009-03-30  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config.make.in (OBJC_LIB_FLAG): Set OBJC_LIB_FLAG here.
	* library-combo.make: Do not set it here.

2009-03-30  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac, library-combo.make: Fixed to automatically use
	-lobjc_gc for the GNU Objective-C runtime with garbage collection
	if no --with-objc-lib-flag=... is used in configure.
	* configure: Regenerated.

2009-03-30  Nicola Pero  <nicola.pero@meta-innovation.com>

	From a suggestion by Truls Becken <truls.becken@gmail.com>:
	* configure.ac (--with-objc-lib-flag): New option allowing to
	replace the default -lobjc flag with a custom one such as
	-l:libobjc.so.1, which can be used on some platforms to require
	linking a specific version of libobjc - a handy trick when you
	have more than one installed.
	* configure: Regenerated.
	* config.make.in (OBJC_LIB_FLAG): New variable.
	* library-combo.make: Use OBJC_LIB_FLAG instead of -lobjc.
	
2009-03-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed compiling software that contains both C/ObjC and C++/ObjC++
	files: use CC to compile C and ObjC files even if CXX is used to
	link.  (Problem reported by Riccardo Mottola <multix@gmail.com>).
	* target.make: Replaced CC with LD everywhere it is used to link -
	so that we can change the program used to link (LD) without having
	to change the program used to compile C/ObjC code (CC).
	* Instance/rules.make (LD): If CC_OBJ_FILES or OBJCC_OBJ_FILES is
	not empty, set LD to be CXX, while leaving CC unchanged.
	
2009-03-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	Print a user-friendly warning or notice message when there are no
	files to link.
	* messages.make (WARNING_EMPTY_LINKING, NOTICE_EMPTY_LINKING): New
	messages.
	* Instance/application.make: Print out the WARNING_EMPTY_LINKING
	message if we're linking but there are no files to link.
	* Instance/ctool.make: Same change.
	* Instance/framework.make: Same change.
	* Instance/gswapp.make: Same change.
	* Instance/gswbundle.make: Same change.
	* Instance/library.make: Same change.
	* Instance/objc.make: Same change.
	* Instance/palette.make: Same change.
	* Instance/service.make: Same change.
	* Instance/subproject.make: Same change.
	* Instance/tool.make: Same change.

	* Instance/bundle.make: Same change but use the
	NOTICE_EMPTY_LINKING message.
	
2009-02-27  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.Packaging: File removed - moved it
	top-level to README.Packaging.
	* README.Packaging: New file.
	
2009-02-25  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make: When printing "This is gnustep-make 2.0.9.  Type
	'make print-gnustep-make-help' for help.", make sure we replace
	'make' with whatever command was used to invoke GNU make (eg, on
	OpenBSD it is often gmake instead of make). Issue reported by
	Sebastian Reitenbach <buzzdee@web.de>.

2009-02-25  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.Packaging (GETTING HELP): New section.

2009-02-23  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac (GNUSTEP_MAKE_PARALLEL_BUILDING): Enable parallel
	building support by default.  From now on, you only need to use
	eg 'make -j 2' to build something using parallel building.  Updated
	documentation.
	* configure: Regenerated.

	* Instance/application.make (.PHONY): Added
	internal-app-run-compile-submake and internal-app-compile.
	* Instance/bundle.make (.PHONY): Similar change.
	* Instance/ctool.make (.PHONY): Similar change.
	* Instance/framework.make (.PHONY): Similar change.
	* Instance/library.make (.PHONY): Similar change.
	* Instance/objc.make (.PHONY): Similar change.
	* Instance/palette.make (.PHONY): Same change.
	* Instance/service.make (.PHONY): Same change.
	* Instance/subproject.make (.PHONY): Same change.
	* Instance/tool.make (.PHONY): Same change.
	
2009-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Extended experimental parallel building support to most project
	types.  You can use 'make GNUSTEP_MAKE_PARALLEL_BUILDING=YES -j2'
	to try out the new parallel building support.
	* Instance/application.make (internal-app-run-compile-submake):
	New target with separate implementations to support parallel and
	non-parallel building.
	(internal-app-compile): New target.
	(internal-app-all_): Depend on internal-app-run-compile-submake
	instead of APP_FILE.
	* Instance/bundle.make (internal-bundle-run-compile-submake),
	(internal-bundle-compile), (internal-bundle-all_): Same changes.
	* Instance/framework.make
	(internal-framework-run-compile-submake),
	(internal-framework-compile), (build-framework): Same changes.
	* Instance/palette.make (internal-palette-run-compile-submake),
	(internal-palette-compile), (internal-palette-all_): Same changes.
	* Instance/service.make (internal-service-run-compile-submake),
	(internal-service-compile), (internal-service-all_): Same changes.	
	
	* Instance/ctool.make (internal-ctool-all_): When doing a parallel
	build, use a submake 'compile' invocation to compile.
	(internal-ctool-compile): New target for the 'compile' invocation.
	* Instance/objc.make (internal-objc_program-all_),
	(internal-objc_program-compile): Same changes.
	* Instance/subproject.make (internal-subproject-all_),
	(internal-subproject-compile): Same changes.
	
2009-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/library.make (internal-library-all_): Fixed
	GNUSTEP_OPERATION used in submake invocation when doing a parallel
	build.
	* Instance/tool.make (internal-tool-all_): Same change.

2009-02-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	Added experimental support for parallel building of libraries and
	tools.  We can extend it to more project types once the concept is
	proven to work.
	* configure.ac (--enable-parallel-building): New experimental
	option, disabled by default.
	* configure: Regenerated.
	* config-noarch.make.in (GNUSTEP_MAKE_PARALLEL_BUILDING): New
	variable.
	* rules.make (.NOTPARALLEL): Do not create this rule when parallel
	building is enabled, and we are doing the final compile sub-make
	invocation that is expected to build in parallel.
	* Instance/library.make (internal-library-all_): When doing a
	parallel build, delegate the building of the final object file to
	a sub-make 'compile' invocation that can safely build in parallel.
	(internal-library-compile): New target executed in the parallel
	invocation.
	* Instance/tool.make (internal-tool-all_): Same.
	(internal-tool-compile): Same.

2009-02-08  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-make-help: Use _MAKE_ instead of make when referring to
	the GNU make program.
	* rules.make (print-gnustep-make-help): Replace _MAKE_ with the
	basename of $(MAKE) when printing the help, so that on different
	systems the correct name for GNU make is used in the help.  For
	example, on OpenBSD it should be 'gmake', not 'make'.  Issue
	reported by Sebastian Reitenbach <buzzdee@web.de>.

2009-02-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/releasenotes.texi: Updated.
	* RELEASENOTES: Regenerated.

2009-02-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	This change means that file timestamps are more likely to be
	preserved when files are installed.  For example, if you reinstall
	a library without having changed the headers, this should/might
	prevent code using the library headers from being rebuilt.
	* configure.ac: Check if 'install -p' works.  If it works, use it
	by default.  Added --disable-install-p option to revert to the
	previous behaviour of using 'install' instead of 'install -p'.
	* configure: Regenerated
	* config-install-p-test/: New directory.
	* config-install-p-test/run-test.sh: New file.
	* config-install-p-test/config-install-p-test-file: New file.
	
2009-02-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: On MinGW, do not set INSTALL to 'install -p'.
	Prefer the install program chosen by configure, which has a full
	path (typically '/bin/install -c') and so it is safer.
	* configure: Regenerated.

2009-01-31  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.MinGW: Updated installation instructions.
	In particular, use MinGW 5.1.4 instead of 5.1.3.

2009-01-28  Nicola Pero  <nicola.pero@meta-innovation.com>

	* rules.make (.NOTPARALLEL): Added target.  It should turn off
	parallel building - which does not work with gnustep-make - even
	when specified on the command-line as 'make -j'.

2009-01-28  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/resource-set.make (internal-resource_set-uninstall_):
	Rewritten to be much more accurate.  In particular it now removes
	LOCALIZED_RESOURCE_DIRS and RESOURCE_DIRS.
	* Instance/Shared/headers.make
	(shared-instance-headers-uninstall): Remove
	GNUSTEP_HEADERS/HEADER_FILES_INSTALL_DIR if it is empty.
	* Instance/rules.make (internal-$(GNUSTEP_TYPE)-uninstall): Remove
	the $(GNUSTEP_INSTANCE)_INSTALL_DIRS if empty.
	($(GNUSTEP_INSTANCE)_INSTALL_DIRS): New rule replacing the one for
	ADDITIONAL_INSTALL_DIRS, moved into the Master invocation.
	Do not add $(GNUSTEP_INSTANCE)_INSTALL_DIRS to
	ADDITIONAL_INSTALL_DIRS.
	* Master/rules.make (uninstall): Depend on
	internal-after-uninstall.
	(internal-after-uninstall): New rule to remove
	ADDITIONAL_INSTALL_DIRS if empty.
	($(ADDITIONAL_INSTALL_DIRS)): New rule.
	(internal-before-install): New rule.  Depend on
	ADDITIONAL_INSTALL_DIRS.
	(install): Depend on internal-before-install.
	
2009-01-28  Nicola Pero  <nicola.pero@meta-innovation.com>

	* rules.make: Replaced ${OEXT} with the equivalent syntax $(OEXT)
	to be consistent with the rest of the code.
	
2009-01-25  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add PATH to custom objc library on MinGW (Fix
	for Bug #25394)

2009-01-22  Adam Fedor  <fedor@gnu.org>

	* target.make (darwin): Don't use -flat_namespace

2009-01-22  Nicola Pero  <nicola.pero@meta-innovation.com>

	* rule.make (.DELETE_ON_ERROR): Added target.  It should cause GNU
	make to react more intelligently to errors.

2009-01-11  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac:
	* configure:
	* library-combo.make:
	* config.make.in:
	* common.make:
	Simplify GC changes.

2009-01-10  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: Check for objc garbage collection.
	* config.make.in: Define whether we are using GC.
	* configure: Regenerate.
	Initial move towards getting gc working again after years of disuse.

2009-01-07  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (uninstall): Run each 'rmdir' as a separate
	command.

2009-01-07  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.Packaging: Mention clearly setting
	GNUSTEP_INSTALLATION_DOMAIN in the environment before
	configuring gnustep-base.

2009-01-06  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MinGW: Fix error in path to install gnutls.
	
2009-01-06  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.8

2008-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Added -s option when invoking make, fixing
	the problems with spurious output when gnustep-config was used in
	a process spawned by a makefile (eg, configure in gnustep-base
	when triggered by its Makefile.postamble).

2008-12-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Added new --installation-domain-for=xxx option.
	* rules.make (print-gnustep-make-installation-domain): New target.

2008-12-21  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.7

2008-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	* installation-domains.conf: Added gnustep-objc to the System
	packages.
	
2008-12-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	New configuration file that allows hardcore developers building
	everything from source to specify arbitrary default installation
	domains for the software.  You just need to copy the
	installation-domains.conf file to the same directory as the
	GNUstep.conf file, and edit it to customize the default
	installation domain (Thanks to Richard for the idea).

	* common.make: Read installation-domains.conf file if it exists,
	and use it to customize the default installation domains.
	* installation-domains.conf: New file.

	Reverted last change.
	* configure.ac: Removed option --disable-packages.
	* configure: Regenerated.
	* config-noarch.make.in: Removed
	GNUSTEP_INSTALL_CORE_INTO_SYSTEM_DOMAIN.
	* common.make: Reverted last change.
	
2008-12-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: New option --disable-packages that causes
	gnustep-make to assume packages are never involved, so it defaults
	to installing 'core' software into System by default.
	* configure: Regenerated.
	* config-noarch.make.in: Added new variable
	GNUSTEP_INSTALL_CORE_INTO_SYSTEM_DOMAIN.
	* common.make: If GNUSTEP_INSTALLATION_DOMAIN is not set,
	GNUSTEP_INSTALL_CORE_INTO_SYSTEM_DOMAIN is set to 'YES' and
	GNUSTEP_CORE_SOFTWARE is set to 'YES', set
	GNUSTEP_INSTALLATION_DOMAIN to SYSTEM.
	
2008-12-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.Packaging: New file providing complete
	instructions and recommendations on how to create GNUstep
	packages.
	
2008-12-05  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MingW: Fix missing part of ffi
	instructions.

2008-12-05  Richard Frith-Macdonald <rfm@gnu.org>

	* GNUstep.sh.in:
	* GNUstep.csh.in:
	Fix the code for detecting path fragments within a path ... it was
	just grepping for the fragments without delimiters, so it would think
	a fragment was present if that fragment happened to be a substring of
	something which was present.
	eg. if /usr/GNUstep/Local/Tools/Admin was present, then it would think
	that /usr/GNUstep/Local/Tools was also present.

2008-11-28  Richard Frith-Macdonald <rfm@gnu.org>

	* print_unique_pathlist.sh: Reverse the order of the path fragments
	so that, when the caller iterates through them and prepends them to
	other paths, they end up prepended in the correct order.

2008-11-13  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MingW: Change instructions to use libffi

2008-11-06  Wolfgang Lux  <wolfgang.lux@gmail.com>

	* GNUstep.csh.in: Fix incorrect case pattern which causes
	initialization of DYLD_LIBRARY_PATH on Darwin and NEXTSTEP systems
	to be skipped.

2008-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Disable precompiled headers on gcc 4.1 since
	there is no reliable ways to determine if they work or not.
	* configure: Regenerated.

2008-10-27  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Added special case when checking for thread
	support on Apple OS X - it should now detect that Apple OS X
	supports threads but needs no threading library specified.  This
	implicitly fixes the following check for native ObjC exceptions.
	* configure: Regenerated.
	* config_thread.m: Rewritten Apple runtime case to use pthread
	directly.

2008-10-21  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/releasenotes.texi: Updated for latest changes.
	* RELEASENOTES: Regenerated.

2008-10-21  Nicola Pero  <nicola.pero@meta-innovation.com>

	Implemented suggestion from David Chisnall <theraven@sucs.org> of
	using --no-print-directory for recursive make.
	* common.make (GNUSTEP_MAKE_NO_PRINT_DIRECTORY_FLAG): New variable.
	Set it to --no-print-directory unless messages=yes.
	* Master/aggregate.make: Use it when doing recursive invocations
	that change directory.
	* Master/rules.make: Same change.
	
2008-10-21  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed problem reported by Funda Wang <fundawang@gmail.com>.
	* GNUstep.sh.in: When adding paths to PATH, CLASSPATH,
	GUILE_LOAD_PATH and INFOPATH, check that each path is not already
	there before adding it.  Previously we were checking, but checking
	the whole string of paths as a single unit; the new code works
	much better when some of the paths, but not all of them, are
	already there.  Reduced the number of loops and variables.
	Inlined code from ld_lib_path.sh, and rewritten it completely to
	check every single library and framework path before adding it to
	the library path variables.  Avoid executing any of the framework
	code unless we are on Darwin.
	* ld_lib_path.sh: File removed.

	* GNUstep.csh.in: Same changes as for GNUstep.sh.in.
	* ld_lib_path.csh: File removed.

	* GNUmakefile.in (install): Do not install ld_lib_path.sh and
	ld_lib_path.csh.
	(uninstall): Do not uninstall ld_lib_path.csh.
	
2008-07-22  Nicola Pero  <nicola.pero@meta-innovation.com>

	Keep better track of the original source file used to compile each
	object file, so that you can have both file.c and file.m in the
	same project (suggestion by David Chisnall <theraven@sucs.org>).
	* rules.make: Changed rules so that they dictate how to create
	for example %.m.o from %.m instead of just %.o from %.m.
	* Instance/rules.make: Changed all xxx_OBJS variables so that they
	retain the original extension; for example, OBJC_OBJS now contains
	%.m.o instead of just %.o.
	
2008-07-21  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed bug reported by Marko Riedel <markoriedelde@yahoo.de> where
	test-applications are not linked against the gui library by
	default.
	* Instance/test-application.make (NEEDS_GUI): Set to 'yes'.
	* Instance/test-tool.make (NEEDS_GUI): Set to 'no'.
	* Instance/tool.make (NEEDS_GUI): Use 'no' instead of 'NO' for 
	consistency.

2008-07-17  Adam Fedor  <fedor@gnu.org>

	* Documentation/machines.texi: Update

2008-06-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-make-help: Mention the MAKEFILE_NAME variable that can
	be used to use makefiles with a name different from the default
	'GNUmakefile'.

2008-06-17  Richard Frith-Macdonald <rfm@gnu.org>

	* gnustep-config.in: Fixup assignment to gs_variable_value with
	code which works with more shells (bug #23618).
	Solution suggested by Hubert Chathi.

2008-06-14  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.6

2008-06-11  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/make.texi: Renamed to gnustep-make.texi.
	* Documentation/gnustep-make.texi: New file.
	* Documentation/GNUmakefile: Corresponding updates.
	(Patch by Gareth Armstrong <gareth.armstrong@hp.com>)
	
	* Documentation/releasenotes.texi: Mention that the
	make.info file was renamed to gnustep-make.info.
	* RELEASENOTES: Regenerated.

2008-06-10  Nicola Pero  <nicola.pero@meta-innovation.com>

	* openapp.in: Avoid 'echo -e' which is not portable (Suggestion
	from Hubert Chathi <uhoreg@debian.org>)

2008-05-30  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config.guess, config.sub: Updated to latest version.

2008-05-25  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed cases where ./configure wouldn't detect that the compiler
	supported auto-dependencies.
	* configure.ac: Fixed regular expression to determine the 
	GCC version.  If was failing when the string terminated at
	the minor version.
	* configure: Regenerated.

2008-05-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed occasional spurious rebuilds of Info-gnustep.plist and
	Info.plist files.
	* Instance/bundle.make (build-bundle): Swapped the order of the
	shared-instance-bundle-all and $(BUNDLE_INFO_PLIST_FILE)
	dependencies.
	(Info.plist, Info-gnustep.plist): Do not depend on building the
	directory containing the plist file first.
	* Instance/framework.make (Info.plist, Info-gnustep.plist): Do not
	depend on creating the directory containing the plist file first.
	
2008-05-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	* messages.make (ECHO_UPDATING_VERSION_SYMLINK): Added definition
	for messages=no.  (ECHO_CREATING_STAMP_FILE): New variable.
	* Instance/Shared/stamp-string.make
	(shared-instance-stamp-string): Use ECHO_CREATING_STAMP_FILE
	instead of ECHO_NOTHING.

2008-05-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed occasional spurious rebuilds of framework headers; improved
	display of messages when building framework headers.
	* Instance/framework.make (internal-framework-build-headers):
	Depend on $(FRAMEWORK_VERSION_DIR)/Headers.
	($(FRAMEWORK_VERSION_DIR)/Headers/%.h): Do not depend on
	$(FRAMEWORK_VERSION_DIR)/Headers.
	(build-framework-dirs): Do not depend on
	$(FRAMEWORK_VERSION_DIR)/Headers.
	* Instance/subproject.make (internal-subproject-build-headers):
	Depend on $(OWNING_PROJECT_HEADER_DIR).
	($(OWNING_PROJECT_HEADER_DIR)/%.h): Do not depend on
	$(OWNING_PROJECT_HEADER_DIR).
	
	* Instance/framework.make ($(FRAMEWORK_DIR)/Versions/Current): Use
	ECHO_UPDATING_VERSION_SYMLINK instead of ECHO_NOTHING.
	($(FRAMEWORK_VERSION_DIR)/Headers/%.h): Use ECHO_CREATING instead
	of ECHO_NOTHING.
	* Instance/subproject.make ($(OWNING_PROJECT_HEADER_DIR)/%.h): Use 
	ECHO_CREATING instead of ECHO_NOTHING.
	* Instance/messages.make: Added ECHO_UPDATING_VERSION_SYMLINK.
	
2008-05-24  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (all): Use $(MAKE) instead of make when printing
	help message, so it prints the correct command on systems where
	'gmake' needs to be used instead 'make'. (Patch by Sebastian
	Reitenbach <buzzdee@web.de>).

2008-05-22  Blake Nicholson <blaken@umich.edu>

	* configure.ac: Added the --enable-absolute-install-paths option.
	* configure: Regenerated.
	* config.make.in: Added GNUSTEP_ABSOLUTE_INSTALL_PATHS.
	* Instance/library.make, Instance/framework.make: Change
	LIB_LINK_INSTALL_NAME to an absolute path if
	GNUSTEP_ABSOLUTE_INSTALL_PATHS is 'yes' in darwin.
	* Documentation/releasenotes.texi: Updated to reflect changes.
	* RELEASENOTES: Regenerated.

2008-05-18  Nicola Pero  <nicola.pero@meta-innovation.com>
	
	* configure.ac: Install GNUstep.conf in /etc/GNUstep/GNUstep.conf
	on OpenBSD, FreeBSD and NetBSD.  Packagers are free to install the
	configuration file wherever it best suits them; but for simplicity
	and consistency if gnustep-make is compiled from source and
	nothing else is specified, we default to /etc/GNUstep/GNUstep.conf
	on all systems.
	* configure: Regenerated.
	* Documentation/releasenotes.texi: Describe change.
	* RELEASENOTES: Regenerated.
	
2008-03-30  Nicola Pero  <nicola.pero@meta-innovation.com>
	
	* clean_os.sh: Support new versions of Darwin, and future ones as
	well.  Patch by Blake Nicholson <blaken@umich.edu> with a few
	changes.

2008-03-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.MinGW: Fixed subversion URL to get libobjc
	- reported by Christopher Chandler <chrisjechandler@mac.com>.

2008-03-11  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.5

2008-03-11  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed NEEDS_GUI and xxx_NEEDS_GUI options to accept "yes" as well
	as "YES", to be consistent with all the other boolean options in
	gnustep-make.
	* Instance/rules.make (INTERNAL_NEEDS_GUI): Changed to accept
	"yes" as well as "YES"
	* Instance/application.make (NEEDS_GUI): Use yes/no in preference
	to YES/NO for the default values.
	* Instance/bundle.make: Same change.
	* Instance/framework.make: Same change.
	* Instance/gswapp.make: Same change.
	* Instance/gswbundle.make: Same change.
	* Instance/library.make: Same change.
	* Instance/palette.make: Same change.

	* Documentation/releasenotes.texi: Suggest yes/no in preference to
	YES/NO as possible values for NEEDS_GUI and xxx_NEEDS_GUI.
	* RELEASENOTE: Regenerated.
	
2008-03-03  Nicola Pero  <nicola.pero@meta-innovation.com>

	Updated C++ and ObjC++ support so that it automatically uses g++
	to link C++ and ObjC++ files.
	* configure.ac (AC_PROG_CXX): Detect a C++ compiler (if any).
	* configure: Regenerated.
	* config.make.in (CXX, CCFLAGS): New variables.
	* rules.make: Use CXX, not CC, when compiling C++ and
	ObjC++. (ALL_CCFLAGS): Added CCFLAGS.
	* Instance/rules.make: If CC_OBJ_FILES or OBJCC_OBJ_FILES are
	non-empty, set CC to be the same as CXX so that the C++ compiler
	is used to link.

2008-03-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	Updated configure and filesystem layouts so that a ./configure on
	Apple Mac OS X sets up a consistent apple-apple-apple environment.
	* FileSystemLayouts/apple: New filesystem layout for compiling and
	installing apple-apple-apple software.
	* FileSystemLayouts/README: Added the new filesystem layout.
	* configure.ac: If the library-combo is apple-apple-apple, by
	default use the apple filesystem layout.  On darwin, use
	/Library/GNUstep/GNUstep.conf as the default config file.
	* configure: Regenerated.
	* Documentation/GNUmakefile
	(./tmp-installation/System/Library/Makefiles): Specify
	--with-layout=gnustep when creating the temporary local
	installation.
	
	* Documentation/releasenotes.texi: Explain change of the default
	filesystem layout on apple-apple-apple.
	* RELEASENOTES: Regenerated.
	
2008-02-21  Gregory John Casamento <greg_casamento@yahoo.com>

	* Documentation/faq.texi: Minor updates to the faq.

2008-02-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	You can now set NEEDS_GUI = YES / NO in your GNUmakefile to change
	the behaviour for all targets/projects in one go.
	* Instance/rules.make: Renamed NEEDS_GUI to INTERNAL_NEEDS_GUI and
	DEFAULT_NEEDS_GUI to NEEDS_GUI.
	* Instance/application.make (DEFAULT_NEEDS_GUI): Renamed to
	NEEDS_GUI; do not set if already set.
	* Instance/bundle.make: Same change.
	* Instance/framework.make: Same change.
	* Instance/gswapp.make: Same change.
	* Instance/gswbundle.make: Same change.
	* Instance/library.make: Same change.
	* Instance/palette.make: Same change.
	* Instance/tool.make: Same change.

	* Documentation/releasenotes.texi: Added NEEDS_GUI.
	* RELEASENOTES: Regenerated.
	
2008-02-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	Implemented new variable xxx_NEEDS_GUI that can be used to
	explicitly require linking/not linking against the gui library.
	If xxx_NEEDS_GUI is not specified, the default behaviour is the
	traditional one, which depends on the project type: applications,
	bundles, frameworks, palettes and libraries link against the gui
	library if available; all other projects don't.
	* Instance/rules.make (NEEDS_GUI): New variable.  Set it from
	xxx_NEEDS_GUI or DEFAULT_NEEDS_GUI.  (ALL_LIBS): New variable
	listing all libraries to link against.  Set it using NEEDS_GUI to
	decide if we should link against the gui or not.
	
	* Instance/application.make (DEFAULT_NEEDS_GUI): Set to YES.
	(ALL_GUI_LIBS): Variable removed.  Use ALL_LIBS when linking
	instead.
	* Instance/bundle.make (DEFAULT_NEEDS_GUI): Set to YES.
	(BUNDLE_LIBS): When linking against all libs, use ALL_LIBS.
	(ALL_BUNDLE_LIBS): Variable removed.
	* Instance/ctool.make (ALL_TOOL_LIBS): Variable renamed to
	ALL_LIBS.  Separated out ALL_LIB_DIRS for consistency with other
	project types.
	* Instance/framework.make (DEFAULT_NEEDS_GUI): Set to YES.
	(LIBRARIES_DEPEND_UPON): When linking against all libs, use
	ALL_LIBS.
	* Instance/gswapp.make (DEFAULT_NEEDS_GUI): Set to NO.
	(ALL_GSW_LIBS): Use ALL_LIBS.  Separated ALL_LIB_DIRS; pass it on
	the command-line.
	* Instance/gswbundle.make (DEFAULT_NEEDS_GUI): Set to NO.
	Pass ALL_LIB_DIRS separately from ALL_GSWBUNDLE_LIBS on the
	linker command-line.
	* Instance/library.make (DEFAULT_NEEDS_GUI): Set to YES.
	(LIBRARIES_DEPEND_UPON): When linking against all libs, use
	ALL_LIBS.
	* Instance/objc.make (ALL_OBJC_LIBS): Do not include ALL_LIB_DIRS;
	pass that variable separately on the link command line for
	consistency with other project types.
	* Instance/palette.make (DEFAULT_NEEDS_GUI): Set to YES.
	(PALETTE_LIBS): When linking against all libs, use ALL_LIBS.
	(ALL_PALETTE_LIBS): Variable removed.  Pass ALL_LIB_DIRS and
	PALETTE_LIBS directly on the linker command-line.
	* Instance/tool.make (DEFAULT_NEEDS_GUI): Set to NO.
	(ALL_TOOL_LIBS): Do not define; use directly ALL_LIB_DIRS
	and ALL_LIBS when linking.

	* target.make (BUNDLE_LINK_CMD): Replaced ALL_BUNDLE_LIBS
	with BUNDLE_LIBS and added ALL_LIB_DIRS which is no longer
	included in BUNDLE_LIBS.

	* Documentation/releasenotes.texi: Added xxx_NEEDS_GUI.
	* RELEASENOTES: Regenerated.
	
2008-01-19  Adam Fedor  <fedor@gnu.org>

	* Master/source-distribution.make: Check for version directory
	when making export.

2008-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Install app-wrapper.template,
	java-executable.template and executable.template with execute
	permissions to stop warnings from package checking systems.  From
	a suggestion by Gareth Armstrong <gareth.armstrong@hp.com>.
	* GNUmakefile.in (uninstall): Remove java-executable.template.
	
2008-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.sh.in: Removed shebang expression '#! /bin/xxx' at the
	beginning of the file to stop package checking systems from
	complaining that this is an executable script installed with the
	wrong permissions (Problem reported by Gareth Armstrong
	<gareth.armstrong@hp.com>).
	* GNUstep.csh.in: Same change.
	* filesystem.sh.in: Same change.
	* filesystem.csh.in: Same change.
	* GNUstep-reset.sh: Same change.
	* ld_lib_path.sh: Same change.
	* ld_lib_path.csh: Same change.
	
2008-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/fhs-system (GNUSTEP_SYSTEM_DOC_MAN): Changed
	from /man to /share/man.  (GNUSTEP_SYSTEM_DOC_INFO): Changed from
	/info to /share/info (Patch by Gareth Armstrong
	<gareth.armstrong@hp.com>).
	* FilesystemLayouts/fhs-system (GNUSTEP_NETWORK_DOC_MAN,
	GNUSTEP_NETWORK_DOC_INFO, GNUSTEP_LOCAL_DOC_MAN,
	GNUSTEP_LOCAL_DOC_INFO): Similar changes
	* FilesystemLayouts/fhs: Similar changes.
	
2008-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* target.make (SHARED_LIB_LINK_CMD, OBJ_MERGE_CMD): Updated for
	hpux (Patch by Rashmi <rashhegde@gmail.com> with modifications).

2008-01-15  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep-strict-v2.conf.in: New file which is a "strict
	gnustep-make v2" version of GNUstep.conf.in, with all the obsolete
	v1 variables removed.
	* configure.ac: Create GNUstep-strict-v2.conf file from
	GNUstep-strict-v2.conf.in.
	* configure: Regenerated.
	* GNUmakefile.in: Install GNUstep-strict-v2.conf as configuration
	file instead of GNUstep.conf when running in strict v2 mode.

	* GNUmakefile.in (all): Updated message, mentioning that you need
	to type 'make install' to install.
	(install): Updated message for installing manpages mentioning that
	we are compressing them on the fly.

2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in: Disable built-in suffixes and vague % rules for
	performance.
	* GNUstep.csh.in: Fixed typo in line that sources
	GNUSTEP_USER_CONFIG_FILE.
	
2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: New option --enable-strict-v2-mode that can be
	used when debugging/upgrading makefiles and software to test that
	they do not rely on obsolete/deprecated gnustep-make v1 variables.
	Define GNUSTEP_MAKE_STRICT_V2_MODE when the option is set.
	* configure: Regenerated.
	* config-noarch.make.in, GNUstep.sh.in,
	GNUstep.csh.in (GNUSTEP_MAKE_STRICT_V2_MODE): New variable, set
	from the --enable-strict-v2-mode config option.
	* GNUmakefile.in: If special_prefix is used and we are in strict
	v2 mode, abort with an error.
	* GNUstep.sh.in: When in strict v2 mode, never export
	GNUSTEP_*_ROOT, GNUSTEP_FLATTENED and GNUSTEP_PATHLIST; instead
	actively unset them if they are set in the environment.  Export
	GNUSTEP_IS_FLATTENED, LIBRARY_COMBO and GNUSTEP_HOST_* only if
	GNUSTEP_SH_EXPORT_ALL_VARIABLES is set.
	* GNUstep.csh.in: When in strict v2 mode, never setenv any of the
	GNUSTEP_*_ROOT, GNUSTEP_FLATTENED, GNUSTEP_PATHLIST,
	GNUSTEP_IS_FLATTENED, LIBRARY_COMBO and GNUSTEP_HOST_* variables;
	unset them if they are set in the environment.

	* config-noarch.make.in: When in strict v2 mode, do not define
	GNUSTEP_*_ROOT, GNUSTEP_USER_DIR and GNUSTEP_FLATTENED.	
	* GNUstep-reset.sh: Unset GNUSTEP_MAKE_STRICT_V2_MODE for safety.
	* common.make: In strict v2 mode do not define
	GNUSTEP_DOCUMENTATION, GNUSTEP_DOCUMENTATION_MAN and
	GNUSTEP_DOCUMENTATION_INFO.  In strict v2 mode, abort with an
	error if INSTALL_ROOT_DIR or GNUSTEP_INSTALLATION_DIR is set.
	Print an info line if strict v2 mode is turned on.

2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.sh.in: Dropped sourcing user
	GNUSTEP_USER_ROOT/GNUstep.sh at the end of the script.  The
	location of the file is no longer meaningfully defined in
	gnustep-make v2 so we'd need a new mechanism to define a new
	location, but the feature looks generally obsolete/pointless in
	gnustep-make v2 so we'd rather drop it.
	If you have a custom shell script you want to source at start up,
	you can simply add it in your shell init script before or after
	sourcing GNUstep.sh.  If you are trying to customize the
	filesystem or environment, you need to customize your layout or
	config files so that your changes are detected by gnustep-base as
	well as gnustep-make.
	* GNUstep.csh.in: Same change.
	* Documentation/releasenotes.texi: Document the change.
	* RELEASENOTES: Regenerated.
	
2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.csh.in: At the end of the script unset
	GNUSTEP_SYSTEM_WEB_APPS, GNUSTEP_LOCAL_WEB_APPS,
	GNUSTEP_NETWORK_WEB_APPS, GNUSTEP_USER_WEB_APPS.

2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.sh.in (GNUSTEP_KEEP_CONFIG_FILE,
	GNUSTEP_KEEP_USER_CONFIG_FILE): New variables used to remember if
	GNUSTEP_CONFIG_FILE and GNUSTEP_USER_CONFIG_FILE were already set
	in the environment by the user or if we set them in the script;
	use them to decide if we need to keep them at the end of the
	script, or unset them.
	(GNUSTEP_USER_DEFAULTS_DIR): Unset or export this variable as
	required.
	* GNUstep.csh.in: Similar changes.
	
2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Clearly explain in the help that --with-user-dir
	is an obsolete option in gnustep-make v2.  Print a warning if it
	used, and otherwise ignore it.
	* configure: Regenerated.
	* gnustep-config.in: Updated help removing mention of
	GNUSTEP_USER_DIR.
	* GNUstep.sh.in: Unset GNUSTEP_USER_DIR after using it.
	* GNUstep.csh.in: Same change.
	
2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.sh.in: Unset GNUSTEP_SYSTEM_USERS_DIR,
	GNUSTEP_LOCAL_USERS_DIR, GNUSTEP_NETWORK_USERS_DIR at the end, or
	export them if GNUSTEP_SH_EXPORT_ALL_VARIABLES if set.
	* GNUstep.csh.in: Unset the same variables at the end.

2008-01-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* filesystem.sh.in: Fixed typo which was causing
	GNUSTEP_USER_DIR_WEB_APPS not to be removed from the environment.

2008-01-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	* relative_path.sh: Added optional third parameter to specify
	whether 'strict' or 'short' output is required.  Default to
	'strict' so that the configuration system works.
	* Instance/application.make: Use 'short' option to
	relative_path.sh to get more compact paths.
	* Instance/framework.make: Same change.
	
2008-01-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config.make.in (LN_S_RECURSIVE): New variable.
	* Instance/application.make: Use it when symlinking a directory.
	* Instance/framework.make: Same changes.
	
2008-01-08  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.4 (on stable branch).

2008-01-03  Richard Frith-Macdonald <rfm@gnu.org>

	* relative_path.sh: Revert previous change as it broke the use of
	relative paths within the configuration system ... critical for
	ms-windows systems where relative paths are used by default!

2008-01-01  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.3 (on stable branch).

2007-12-30  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.Darwin: Update for compiling with
	Apple gcc.

2007-12-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/debugapp.1: Minor updates.
	* Documentation/gnustep-config.1: Same.
	* Documentation/openapp.1: Same.
	* Documentation/opentool.1: Same.
	* Documentation/library-combo.7: Same.
	
2007-12-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Install the new debugapp.1,
	gnustep-config.1, opentool.1 and library-combo.7 manpages.
	(uninstall): Uninstall them.
	(uninstall): Remove mandir, mandir/man1, mandir/man7, tooldir and
	GNUSTEP_CONFIG_FILE_DIR if empty.
	
2007-12-26  Dennis Leeuw  <dleeuw@made-it.com>

	* Documentation/debugapp.1: New file.
	* Documentation/gnustep-config.1: New file.
	* Documentation/opentool.1: New file.
	* Documentation/library-combo.7: New file.
	* Documentation/openapp.1: Rewritten.
	* Documentation/GNUstep.7: Rewritten.

2007-12-20  Adam Fedor  <fedor@gnu.org>

	* Master/nsis.make: Generalize to install in other than Applications.
	* Master/rules.make: Remove nsis include for now
	* nsi-app.template, Documentation/make.texi: updates.

2007-12-20  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Emit a warning if GNUSTEP_MAKEFILES contains a
	space.
	* configure: Regenerated.
	
2007-12-20  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac (GNUSTEP_PREFIX): Removed double-quoting around
	`...` expression on the right-hand side of assignment.  It is
	unnecessary and seems to be adding additional unwanted quotes on
	netbsd.
	* openapp.in: Similar changes.
	* opentool.in: Similar changes.
	* GNUstep.sh.in: Similar changes.
	* configure: Regenerated.

	* GNUmakefile.in: Quote most paths in shell expressions.
	* openapp.in: Similar changes.

2007-12-17  Adam Fedor  <fedor@gnu.org>

	* nsi-app.template, Master/nsis.make, Documenation/make.texi, 
	GNUmakefile.in:	Add automatic NSIS Windows installer script generator.

2007-12-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (uninstall): Remove filesystem.make 
	and GNUstep.conf.

2007-12-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Always install the manpages included
	in the Documentation directory; they don't need building.	
	(uninstall): Uninstall them.
	* Documentation/GNUmakefile (after-install): Do not install
	the manpages.
	(after-uninstall): Do not uninstall them.
	
2007-12-15  Nicola Pero  <nicola.pero@meta-innovation.com>

	Rewritten config-precomp-test to work when the build directory is
	separate from the source directory.
	* config-precomp-test/run-test.sh: Updated to allow a separate
	build directory; more pervasive quoting of paths and filenames.
	* config-precomp-test/config-precomp-test.h: Renamed from
	gs_precomp_test.h.
	* config-precomp-test/config-precomp-test.m: Renamed from
	gs_precomp_test.m.  Updated include for header filename change.
	* GNUmakefile.in (distclean): Updated deleting config-precomp-test
	files.
	* configure.ac: Updated the way config-precomp-test/run-test.sh is
	executed.
	* configure: Regenerated.
	
2007-12-15  Nicola Pero  <nicola.pero@meta-innovation.com>
	
	* GNUmakefile.in (distclean): Remove
	config-precomp-test/gs_precomp_test.h.gch and
	config-precomp-test/a.out.

2007-12-12  Hubert Chathi  <uhoreg@debian.org>

	* relative_path.sh: Fixed check for start of string so that we
	output '../xxx' instead of the clumsy './../xxx'.

2007-12-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Fixed installation when a separate
	source dir is used. (Patch by Hubert Chathi <uhoreg@debian.org>
	with modifications).
	
2007-11-08  Adam Fedor  <fedor@gnu.org>

	* Mark for Version 2.0.2 (on stable branch)

2007-10-31  David Ayers  <ayers@fsfe.org>

	* rules.make: Implement ADDITIONAL_NATIVE_LIB_DIRS.
	* Documentation/make.texi: Document ADDITIONAL_NATIVE_LIB_DIRS.
	
2007-10-30  Adam Fedor  <fedor@gnu.org>

	* Update license to GPL 3
	* gnustep-make.spec.in: Change Copyright to License.

2007-09-13 Fred Kiefer <FredKiefer@gmx.de>

	* openapp.in: Add linebreak at end of file.

2007-07-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* {Everything}: Fixed copyright notices to tell the user they can
	read the full text of the GNU GPL in the COPYING file.  The old
	notices were telling users to read the COPYING.LIB file which does
	not exist.

2007-06-15  Adam Fedor  <fedor@gnu.org>

	* Documentation/userfaq.texi: Update.

2007-06-13  Chris Farber <chris@chrisfarber.net>

	* Documentation/README.Darwin: Minor updates and corrections.

2007-05-23  Adam Fedor  <fedor@gnu.org>

	* Mark for Version 2.0.1 (on stable branch)

2007-05-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: When checking for the custom ObjC runtime library,
	check in Network and Local as well as System.
	* configure: Regenerated.
	
2007-05-11  Richard Frith-Macdonald <rfm@gnu.org>

	* common.make: correct the os/architecture specific header
	directory for non-flattened compilation.  Needs to be a subdirectory
	of the library-combo directory and wasn't.

2007-05-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/fhs-system: Added missing xxx_WEB_APPS
	variables (Reported by Stefan Bidigaray <stefanbidi@gmail.com>).
	Fixed xxx_APPS variables to use 'Applications' and not 'Apps'.
	
2007-05-01  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/gnustep (GNUSTEP_USER_DIR_DOC,
	GNUSTEP_USER_DIR_DOC_INFO, GNUSTEP_USER_DIR_DOC_MAN): Added
	the Library part of the path which was missing.
	* FilesystemLayouts/gnustep-with-network: Same changes.
	* FilesystemLayouts/fhs-system: Same changes.
	* FilesystemLayouts/fhs: Same changes.
	* FilesystemLayouts/mac: Same changes.
	
2007-04-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed installing headers of a framework's subproject when the
	framework has the default version (Problem reported by David
	Wetzel <dave@turbocat.de>).
	* Master/rules.make (%.variables): Fixed default framework version used
	to copy headers from subprojects to frameworks.
	(%.subprojects): Same change.

	* Documentation/releasenotes.texi: Fixed documentation on the new
	default framework resource version.
	* RELEASENOTES: Same change.
	
2007-04-13  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.0 (Updated)
	* Version: Revert reversion number
	* RELEASENOTES: Add to top dir

2007-04-12  Adam Fedor  <fedor@gnu.org>

	* Version: Bump version to 2.1.0

2007-04-12  Adam Fedor  <fedor@gnu.org>

	* Version 2.0.0

2007-04-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/news.texi: More updates.
	* Documentation/releasenotes.texi: Added release notes
	for gnustep-make version 2.
	
2007-04-12  David Ayers  <ayers@fsfe.org>

	* GNUstep-reset.sh (INFOPATH): Correct INFOPATH cleanup variable.
	
2007-04-11  Adam Fedor  <fedor@gnu.org>

	* Version: Bump version number to 2.0.0
	* Documentation/news.texi: Update
	* Documentation/releasenotes.texi: New file
	* Regenerate release files.

2007-04-10  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed help messages for debugapp to display 'debugapp' instead of
	'openapp' as program name.
	* openapp.in: Use $0 instead of openapp as program name in help
	messages.  In the help message mention that debugapp is equivalent
	to openapp --debug.
	* debugapp: Use source, not exec, to pass control to openapp while
	still preserving $0.  (openapp_debug_mode): Set this variable to
	turn on debug mode inside openapp.

	* Documentation/DESIGN: Mention that this is mostly a historical
	document now.
	
2007-04-10  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/framework.make (xxx.framework/GNUSTEP_TARGET_LDIR/xxx):
	Fixed typo removing symlinks before symlinking - it was causing
	compilation to fail in certain conditions (Problem reported by
	David Ayers <ayers@fsfe.org>).

2007-03-30  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/mac: Updated (Suggestions by Tim McIntosh
	<tmcintos@avalon.net>, plus moved the Network domain before the
	Local one).

2007-03-21  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/README.MinGW: Warn people not to install libxslt
	(Reported by Xavier Glattard <xavier.glattard@online.fr> and
	Christopher Armstrong <carmstrong@fastmail.com.au>).

2007-03-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/gnustep-howto.texi: Updated.  In particular:
	removed all references to obsolete GNUSTEP_SYSTEM_ROOT, mention
	the existence of various filesystem layouts and of the new setup
	options, and updated explanations of how to checkout the source
	code.
	* Documentation/machines.texi (RedHat/Intel): Renamed to
	'RedHat/i386'; marked as 'Supported' and added some doc.
	(CentOS/i386): New section.
	(FedoraCore/i386): New section.

2007-03-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/make.texi: Changed the basic example to use
	tool.make instead of objc.make.  Updated some comments.
	(Directory Paths): Updated documentation; in particular,
	documented GNUSTEP_ADMIN_APPS, GNUSTEP_WEB_APPS,
	GNUSTEP_ADMIN_TOOLS, GNUSTEP_LIBRARY, GNUSTEP_DOC,
	GNUSTEP_DOC_MAN, GNUSTEP_DOC_INFO.

2007-03-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Added -shared-libgcc when linking with ObjC
	exceptions (Suggestion from Andrew Pinski).
	* common.make (INTERNAL_LDFLAGS): Same change.
	* configure: Regenerated.
	
2007-03-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Implemented rebuilding Info-gnustep.plist when xxxInfo.plist is
	changed (and palette.table from xxxpalette.table for palettes).
	For applications, automated detecting xxxInfo.cplist and
	preprocessing it, so that xxx_PREPROCESS_INFO_PLIST in
	GNUmakefiles is now obsolete and can be removed.
	* Instance/application.make (GNUSTEP_PLIST_DEPEND): Automatically
	add xxxInfo.plist if the file is there; if not, automatically add
	xxxInfo.cplist if there.  Removed xxx_PREPROCESS_INFO_PLIST.
	* Instance/bundle.make: Have Info-gnustep.plist automatically
	depend on xxxInfo.plist if it exists.
	* Instance/framework.make: Same change.
	* Instance/gswapp.make: Same change.
	* Instance/service.make: Same change.
	* Instance/palette.make Have Info-gnustep.plist automatically
	depend on xxxInfo.plist if it exists, and palette.table
	automatically depend on xxxpalette.table if it exists.

	* Instance/framework.make (FRAMEWORK_INFO_PLIST_FILE): New
	variable fixing the fact that frameworks on gnu-gnu-gnu were
	creating Info.plist instead of Info-gnustep.plist.
	* Instance/service.make: Fixed rules to only cat xxxInfo.plist if
	it exists.  Print a warning if it doesn't, as services need to
	have one to be useful.

	* Version: bumped to 1.98.2.
	
2007-03-16  Xavier Glattard <xavier.glattard@online.fr>

	* configure.ac (CYGWIN): Set to no on MinGW.
	* configure: Regenerated.

2007-03-15  Chris Vetter <chris.vetter@gmail.com>

	* mac: New filesystem layout (comments at the top of the file
	edited by Nicola).
	
2007-03-15  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Added -fexceptions as well when trying the
	ObjC exception test program.  Restore CFLAGS and LIBS after
	the ObjC exception test.
	* configure: Regenerated.
	* common.make (OBJCFLAGS, INTERNAL_LDFLAGS): Add -fexceptions when
	ObjC exceptions are enabled.

2007-03-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/framework.make (CURRENT_VERSION_NAME): If no
	CURRENT_VERSION_NAME is set, use INTERFACE_VERSION for it (instead
	of 'A'), so that by default the shared object and the resources
	follow a similar versioning (can still be configured, as before,
	to have separated versioning).
	* Master/rules.make (%.variables, %.subprojects): Corresponding
	update.

2007-03-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/framework.make
	(GNUSTEP_BUILD_DIR/GNUSTEP_INSTANCE.framework/GNUSTEP_TARGET_LDIR):
	New rule to create the directory when non-flattened.
	(GNUSTEP_BUILD_DIR/GNUSTEP_INSTANCE.framework/GNUSTEP_TARGET_LDIR/GNUSTEP_INSTANCE):
	Depend on the new rule; use REL_PATH_SCRIPT to compute correct
	symlink when non-flattened.

2007-03-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/resource-set.make (RESOURCE_FILES_DIR): New variable.
	($(RESOURCE_FILES_INSTALL_DIR)): Added missing CHOWN.
	(LOCALIZED_RESOURCE_DIRS): New variable; implemented rules to
	support it.
	(internal-resource_set-install_): Create the
	LOCALIZED_RESOURCE_DIRS if needed.  Use 'cp -rf' instead of
	INSTALL_DATA to install RESOURCE_FILES and
	LOCALIZED_RESOURCE_FILES so that directories can be used as well.
	Do a final CHOWN to fixup ownership of all the installed stuff.
	($(RESOURCE_FILES_INSTALL_DIR)/%): Do a CHOWN.

2007-03-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/library.make: Changed resource installation directory
	structure to be very similar to the one used for frameworks.
	Might be helpful in the future.

2007-03-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/Shared/bundle.make: Internal shared bundle install
	variables have been reorganized to support library resources with
	versioning.
	(shared-instance-bundle-install): Rewritten for changes.
	(shared-instance-bundle-copy_into_dir): Same change.
	(shared-instance-bundle-uninstall): Same change.
	* Instance/application.make: Updated GNUSTEP_SHARED_BUNDLE_xxx
	variables to work with the new stuff.
	* Instance/bundle.make: Same change.
	* Instance/gswapp.make: Same change.
	* Instance/palette.make: Same change.
	* Instance/service.make: Same change.
	* Instance/tool.make: Same change.
	* Instance/library.make: Implemented xxx_HAS_RESOURCE_BUNDLE for
	libraries -- including versioned resources.
	
2007-03-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	Implemented versioning of Microsoft Windows DLLs.  Every DLL now
	has got the interface version in their name, and applications are
	linked to a DLL including the interface version.
	* Instance/library.make (INTERFACE_VERSION): Compute even if
	building DLLs, using the same rules used on other platforms.
	(LIB_LINK_DLL_FILE): Include the INTERFACE_VERSION in the name.
	* Instance/framework.make (LIB_LINK_DLL_FILE): Same change.	

2007-03-08  Nicola Pero  <nicola.pero@meta-innovation.com>

	You can now start up applications on the command line by just
	using their name.  Eg, 'Gorm'.  To support this, we install a
	wrapper in the tools directory (which is in your PATH).
	* app-wrapper.template: New file.
	* GNUmakefile.in (install): Install app-wrapper.template.
	(uninstall): Uninstall it.
	* Instance/application.make ($(GNUSTEP_TOOLS),
	internal-install-app-wrapper, internal-uninstall-app-wrapper): New
	rules that install/uninstall app-wrapper.template into
	GNUSTEP_TOOLS with the name of the application.  If symlinks are
	available, don't install a wrapper script but symlink directly the
	binary for maximum speed ('Gorm' will be much faster than 'openapp
	Gorm' in this situation).
	(internal-app-install_): Depend on internal-install-app-wrapper.
	(internal-app-uninstall_): Depend on
	internal-uninstall-app-wrapper.

	* Instance/application.make ($(APP_DIR)/$(GNUSTEP_INSTANCE)):
	Added missing CHOWN command.
	
2007-03-08  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.csh.in: Fixed typo when setting up PATH (Reported by
	Wolfgang Lux <wolfgang.lux@gmail.com>).

2007-03-08  Sergii Stoian <stoyan255@gmail.com>

	* FilesystemLayouts/next: Change GNUSTEP_*_LIBRARIES to
	/GNULibrary instead of /GNUDeveloper.  Change
	GNUSTEP_USER_CONFIG_FILE to Library/Preferences/GNUstep.conf.

2007-03-08  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/filesystem.texi: Update/rewrite complete.

2007-03-06  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/gnustep (GNUSTEP_SYSTEM_USERS_DIR,
	GNUSTEP_NETWORK_USERS_DIR, GNUSTEP_LOCAL_USER_DIRS): New
	variables.
	* FilesystemLayouts/gnustep-with-network: Same changes.
	* FilesystemLayouts/fhs: Same changes.
	* FilesystemLayouts/fhs-system: Same changes.
	* FilesystemLayouts/next: Same changes.
	* GNUstep.conf.in: Same changes.
	* filesystem.make.in: Same changes.	
	* filesystem.sh.in: Same changes.
	* filesystem.csh.in: Same changes.
	* GNUstep-reset.sh: Same changes.
	* configure.ac: Same changes.
	* configure: Regenerated.

	* FilesystemLayouts/gnustep: Moved network domain before local
	domain.

	* Version: bumped to 1.98.1.
	
2007-03-06  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/framework.make: When version support is enabled, build
	symlinks from top-level xxx.framework/TARGET_LDIR/xxx and
	xxx.framework/TARGET_LDIR/libxxx.so to the Current object files so
	that uninstalled frameworks can be linked by using
	-Lpath_to_framework/xxx.framework/$TARGET_LDIR.
	* Instance/framework.make: Use standard '=' assignment for
	variables.
	* Instance/framework.make: On Apple, if non-flattened, put the
	top-level symlinks into TARGET_LDIR.
	
2007-03-05  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Print the complete filesystem layout
	configuration.  This helps in spotting bugs and incorrect
	configurations.
	* configure: Regenerated.
	
2007-03-05  Nicola Pero  <nicola.pero@meta-innovation.com>

	Added GNUSTEP_WEB_APPS variable that can be used by GSWeb and SOPE
	to decide where to install their web applications.
	* common.make (GNUSTEP_WEB_APPS): New variable.
	* Instance/gswapp.make: Install into GNUSTEP_WEB_APPS by default.
	Define GNUSTEP_GSWAPPS in terms of GNUSTEP_WEB_APPS for backwards
	compatibility.
	
	* configure.ac (GNUSTEP_SYSTEM_WEB_APPS, GNUSTEP_LOCAL_WEB_APPS,
	GNUSTEP_NETWORK_WEB_APPS, GNUSTEP_USER_DIR_WEB_APPS): New
	variables; read them from filesystem layout files, output them.
	* configure: Regenerated.
	
	* FilesystemLayouts/gnustep (GNUSTEP_SYSTEM_WEB_APPS,
	GNUSTEP_LOCAL_WEB_APPS, GNUSTEP_NETWORK_WEB_APPS,
	GNUSTEP_USER_DIR_WEB_APPS): New variables.
	* FilesystemLayouts/gnustep-with-network: Same change.
	* FilesystemLayouts/fhs: Same change.
	* FilesystemLayouts/next: Same change.	
	* filesystem.make.in: Same change.
	* filesystem.sh.in: Same change.
	* filesystem.csh.in: Same change.
	* GNUstep.conf.in: Same change.
	* GNUstep-reset.sh: Same change.
	* GNUstep.sh.in: Same change.

2007-03-05  Nicola Pero  <nicola.pero@meta-innovation.com>
	
	* FilesystemLayouts/fhs (GNUSTEP_SYSTEM_APPS, GNUSTEP_LOCAL_APPS,
	GNUSTEP_NETWORK_APPS, GNUSTEP_USER_DIR_APPS): Use 'Applications',
	not 'Apps', for the filesystem location.

	* FilesystemLayouts/gnustep-with-network: Moved Network variables
	before Local ones.
	* filesystem.make.in: Same change.
	* filesystem.sh.in: Same change.
	* filesystem.csh.in: Same change.
	* GNUstep-reset.sh: Same change.
	
	* filesystem.make.in (GNUSTEP_USER_ADMIN_APPS,
	GNUSTEP_USER_ADMIN_TOOLS): Set these variables.

	* filesystem.make.in: Fixed typo in definition of
	GNUSTEP_SYSTEM_ADMIN_APPS.
	
2007-03-05  Adam Fedor  <fedor@gnu.org>

	* configure.ac, config.make.in: Add check for latex2html
	* Instance/documentation/latex.html: Use it.

2007-03-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	* FilesystemLayouts/mingw: File removed.
	* FilesystemLayouts/windows: File removed.
	* FilesystemLayouts/README: Do not mention the removed layouts.
	* configure.ac: Do not use 'windows' filesystem layout on mingw32;
	the default filesystem layout is fine.
	* configure: Regenerated.
	* Documentation/README.MinGW: Updated.
	* Instance/application.make (ALL_LDFLAGS): Add -mwindows when
	building applications on MinGW, to get rid of the ugly terminal
	window when you start the apps directly by double-clicking on the
	.exe file in the Windows file manager.
	* Documentation/filesystem.texi: Updated the section on Windows.
	
2007-02-29  Richard Frith-Macdonald <rfm@gnu.org>

	* relative_path.sh: Fix for the case where the two arguments are
	identical paths.

2007-02-29  Richard Frith-Macdonald <rfm@gnu.org>

	* common.make: Fixup -I (when in non-flattened mode) to use the
	generic library combo subdirectory as well as the full machine/os
	specific version.

2007-02-28  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: On MinGW, install the config file in
	/etc/GNUstep/GNUstep.conf.
	* configure: Regenerated.
	* FilesystemLayouts/mingw: New layout.
	* Documentation/README.MinGW: Updated, including instructions to
	prepare standalone binary applications that can be shipped to
	end-users (experimental).
	
2007-02-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/filesystem.texi: Updated the first half of the
	document for relocatable filesystem layouts.  Second half still
	to do.
	* FilesystemLayouts/gnustep-with-network: New layout.
	* FilesystemLayouts/README: Fixed name of gnustep filesystem
	layout.
	
2007-02-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Updated help for the change of variable names
	from GNUSTEP_SYSTEM_DOCUMENTATION to GNUSTEP_SYSTEM_DOC.

2007-02-26  Graham Lee   <leeg@thaesofereode.info>

	* gnustep-config.in: Bugfix to a test which stopped '--help' from
	working.

2007-02-26  Nicola Pero  <nicola.pero@meta-innovation.com>

	tcsh 6.12 has a 30 char limit on variable names, so
	GNUSTEP_SYSTEM_DOCUMENTATION_MAN has been renamed to
	GNUSTEP_SYSTEM_DOC_MAN (and similar consistent changes to all
	variables everywhere).
	* filesystem.csh.in: Use GNUSTEP_SYSTEM_DOC instead of
	GNUSTEP_SYSTEM_DOCUMENTATION, GNUSTEP_SYSTEM_DOC_MAN instead of
	GNUSTEP_SYSTEM_DOCUMENTATION_MAN, GNUSTEP_SYSTEM_DOC_INFO instead
	of GNUSTEP_SYSTEM_DOCUMENTATION_INFO (and similar changes to all
	other DOCUMENTATION variables).
	* filesystem.sh.in: Same change.
	* configure.ac: Same change.
	* FilesystemLayouts/fhs: Same change.
	* FilesystemLayouts/fhs-system: Same change.
	* FilesystemLayouts/gnustep: Same change.
	* FilesystemLayouts/windows: Same change.
	* FilesystemLayouts/next: Same change.
	* GNUstep.csh.in: Same change.
	* Instance/documentation.make: Same change.
	* Instance/Documentation/javadoc.make: Same change.
	* Instance/Documentation/autogsdoc.make: Same change.
	* Instance/Documentation/install_files.make: Same change.
	* Instance/Documentation/texi.make: Same change.
	* Instance/Documentation/latex.make: Same change.
	* Instance/Documentation/gsdoc.make: Same change.
	* GNUstep-reset.sh: Same change.
	* GNUstep.sh.in: Same change.
	* filesystem.make.in: Same change.
	* Documentation/GNUmakefile: Same change.
	* GNUstep.conf.in: Same change.
	* common.make: Same change.
	
	* common.make: For backwards compatibility in user GNUmakefiles
	define GNUSTEP_DOCUMENTATION, GNUSTEP_DOCUMENTATION_MAN and
	GNUSTEP_DOCUMENTATION_INFO to be the same as GNUSTEP_DOC,
	GNUSTEP_DOC_MAN and GNUSTEP_DOC_INFO.
	
	* configure: Regenerated.

2007-02-20  Nicola Pero  <nicola.pero@meta-innovation.com>

	* create_domain_dir_tree.sh: File removed.
	* Documentation/make.texi: File updated.
	
2007-02-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Check that we are given a valid option and
	print an error message if not.  Extended --help.  Use
	--variable=xxx syntax to print variables to make the syntax more
	similar to pkg-config's one.  Redirect stderr to /dev/null when
	running make.  Only print the variable value if not empty.

2007-02-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: By default, do not import an existing
	configuration file.  In most cases, this is now an annoyance
	rather than a convenience as it overrides the --prefix=xxx and
	--with-layout=yyy options.
	* configure: Regenerated.

2007-02-19  David Ayers  <ayers@fsfe.org>

	* GNUmakefile.in (uninstall:): Remove print_unique_pathlist.sh,
	filesystem.sh, filesystem.csh and gnustep-config.  Remove
	GNUSTEP_TARGET_LDIR.  Reorder removed directories according
	to reverse order of installation.  Only remove existing directories.
	Remove obsolete comment.

	* common.make (TRANSFORM_PATHS_SCRIPT): Remove obsolete variable.
	
2007-02-19  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/install.texi: Rewritten large parts to describe
	the new installation and configuration process.
	* INSTALL: Regenerated.
	
2007-02-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config-noarch.make.in: Removed the deprecation warnings added
	earlier today, because in some situations they seem to be
	triggered spuriously (Reported by Fred Kiefer).

2007-02-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* rules.make (.PHONY): Added declaration of new
	print-gnustep-make-* targets as PHONY.

2007-02-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* empty.make: Added file that was missing in past commit.

2007-02-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	Updated rpm building code, and removed separate debug packages.
	* GNUmakefile.in (MAKE_FILES): Removed spec-debug-rules.template.
	* spec-debug-rules.template: File removed.
	* Master/rpm.make (internal-after-install): Use DESTDIR instead of
	INSTALL_ROOT_DIR.  Enhanced sed expression to only remove DESTDIR
	from the beginning of paths.
	($(PACKAGE_NAME)-debug.spec.in): Rule removed.
	($(SPEC_FILE)): Do not set %gs_root.  Set %gs_install_domain
	instead of %gs_install_dir.  Set %gs_makefiles.  Do not append
	'-debug' to name for no longer existing debug packages.  Do not
	set Prefix: or requires:.
	Removed special variable settings for debug packages.
	* spec-rules.template: Check GNUSTEP_MAKEFILES, not
	GNUSTEP_SYSTEM_ROOT.  Use %{gs_makefiles} to locate GNUstep.sh.
	When running configure, do not use --prefix.  Use
	GNUSTEP_INSTALLATION_DOMAIN and not GNUSTEP_INSTALLATION_DIR when
	installing.

2007-02-18  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config-noarch.make.in: Print a deprecation warning if any of the
	GNUSTEP_SYSTEM_ROOT, GNUSTEP_LOCAL_ROOT, GNUSTEP_NETWORK_ROOT,
	GNUSTEP_USER_ROOT variables is used.
	* config-noarch.make.in (GNUSTEP_FLATTENED): Print a deprecation
	warning if the variable GNUSTEP_FLATTENED is used.
	* common.make (INSTALL_ROOT_DIR): Print a deprecation warning if
	the variable INSTALL_ROOT_DIR is used.
	
2007-02-18  Graham J Lee <leeg@thaesofereode.info>

	* FilesystemLayouts/next: New file.

2007-02-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/tool.make (GNUSTEP_SHARED_BUNDLE_INSTALL_DIR): Install
	tool resources in GNUSTEP_LIBRARY/Tools/Resources.
	($(GNUSTEP_LIBRARY)/Tools): Build this directory instead of
	$(TOOL_INSTALL_DIR)/Resources.
	(internal-tool-install_): Depend on the new rule instead of the
	old one.
	
2007-02-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make: Added new flag quiet=yes that disables the
	gnustep-make version message.

	* configure.ac: Output GNUMAKE value.
	* configure: Regenerated.
	* empty.make: New file.
	* GNUmakefile.in: Install it.
	* rules.make (print-gnustep-make-objc-flags,
	print-gnustep-make-objc-libs,
	print-gnustep-make-base-libs,
	print-gnustep-make-gui-libs): New targets.
	* gnustep-config.in: New options --objc-flags, --objc-libs,
	--base-libs, --gui-libs that output the flags used for basic ObjC
	compilation and linking on the current platform.

2007-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Added GNUSTEP_ADMIN_APPS and GNUSTEP_ADMIN_TOOLS.
	* common.make: Added GNUSTEP_ADMIN_APPS and GNUSTEP_ADMIN_TOOLS.
	* filesystem.sh.in: Added GNUSTEP_*_ADMIN_APPS and
	GNUSTEP_*_ADMIN_TOOLS.
	* filesystem.csh.in: Same changes.
	* filesystem.make.in: Same changes.
	* GNUstep.config.in: Same changes.
	* configure.ac: Same changes.
	* configure: Regenerated.

	* create_domain_dir_tree.sh: Create the Applications/Admin and
	Tools/Admin/GNUSTEP_TARGET_LDIR directories.
	
	* GNUstep.sh.in: Add each GNUSTEP_*_ADMIN_TOOLS path to PATH, but
	only if we are administrators.  Unset/export GNUSTEP_*_ADMIN_APPS
	and GNUSTEP_*_ADMIN_TOOLS dirs at the end.
	* GNUstep.csh.in: Same changes.
	* GNUstep-reset.sh: Unset GNUSTEP_*_ADMIN_APPS and
	GNUSTEP_*_ADMIN_TOOLS variables.
	* openapp.in: Search for the application in the Admin Apps
	directories as well, but only if we are an Administrator.

	* FilesystemLayouts/gnustep: Added GNUSTEP_*_ADMIN_APPS and
	GNUSTEP_*_ADMIN_TOOLS.
	* FilesystemLayouts/fhs: Same changes.
	* FilesystemLayouts/fhs-system: Same changes.
	* FilesystemLayouts/windows: Same changes.
	
2007-02-16  Adam Fedor  <fedor@gnu.org>

	* Instance/Documentation/latex.make: Revert adding extension.

2007-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* filesystem.csh.in: Fixed typo (GNUSTEP_SYSTEM_ROOT instead of
	GNUSTEP_SYSTEM_APPS).
	* configure.ac: Updated comments avoiding references to
	GNUSTEP_SYSTEM_ROOT.
	* configure: Regenerated.

2007-02-16  Adam Fedor  <fedor@gnu.org>

	* Instance/Documentation/latex.make: Add correct extension to target.
	Filter out 'no' when getting LATEX2HMTL exec.
	* Instance/palette.make: Link with all libs even on darwin.
	* target.make (darwin): Use gnu runtime as test for gnu compilation.
	(Based on suggestions from Yves de Champlain).

2007-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Renamed --with-layout=linux option to --with-layout=fhs.
	* FilesystemLayouts/fhs: New file replacing
	FilesystemLayouts/linux.  Also, fixed all comments.
	* FilesystemLayouts/fhs-system: New file replacing
	FilesystemLayouts/linux-system.  Also, fixed all comments.
	* FilesystemLayouts/README: Corresponding updates.	
	* configure.ac: Updated to mention 'fhs' layout, not 'linux'.
	* configure: Regenerated.
	(Suggestion from Yavor Doganov <yavor@doganov.org>)
	
2007-02-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Completed implementation of customizable filesystem layouts
	(including FHS).  ./configure --with-layout=linux will give you
	the FHS layout (experimental).  Check the FilesystemLayouts
	directory to create your own layout or to check for more options.
	This is experimental, use it at your risk and make sure you do not
	mess up your system directories while testing. ;-)
	* configure.ac: Added --with-layout=xxx option.  Import
	appropriate layout configuration.  Rewritten management of prefix.
	Disable importing config file if an explicit layout is specified.
	Ignore --with-system-root, --with-local-root and
	--with-network-root but print a warning if they are used.  Updated
	user domain settings code.  Updated makefiles settings code.
	Removed hardcoded filesystem layout.  Added backwards
	compatibility output of GNUSTEP_*_ROOT.  Updated flattened checks
	to use the GNUSTEP_IS_FLATTENED variable.
	* configure: Regenerated.
	* FilesystemLayouts: New directory.
	* FilesystemLayouts/README: New file.
	* FilesystemLayouts/gnustep: New file.
	* FilesystemLayouts/linux: New file.
	* FilesystemLayouts/linux-system: New file.
	* FilesystemLayouts/windows: New file.
	* GNUmakefile.in: Do not define GNUSTEP_*_ROOT.  Updated tooldir
	definition.  Do not create system domain hierarchy; create the
	system tools directory instead.  Do not delete the makefiles
	directory after creating it.  Commented out installation of
	config.site file that needs reviewing.  Use override when defining
	GNUSTEP_* variables.
	* common.make: Updated warning when GNUSTEP_SYSTEM_TOOLS is not
	found in PATH.
	* gnustep-config.in: Fixed help message.
	* relative_path.sh: Fixed situation when the second
	argument is a subdirectory of the first one.
	* GNUstep.conf.in: Updated comments.  Moved NETWORK domain before
	LOCAL domain.
	* Version: bumped to 1.98.0.
	
2007-02-15  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_NETWORK_HEADERS,
	GNUSTEP_LOCAL_HEADERS, GNUSTEP_USER_HEADERS): Changed not to
	contain LIBRARY_COMBO for the non-flattened case.  This will allow
	you to use the same configuration file across multiple
	library-combos.  Updates to rest of the code for this change.
	* common.make (GNUSTEP_HEADERS): Updated to add LIBRARY_COMBO
	at this stage (if needed).
	* configure: Regenerated.

2007-02-15  Nicola Pero  <nicola.pero@meta-innovation.com>

	* executable.template.in (full_appname): Fixed typo.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* executable.template.in: Updated for new filesystem structure.
	Always source GNUstep.sh.  Removed code to iterate over
	Applications directories or PATH; removed code to do a separate
	computation of GNUSTEP_HOST_*.  Enhanced switching of library
	combos on the fly.  Other minor fixes.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep-reset.sh: Unset GNUSTEP_USER_DIR_* variables as well
	just for extra security.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-make.spec.in: Updated description and comments.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Redirect all error logging for the non-essential
	gcc and make tests to &5 (which goes into config.log).  If they
	go wrong, the user will see 'no' in the specific feature that is
	being tested, and can into config.log to check why they failed.
	* configure: Regenerated.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/java-tool.make: Store Java code in the standard
	GNUSTEP_JAVA location instead of a subdirectory of GNUSTEP_TOOLS.
	* java-executable.template: Corresponding update.  Simplify
	and update by sourcing GNUstep.sh.
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Extended help to list all the new 
	filesystem variables.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac (GNUSTEP_USER_DIR_LIBRARIES): Fixed definition.
	Use GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES rather
	than GNUSTEP_SYSTEM_ROOT/Library/Headers and
	GNUSTEP_SYSTEM_ROOT/Library/Libraries.
	* configure: Regenerated.

	* ld_lib_path.sh: Removed the optional argument.
	Updated to new filesystem support.
	* ld_lib_path.csh: Same changes.
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make (LD_LIB_PATH_SCRIPT): Unused variable removed.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Fixed installation of debugapp.  It
	was installed with wrong permissions in the wrong directory
	(Reported by Fred Kiefer <fredkiefer@gmx.de>).

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/resource-set.make (RESOURCE_FILES_INSTALL_DIR): Only use
	xxx_RESOURCE_FILES_INSTALL_DIR if xxx_INSTALL_DIR is not set.  In
	this way, GNUmakefiles that need to be backwards compatible can set
	both the old and the new variable, and work both with old and
	new gnustep-makes.
	* common.make: Emit a deprecation warning is
	GNUSTEP_INSTALLATION_DIR is used.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* filesystem.sh.in: Unset all GNUSTEP_USER_DIR_* variables
	after using them.
	* GNUmakefile.in: Install print_unique_pathlist.sh.
	* print_unique_pathlist.sh: New file.
	* GNUstep.sh.in: Updated for new filesystem support.
	* GNUstep.csh.in: Updated for new filesystem support.  Use
	unsetenv consistently for all the filesystem variables.
	* filesystem.csh.in: Use setenv/unsetenv for all variables for
	consistency with the config files.
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make: Moved top-level PATH sanity check at the end of the
	file.  In the check, use GNUSTEP_SYSTEM_TOOLS instead of
	GNUSTEP_SYSTEM_ROOT/Tools.  Avoid the check on Cygwin where paths
	need conversion.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Instance/framework.make ($(DUMMY_FRAMEWORK_FILE)): Return the
	real complete installation path into +frameworkPath; return nil
	into +frameworkEnv.  These methods are currently unused, but
	future versions of gnustep-base might read +frameworkPath to have
	a better chance of finding the framework on disk.
	* GNUstep.conf.in: Use a single '#' for comments, not two ('##').
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* target.make (TARGET_LIB_DIR): (MacOS-Server 1.0, OpenStep 4.x):
	Variable removed.  Use GNUSTEP_LIBRARIES instead to get the same
	effect.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Install GNUstep.sh, GNUstep.csh,
	filesystem.sh, filesystem.csh, ld_lib_path.sh, ld_lib_path.csh as
	non-executables as they are to be sourced, not executed
	(Suggestion from Richard).

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUstep.conf.in (GNUSTEP_MAKEFILES): New variable.
	* GNUstep.csh.in: By default, set GNUSTEP_MAKEFILES to the
	configure default if not set.
	* GNUstep.sh.in: Same change.
	* gnustep-config.in: Same change.
	
	* openapp.in: Updated to use new filesystem config.
	* opentool.in: Updated to use new filesystem config; also,
	remove unused check for empty GNUSTEP_MAKEFILES after
	GNUstep.sh has been sourced.
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (distclean): Remove GNUstep.conf.
	Do not remove GNUsteprc.
	(generated-files): Added GNUstep.conf.
	(GNUstep.conf): New rule to regenerate it.
	* GNUstep.conf.in: Added all the new filesystem options with
	explanations on what they mean.
	
2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>

	Warning: the software will be unstable for some time.  Don't
	upgrade from trunk if you need stability.
	* configure.ac: Set default values for GNUSTEP_SYSTEM_TOOLS,
	GNUSTEP_SYSTEM_APPS, GNUSTEP_SYSTEM_LIBRARY, etc. variables and
	export them.  Create filesystem.make, filesystem.sh and
	filesystem.csh.
	* configure: Regenerated.
	* filesystem.make: Moved into filesystem.make.in.
	* filesystem.make.in: All variables: get them from configure
	defaults if not set so that GNUSTEP_*_ROOT are never needed or
	referenced.  Made GNUSTEP_*_RESOURCES and GNUSTEP_*_JAVA fixed
	subdirs of GNUSTEP_*_LIBRARY.  For all directories in the user
	domain, prefix them with GNUSTEP_HOME if they seem relative.
	* filesystem.sh: Moved into filesystem.sh.in.
	* filesystem.sh.in: Same changes as filesystem.make.in.
	* filesystem.csh.in: New file
	* GNUmakefile.in (install): Install filesystem.csh
	(filesystem.make): Added rule to rebuild it.
	(filesystem.sh): Added rule to rebuild it.
	(filesystem.csh): Added rule to rebuild it.
	(distclean): Remove the filesystem.* files.
	(generated-files): Add filesystem.make, filesystem.sh,
	filesystem.csh.
	* GNUstep.sh.in: Do not unset or export GNUSTEP_*_RESOURCES and
	GNUSTEP_*_JAVA.
	* GNUstep.csh.in: Source filesystem.csh.in; at the end unset all
	variables set there.

2007-02-14  Nicola Pero  <nicola.pero@meta-innovation.com>,
	
	* GNUstep.csh.in: Fixed bug in setting GUILE_LOAD_PATH.

2007-02-13  Adam Fedor  <fedor@gnu.org>, 
	    Nicola Pero  <nicola.pero@meta-innovation.com>,

	* configure.ac: Check for gmake and gnumake, and use it instead of
	make if it is found.
	* configure: Regenerated.

2007-02-13  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Disable SHARED_SOLARIS on solaris2.[67]. Use
	redirect to /dev/null rather than grep -q (due to non-Posix grep
	on many OSs).
	* Documentation/machines.texi: Update
	* Documentation/README.Darwin: Update.

2007-02-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* filesystem.sh: New file.
	* GNUmakefile.in: Install the new file.
	* GNUstep.sh.in: Source the new file.  At the end, export all of
	the new filesystem variables if GNUSTEP_SH_EXPORT_ALL_VARIABLES is
	set, or unset them all in the normal situation.
	* gnustep-config.in: Use GNUSTEP_SH_EXPORT_ALL_VARIABLES to access
	the filesystem variables too.
	
2007-02-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* filesystem.make: Fixed standard subdirectories of Library to
	reduce the amount of config options to only the ones that will
	actually be used.

2007-02-13  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make: Rewritten code that builds the -I, -L and -F flags
	to use the new filesystem variables.

2007-02-13  Nicola Pero  <nicola.pero@meta-innovation.com>,
            Matt Rice  <ratmice@gmail.com>,

	* GNUmakefile.in (MAKE_FILES): Added filesystem.make.
	* filesystem.make: New file.
	* common.make: Include the new file.  Rewritten code that
	determines the installation directories.  Use the information from
	filesystem.make when required.

2007-02-13  Nicola Pero  <nicola.pero@meta-innovation.com>
	
	* Master/rules.make (internal-check-install-permissions): Only use
	this rule if GNUSTEP_INSTALLATION_DIR is set.
	* Instance/gswbundle.make (GSWBUNDLE_INSTALL_DIR): Set it by
	default to GNUSTEP_LIBRARIES, which is the same as
	GNUSTEP_INSTALLATION_DIR/Library/Libraries in the traditional
	filesystem but will work with the new filesystem too.
	
2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (GNUSTEP_FLATTENED): Obsolete variable
	removed.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Version: Set to 1.14.0 which really means 'unstable version
	after 1.13.0 but before the next stable version'.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-make-help: New file.
	* GNUmakefile.in (MAKE_FILES): Added gnustep-make-help.
	* rules.make (print-gnustep-make-help): New target
	that prints gnustep-make-help.
	* common.make: Mention the new target in the version message.
	
2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Added check for $(info ...) function in GNU make.
	* configure: Regenerated.
	* config.make.in: Added MAKE_WITH_INFO_FUNCTION variable.
	* common.make: If we have the info function, use it to print the
	version number on the top-level invocation.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>, 
            Matt Rice  <ratmice@gmail.com>

	This change in the API is needed for resource-set.make to work
	with the new filesystem layouts.
	* Instance/resource-set.make (xxx_INSTALL_DIR): New variable that
	should replace xxx_RESOURCE_FILES_INSTALL_DIR.  Recognize the new
	variable; emit a warning if the old variable is used (but still
	use it).  Install by default into
	GNUSTEP_RESOURCES/GNUSTEP_INSTANCE if nothing is set.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.in: Fixed help message.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* common.make: Export GNUSTEP_MAKEFILES so that if it
	is computed by the user GNUmakefile, the computation
	is done only once at top-level.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (distclean): Remove gnustep-config.
	(generated-files): Added gnustep-config.
	(gnustep-config): New rule to rebuild it when changed.

2007-02-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.sh.in: Removed.
	* gnustep-config.in: Added.
	* GNUmakefile.in: Install gnustep-config, not gnustep-config.sh.
	* configure.ac: Create gnustep-config, not gnustep-config.sh.
	* configure: Regenerated
	
2007-02-11  Nicola Pero  <nicola.pero@meta-innovation.com>

	* gnustep-config.sh.in (GNUSTEP_MAKEFILES): If we are asked for
	GNUSTEP_MAKEFILES, print it out and exit.

2007-02-11  Matt Rice <ratmice@gmail.com>

	* gnustep-config.sh.in: exit early for --help.

2007-02-11  Nicola Pero  <nicola.pero@meta-innovation.com>,
            Matt Rice  <ratmice@gmail.com>

	* gnustep-config.sh.in: New file.
	* configure.ac: Added gnustep-config.sh
	* configure: Regenerated.
	* GNUmakefile.in: Install gnustep-config.sh in system Tools, which
	is guaranteed to be in PATH.
	
2007-01-25  Nicola Pero  <nicola.pero@meta-innovation.com>

	* Documentation/GNUmakefile: Fixed 'regenerate' target when you
	invoke it without gnustep-make being installed.
	* Documentation/make.texi: Updated to talk about
	GNUSTEP_INSTALLATION_DOMAIN, not GNUSTEP_INSTALLATION_DIR.
	
2007-01-23  Matt Rice  <ratmice@gmail.com>
	
	* rules.make (ALL_CCFLAGS): Fix typo.

2007-01-22  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed precompiled headers when -I. is early in the compile command
	line.
	* rules.make (ALL_OBJCFLAGS): Added
	OBJC_PRECOMPILED_HEADERS_INCLUDE_FLAGS at the beginning.
	(ALL_CFLAGS, ALLCCFLAGS, ALL_OBJCCFLAGS): Similar changes.
	* Instance/rules.make: Add the -I commands to find the precompiled
	header to the new C_PRECOMPILED_HEADERS_INCLUDE_FLAGS,
	OBJC_PRECOMPILED_HEADERS_INCLUDE_FLAGS,
	CC_PRECOMPILED_HEADERS_INCLUDE_FLAGS,
	OBJCC_PRECOMPILED_HEADERS_INCLUDE_FLAGS variables instead of
	ADDITIONAL_INCLUDE_DIRS.

2007-01-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac (GS_WITH_PRECOMPILED_HEADERS): Set to 'no'
	when precompiled headers are not available.
	* rules.make: Compare GS_WITH_PRECOMPILED_HEADERS explicitly to
	'yes'.
	* Instance/rules.make: Same change.
	* configure: Regenerated.
	
2007-01-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* config-precomp-test: New directory
	* config-precomp-test/gs_precomp_test.h,
	config-precomp-test/gs_precomp_test.m,
	config-precomp-test/run-test.sh: New test for ObjC precompiled
	headers to properly detect if they work or not.
	* configure.ac: Run the new test to determine if ObjC precompiled
	headers work or not.
	* configure: Regenerated.
	* GNUmakefile.in (distclean): Remove config-precomp-test.log; also
	remove multiple files in a go for speed.

2007-01-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* rules.make ($(GNUSTEP_OBJ_DIR)/PrecompiledHeaders/C/): do not
	depend on GNUSTEP_OBJ_DIR; build that dir automatically if needed.
	Similar for the other similar rules.
	* Instance/rules.make (.PHONY): Added internal-precompile-headers.
	
2007-01-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	Implemented precompiled headers support.  To use them to speed up
	the compilation of your project, create a main header that you
	include at the top of each file in your project, then add it to
	xxx_OBJC_PRECOMPILED_HEADERS and it will automatically be
	precompiled on platforms that support it.
	* messages.make (ECHO_PRECOMPILING): New message.
	* rules.make: New rules to build precompiled headers directory and
	files.
	* Instance/rules.make (internal-$(GNUSTEP_TYPE)-all): depend on
	internal-precompile-headers
	(xxx_C_PRECOMPILED_HEADERS, xxx_OBJC_PRECOMPILED_HEADERS,
	xxx_CC_PRECOMPILED_HEADERS, xxx_OBJCC_PRECOMPILED_HEADERS): New
	variables.
	(internal-precompile-headers): New rule set to depend on
	precompiling the precompiled headers, if any.  Also, add the
	precompiled headers directory to ADDITIONAL_INCLUDE_DIRS if the
	compiler supports precompiled headers and they are being used.
	
2007-01-16  Nicola Pero  <nicola.pero@meta-innovation.com>

	* configure.ac: Separate out checking gcc version and the test for
	the Solaris -shared link flag; print out separate messages for the
	results of these tests to help debugging.  Determine the minor
	version as well as the major version of gcc.  Added new test for
	precompiled headers.
	* config.make.in: Added GCC_WITH_PRECOMPILED_HEADERS variable.
	* configure: Regenerated.
	
2007-01-14  Richard Frith-Macdonald <rfm@gnu.org>

	* Master/source-distribution.make: Add svn-tag-stable to make tag
	for stable release in standard format.

2007-01-09  Matt Rice <ratmice@gmail.com>

	* GNUstep.csh.in: Fixed typo in GUILE_LOAD_PATH.

2007-01-09  Matt Rice <ratmice@gmail.com>
	
	* GNUstep.sh.in: Rename variable/fix paste error.

2007-01-09  Nicola Pero <nicola.pero@meta-innovation.com>

	* GNUstep.sh.in: Update some internal names to make equivalent
	code in different sections more similar.  Added a ':' at the end
	of INFOPATH.
	* GNUstep.csh.in: Similar changes.
	* GNUstep-reset.sh: Swapped order of resets of some variables to
	conform to comments.
	
2007-01-09  Matt Rice <ratmice@gmail.com>

	* GNUstep.sh.in: Set INFOPATH so that info files created and
	installed by gnustep-make in xxx/Library/info can be found by info
	documentation readers.
	* GNUstep.csh.in: Same change.	
	* GNUstep-reset.sh: Reset INFOPATH.

2007-01-07  Matt Rice <ratmice@gmail.com>, 
            Nicola Pero <nicola.pero@meta-innovation.com>

	* Instance/ctool.make (internal-ctool-all_): Depend on
	OBJ_FILES_TO_LINK, and link OBJ_FILES_TO_LINK.  This makes sure
	that C++ files, Windres files, and any other object files normally
	supported can be used with ctools.

2006-12-28  Richard Frith-Macdonald <rfm@gnu.org>

	* Master/source-distribution.make: add 'svn-bugfix' target to make
	a bugfix release.

2006-12-05  Richard Frith-Macdonald <rfm@gnu.org>

	* GNUmakefile.in: Add target for snapshot.

2006-11-16  Richard Frith-Macdonald <rfm@gnu.org>

	* target.make: fix typo (extra bracket in conditional).

2006-11-15  Nicola Pero <nicola.pero@meta-innovation.com>

	* Documentation/install.texi: Updated by removing section about
	-Wno-import.
	* INSTALL: Regenerated.
	
2006-11-15  Nicola Pero <nicola.pero@meta-innovation.com>

	* common.make (INSTALL_ROOT_DIR): If DESTDIR is set, then
	set INSTALL_ROOT_DIR from it.
	* spec-rules.template: Use DESTDIR instead of INSTALL_ROOT_DIR.
	* spec-debug-rules.template: Same change.
	
2006-10-29  Richard Frith-Macdonald <rfm@gnu.org>

	* common.make: Disable warnings about #import as it is now recommended
	rather then deprecated!
	* INSTALL: Remove obsolete commments about #import

2006-10-25  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: Added test for Solaris -shared flag.
	* configure: Regenerated
	* config.make.in: Added SOLARIS_SHARED variable.
	* target.make: For Solaris replace -G with -shared in
	SHARED_LIB_LINK_CMD to fix bug on 64bit systems where library
	would contain 32bit dynamic library stubs for 'main' and other
	functions, causing runtime failure of all code linked with it.

2006-10-11  Nicola Pero <nicola.pero@meta-innovation.com>

	* Documentation/machines.texi (Debian/PowerPC): Fixed prev node
	link.

2006-10-11  Nicola Pero <nicola.pero@meta-innovation.com>

	* GNUmakefile.in (install): Fixed installation of debugapp when
	building in a different directory.

2006-10-11  Nicola Pero <nicola.pero@meta-innovation.com>

	* Documentation/GNUmakefile (GNUSTEP_INSTALLATION_DOMAIN): Use 
	GNUSTEP_INSTALLATION_DOMAIN, not GNUSTEP_INSTALLATION_DIR.

2006-10-10  Nicola Pero <nicola.pero@meta-innovation.com>

	To install software in a certain GNUstep domain, the recommended
	way is now as in 'GNUSTEP_INSTALLATION_DOMAIN = SYSTEM'.

	* common.make: Implemented new GNUSTEP_INSTALLATION_DOMAIN
	variable.
	* Master/rules.make (internal-check-install-permissions): Removed
	help message that was suggesting to use GNUSTEP_INSTALLATION_DIR.
	
2006-10-07  Nicola Pero <nicola.pero@meta-innovation.com>

	* common.make: Add DESTDIR only on the very topmost invocation.

2006-10-06  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/machines.texi: Mention that Debian/em64t works and
	is supported, and that Solaris 9 also works.

2006-10-06  Nicola Pero <nicola.pero@meta-innovation.com>

	Implemented DESTDIR as per GNU Coding Standards.
	* common.make (GNUSTEP_INSTALLATION_DIR): if a DESTDIR is defined,
	prefix GNUSTEP_INSTALLATION_DIR with it.

2006-10-03  Nicola Pero <nicola.pero@meta-innovation.com>
	
	Removed support for library_paths.openapp.  It was not available
	in any common setups, so almost nobody could use it anyway.

	* Instance/application.make ($(APP_FILE)): Do not create
	library_paths.openapp.
	* Instance/gswapp.make (GSWAPP_FILE): Same change.

	* executable.template.in: Removed library_paths.openapp code.

	* ld_lib_path.sh: Removed additional_library_paths and
	additional_framework_paths code.
	* ld_lib_path.csh: Same changes.

	* transform_paths.sh: File removed.
	* GNUmakefile.in (install): Do not install transform_paths.sh
	(uninstall): Do not uninstall it.
	
2006-10-03  Nicola Pero <nicola.pero@meta-innovation.com>

	Merged debugapp and openapp.  Now there is a single script,
	openapp, with a --debug option to use gdb.

	* openapp.in: Merged all the code from debugapp.in into it.  Added
	--debug, --library-combo=..., --gdb=... options.  Extended --find
	option.  Rewritten large parts of it.
	* debugapp.in: File removed.
	* debugapp: New backwards-compatibility file so you can still run
	'debugapp Gorm'; it wraps openapp, so 'debugapp Gorm' simply does
	'openapp --debug Gorm'.

	* configure.ac: Do not create debugapp.
	* configure: Regenerated.
	* GNUmakefile.in (distclean): Do not remove debugapp on distclean.
	(generated-files): Removed debugapp.
	(debugapp): Rule removed.
	
2006-10-02  Nicola Pero <nicola.pero@meta-innovation.com>

	* target.make (SHARED_LIB_LINK_CMD, all targets): Use an '&&'
	between the link command and the commands to create the symlinks
	so that an error during link will abort compilation rather than
	fail silently.

2006-10-02  Nicola Pero <nicola.pero@meta-innovation.com>

	All checks for GNUSTEP_FLATTENED should be updated to check the
	new variable GNUSTEP_IS_FLATTENED instead, and to compare it
	explicitly to 'yes' and 'no', and assume that '' means 'yes'.

	* configure.ac: New variable GNUSTEP_IS_FLATTENED that is 'yes'
	when flattened, and 'no' when not.
	* configure: Regenerated.

	* config-noarch.make.in: Added GNUSTEP_IS_FLATTENED.
	* GNUmakefile.in: Same change.
	* GNUstep-reset.sh: Same change.
	* GNUstep.csh.in: Same change.
	* GNUstep.sh.in: Same change.

	* config.site: Updated checks for GNUSTEP_FLATTENED to
	check GNUSTEP_IS_FLATTENED instead.
	* common.make: Same change.
	* debugapp.in: Same change.
	* GNUmakefile.in: Same change.
	* GNUstep.csh.in: Same change.
	* GNUstep.sh.in: Same change.
	* ld_lib_path.csh: Same change.
	* ld_lib_path.sh: Same change.
	* openapp.in: Same change.
	* opentool.in: Same change.
	* rules.make: Same change.
	
	* Master/application.make: Same change.
	* Master/gswapp.make: Same change.
	* Master/palette.make: Same change.
	* Master/service.make: Same change.
	* Master/test-application.make: Same change.
	* Instance/application.make: Same change.
	
2006-10-01  Adam Fedor  <fedor@gnu.org>

	* config.guess, config.sub: Update to latest version.

2006-09-28  Nicola Pero <nicola.pero@meta-innovation.com>

	* move_obsolete_paths.sh: File removed (this time for real!).

2006-09-28  Nicola Pero <nicola.pero@meta-innovation.com>

	'make install special_prefix=xxx' should be replaced by 'make
	install DESTDIR=xxx'.
	* GNUmakefile.in (DESTDIR): New variable that replaces
	special_prefix and complies with the GNU Coding Standards.
	(special_prefix): If a special_prefix is specified, use it
	but emit a warning that it is now deprecated.
	* gnustep-make.spec.in: Updated to use DESTDIR instead of
	special_prefix.
	
2006-09-25  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/source-distribution.make: Use TAR everywhere instead of
	hardcoded tar (Patch by BALATON Zoltan <balaton@eik.bme.hu>).

2006-09-20  Nicola Pero <nicola.pero@meta-innovation.com>

	By default compile everything with debug=yes.  To get the
	traditional behaviour, please use 'make debug=no'.
	* common.make (debug): Turn on debug by default.
	
2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/subproject.make (internal-distclean): Do nothing.
	(internal-clean): Remove 'Resources' directory on 'clean' too.
	* Master/tool.make (internal-distclean): Do nothing.
	(internal-clean): Removed 'Resources' directory on 'clean'.	

	* Instance/subproject.make (GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH):
	Added GNUSTEP_BUILD_DIR.
	* Instance/tool.make (GNUSTEP_SHARED_BUNDLE_RESOURCE_PATH): Added
	GNUSTEP_BUILD_DIR.

	* Master/subproject.make (.PHONY): Removed build-headers.
	
2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* Instance/framework.make (UPDATE_CURRENT_SYMLINK_RULE): Removed
	phone update-symlink-rule target that was being executed at every
	make, and replaced with a rule to build the symlink which is not
	executed if the symlink is there already.
	(.PHONY): Removed update-symlink-rule.

2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* Instance/framework.make: Removed warnings for
	CURRENT_VERSION_NAME and xxx_TOOLS that were removed 4 years ago.

2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/rules.make (INTERNAL_$${type}_NAME, TARGET): Variables
	removed; they were deprecated on Jan 2002.

2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* rules.make (GNUSTEP_CONFIG_FILE, GNUSTEP_USER_CONFIG_FILE):
	Added empty rules to prevent make wasting time trying to rebuild
	config files using implicit rules.

	* Master/rules.make (.PHONY): Added build-headers,
	before-build-headers, after-build-headers.

	* Instance/framework.make (.PHONY): Added declaration of 
	phony targets.
	
2006-09-19  Nicola Pero <nicola.pero@meta-innovation.com>

	* rules.make (config.make): Fixed syntax error in conditional that
	was causing the rule for config.make to be never read.
	Implemented an actual rule for it that prints an error and exits
	if the file can't be found.

2006-09-18  Nicola Pero <nicola.pero@meta-innovation.com>

	Separated out global config from platform-specific config.
	* GNUmakefile.in: Include config-noarch.make before config.make.
	(install): Install config-noarch.make.
	(uninstall): Uninstall config-noarch.make.
	(distclean): Remove config-noarch.make.
	(generated-files): Added config-noarch.make.
	(config.make): Do not depend on Version.
	(config-noarch.make): New rule to build config-noarch.make
	from config-noarch.make.in.
	* config-noarch.make.in: New file created from the bits of
	config.make.in that are global and don't depend on the platform.
	* config.make.in: Removed global bits.
	* configure.ac (AC_CONFIG_FILES): Added config-noarch.make.
	* configure: Regenerated.
	* common.make: Include config-noarch.make before names.make.

	* common.make: Fixed inclusion of names.make that should
	follow the definition of CONFIG_GUESS_SCRIPT etc.

	* common.make: Include library-combo.make before config.make
	else the library-combo directory can't be found.
	
	* common.make (GNUSTEP_MAKEFILES): Do not waste time trying to set
	if not set.  GNUSTEP_MAKEFILES must be set, else nothing would
	work.
	
2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/rpm.make (before-install) If filelist=yes, depend on
	GNUSTEP_OBJ_DIR.

	* Master/source-distribution.make (dist): Always use our 
	tar-exclude-list to avoid including CVS and .svn files in .tar.gz
	packages.

2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/rpm.make: Put the generated files (file-list, spec files)
	into GNUSTEP_OBJ_DIR.  Use the same name for both debug and
	non-debug spec files.  Depend on GNUSTEP_OBJ_DIR being created
	before the files.
	(internal-distclean): Rule removed.  The generated files are now
	in GNUSTEP_OBJ_DIR and so are automatically deleted on make clean.

	* Master/rpm.make (specfile): Set gs_file_list variable in the
	spec file.  Renamed FILE_LIST to GNUSTEP_FILE_LIST to protect it
	from collisions with user makefiles.
	* spec-rules.template: Replaced hardcoded file-list name with
	gs_file_list variable.
	* spec-debug-rules.template: Same change.
	
2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/clibrary.make (internal-clean): Do nothing if there are
	no PSWRAP_C_FILES or PSWRAP_H_FILES to remove.
	* Master/library.make (internal-clean): Same change.
	* Master/subproject.make (internal-clean): Same change.
	* Master/test-library.make (internal-clean): Same change.

	* Master/rules.make (internal-distclean): Do not remove 'core'.
	(PACKAGE_NAME): Use normal assignement.
	
2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* setlocaltz.sh: Obsolete file removed.

2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>
	
	* Master/application.make (internal-clean): Do not remove obj
	(already done in Master/rules.make).
	* Master/bundle.make (internal-clean): Same change.	
	* Master/clibrary.make (internal-clean): Same change.	
	* Master/ctool.make (internal-clean): Same change.
	* Master/gswapp.make (internal-clean): Same change.
	* Master/gswbundle.make (internal-clean): Same change.
	* Master/library.make (internal-clean): Same change.
	* Master/objc.make (internal-clean): Same change.
	* Master/palette.make (internal-clean): Same change.
	* Master/service.make (internal-clean): Same change.
	* Master/subproject.make (internal-clean): Same change.
	* Master/test-application.make (internal-clean): Same change.
	* Master/test-library.make (internal-clean): Same change.
	* Master/test-tool.make (internal-clean): Same change.
	* Master/tool.make (internal-clean): Same change.
	* Instance/framework.make (internal-framework-clean): Same change.
	
2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/application.make (internal-distclean): Do not remove obj
	(already done by clean).  Remove *.app only if not flattened, else
	do nothing because if we're flattened this is already done by
	clean.
	* Master/gswapp.make (internal-distclean): Do not remove obj and
	remove *.gswa only if non flattened, else do nothing.
	* Master/palette.make (internal-distclean): Do not remove obj
	and remove *.palette only if non flattened, else do nothing.
	* Master/service.make (internal-distclean): Do not remove obj and
	remove *.service only if non flattened, else do nothing.
	* Master/test-application.make (internal-distclean): Do not remove
	obj and remove *.app only if non flattened, else do nothing.
	
	* Master/bundle.make (internal-distclean): Do nothing.
	* Master/clibrary.make (internal-distclean): Do nothing.
	* Master/ctool.make (internal-distclean): Do nothing.
	* Master/gswbundle.make (internal-distclean): Do nothing.
	* Master/library.make (internal-distclean): Do nothing.
	* Master/objc.make (internal-distclean): Do nothing.
	* Master/palette.make (internal-distclean): Do nothing.	
	* Master/subproject.make (internal-distclean): Do nothing.
	* Master/test-library.make (internal-distclean): Do nothing.
	* Master/test-tool.make (internal-distclean): Do nothing.
	* Master/tool.make (internal-distclean): Do nothing (still remove
	Resources if we have them though).
	* Instance/framework.make (internal-framework-distclean): Do
	nothing.

2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/source-distribution.make: Use ECHO_NOTHING and
	END_ECHO macros so that 'make messages=yes dist' and
	similar commands work properly.

2006-09-13  Nicola Pero <nicola.pero@meta-innovation.com>

	* Master/rpm.make: Always build a file list called 'file-list'
	 Removed separate 'standalone=yes' case when building debug
	 packages.  Now they are always standalone.
	* spec-debug-rules.template: Removed code that built both debug
	and non-debug versions and computed differences in installed
	files.  Simply build with debug=yes.
	* spec-debug-alone-rules.template: File removed.
	* GNUmakefile.in (MAKE_FILES): Removed spec-debug-alone-rules-template.
	
	* Master/rpm.make (internal-distclean): Added ECHO_NOTHING and END_ECHO
	macros so that 'make messages=yes rpm' works properly.

	* Master/rpm.make (specfile): If the xxx-debug.spec.in file is not
	found, try to use xxx.spec.in.
	
2006-09-12  Nicola Pero <nicola.pero@meta-innovation.com>

	All applications now use the '.app' extension no matter how they
	are compiled.  So, no more Gorm.debug and Gorm.profile; it will
	always be Gorm.app.
	* common.make (APP_EXTENSION): Always use 'app' as the app extension.

	* Instance/gswapp.make (GSWAPP_EXTENSION): Always use 'gswa' as
	the app extension.
	* Master/gswapp.make (GSWAPP_EXTENSION): Same change.
	
	* Master/application.make (internal-distclean): Do not delete *.profile
	and *.debug.
	* Master/gswapp.make (internal-distclean): Same change.
	* Master/test-application.make (internal-distclean): Same change.

	* openapp.in: Do not search for xxx.debug and xxx.profile; only
	search for xxx.app.

	* openapp.in: If we find the application in '.', but we don't run
	it because '.' is not in the PATH, print an explanation/warning
	and suggest the user uses 'openapp ./xxx' if they really want to
	run it.

2006-09-08  Nicola Pero <nicola.pero@meta-innovation.com>

	Removed the code to automatically move from the very very old
	obsolete filesystem structure to the new one.
	* configure.ac (--disable-move-obsolete): Removed option.
	* configure: Regenerated.
	* GNUmakefile.in (move_obsolete): Target removed.
	(install): Do not depend on @GNUSTEP_MOVE_OBSOLETE@.
	* move_obsolete_paths.sh: File removed.

	* GNUmakefile.in (install): Depend directly on generated-files so
	we don't print the placeholder message used by 'all'.
	
2006-09-08  Nicola Pero <nicola.pero@meta-innovation.com>

	Object files are now all placed into ./obj rather than in separate
	directories (./shared_obj, ./shared_debug_obj,
	./static_profile_obj, etc.).
	* common.make (OBJ_DIR_PREFIX): Variable removed.
	(GNUSTEP_OBJ_PREFIX): Variable removed.
	(GNUSTEP_OBJ_DIR_NAME): Hardcode 'obj' as the prefix of the 
	directory name.
	* rules.make ($(GNUSTEP_OBJ_DIR)): Do not create the symlink from
	./shared_obj to ./obj.  Just create GNUSTEP_OBJ_DIR.

	* Master/application.make (internal-distclean): Only remove
	'./obj', not the various './shared_obj', etc.
	* Master/bundle.make (internal-distclean): Same change.
	* Master/clibrary.make (internal-distclean): Same change.
	* Master/ctool.make (internal-distclean): Same change.
	* Master/gswapp.make (internal-distclean): Same change.
	* Master/gswbundle.make (internal-distclean): Same change.
	* Master/library.make (internal-distclean): Same change.
	* Master/objc.make (internal-distclean): Same change.
	* Master/palette.make (internal-distclean): Same change.
	* Master/service.make (internal-distclean): Same change.
	* Master/subproject.make (internal-distclean): Same change.
	* Master/test-application.make (internal-distclean): Same change.
	* Master/test-library.make (internal-distclean): Same change.
	* Master/test-tool.make (internal-distclean): Same change.
	* Master/tool.make (internal-distclean): Same change.
	
	* Instance/framework.make (internal-framework-distclean): Same change.
	
2006-09-08  Nicola Pero <nicola.pero@meta-innovation.com>

	* Instance/library.make: Removed all usages of LIBRARY_NAME_SUFFIX,
	no longer defined.

2006-09-08  Nicola Pero <nicola.pero@meta-innovation.com>

	* common.make: Removed '_s' library name suffix for static
	libraries.  All libraries have the same name now!
	(WHICH_LIB_SCRIPT): Variable removed.

	* Instance/application.make (ALL_GUI_LIBS): Do not filter the
	libraries using which_lib.
	* Instance/bundle.make (ALL_BUNDLE_LIBS): Same change.
	* Instance/ctool.make (ALL_TOOL_LIBS): Same change.	
	* Instance/framework.make (INTERNAL_LIBRARIES_DEPEND_UPON): Same change.
	* Instance/gswapp.make (ALL_GSW_LIBS): Same change.
	* Instance/gswbundle.make (GSWBUNDLE_INSTALL_DIR): Same change.
	* Instance/library.make (INTERNAL_LIBRARIES_DEPEND_UPON): Same change.
	* Instance/objc.make (ALL_OBJC_LIBS): Same change.
	* Instance/palette.make (ALL_PALETTE_LIBS): Same change.
	* Instance/service.make (ALL_SERVICE_LIBS): Same change.
	* Instance/tool.make (ALL_TOOL_LIBS): Same change.

	* Instance/palette.make: Removed duplicated (and commented out)
	code for using all libs on some systems.

	* GNUmakefile.in (all): Do not build which_lib.
	(which_lib$(EXEEXT)): Rule removed.
	(install): Do not install which_lib.
	(uninstall): Do not uninstall which_lib.
	(clean): Do not clean which_lib.
	
	* configure.ac: Removed all the 'Miscellaneous headers' config, which
	was only used when building which_lib.c
	(AC_CONFIG_HEADER): Removed.
	* configure: Regenerated.
	
	* config.h.in: Removed.

	* GNUmakefile.in (generated-files): Removed config.h
	(config.h): Removed rule.
	(all): Print a message so people are not confused when 'all' does
	nothing.

	* which_lib.c: File removed.
	
2006-09-07  Nicola Pero <nicola.pero@meta-innovation.com>

	* common.make: Removed 'p' library name suffix for profile
	libraries.  The only remaining library name suffix is '_s' for
	static libraries.
	* which_lib.c: Don't search for profile libraries, also removed
	some other old code searching for debug ones.
	
2006-08-28  Adam Fedor  <fedor@gnu.org>

	* Version 1.13.0

2006-08-24  Adam Fedor  <fedor@gnu.org>

	* common.make: Remove 'd' suffix for debug libraries.
	* which_lib.c: Don't search for debug libraries in case there are
	old ones still around.

	* Documentation/news.texi: Update for new release.

2006-08-21  Adam Fedor  <fedor@gnu.org>

	* target.make: Add dragonfly OS.
	* Documentation/machine.texi: Updates.

2006-07-29 10:51-EDT Gregory John Casamento <greg_casamento@yahoo.com>

	* configure: Changed "cp -p" to "cp -rp" to correct breakage
	when the file being linked is a directory.

2006-07-06  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: Prevent bad characters in paths
	* configure: regenerate
	* GNUstep.csh.in: remove use of obsolete substitutions
	* GNUstep.sh.in: ditto
	* GNUstep.conf.in: ditto
	The use of backslash or space characters in a path/filename can
	confuse make and shell scripts, so we check for them and prevent
	them from being specified at configure time and/or built in to
	scripts.  Hopefully this will prevent much confusion on windows.

2006-07-05  Richard Frith-Macdonald <rfm@gnu.org>

	* GNUmakefile.in: install config.make in library combo specific
	directory so that non-flattened builds can pick up the correct
	config info for the library combo being used.
	* common.make: pick up config.make from new location
	* rules.make: know about new location for config.make

2006-06-14  Richard Frith-Macdonald <rfm@gnu.org>

	* common.make: determine host/target info before trying to load
	host/target specific configuration.

2006-05-01  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: Change --with... options specifying paths so that if
	someone oddly uses --without... we treat it as if they had specified
	nothing.

2006-04-26  Adam Fedor  <fedor@gnu.org>

	* Documentation/gnustep-howto.texi: Fix node link

2006-04-26  Saso Kiselkov

	* common.make: Add option to turn on native exceptions.

2006-04-25  Adam Fedor  <fedor@gnu.org>

	* Documentation/gnustep-howto.texi: Update windowmaker address

2006-04-07  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.MinGW: Correct typo in xml instructions.

2006-04-06  Adam Fedor  <fedor@gnu.org>

	* config.make.in: Set GNUSTEP_HOME to $(HOME). Fix if statements
	with filter in them. Fixes bug #16010.

2006-03-27  Adam Fedor  <fedor@gnu.org>

	* target.make (openbsd): Add additional link flags for bundle
	loading. Patch #4989 from Andrew Sveikauskas.

2006-03-27  Adam Fedor  <fedor@gnu.org>

	* Master/source-distribution.make (svn-tag): Add comment line
	(svn-dist): Simplify checkout.
	* Master/framework.make: Add build-headers rules
	* GNUmakefile: Add special_prefix to GNUSTEP_MAKEFILES

2006-03-17  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MinGW: Attempt to clarify versions to be used.

2006-03-13  Adam Fedor  <fedor@gnu.org>

	* Version 1.12.0

2006-03-09  Adam Fedor  <fedor@gnu.org>

	* target.make (openbsd): Add specific EXTACT_CLASS_NAMES_COMMAND.
	Patch #4957 from Andrew Sveikauskas.

2006-03-07  Jeremy Bettis  <jeremy@deadbeef.com>

	* Instance/framework.make: Only copy headers if they changed.
	Delete framework.dll if the compile fails.
	
	* Instance/subproject.make: Only copy headers if they changed
	
	* Master/framework.make: make
	$(FRAMEWORK_NAME:=.all.framework.variables) depend on
	$(FRAMEWORK_NAME:=.build-headers.framework.variables), sometimes
	the copying of header files would happen too late.
	
	* target.make: Added -Wl,--enable-auto-image-base to link command
	for shared libs & bundles on mingw32.

2006-02-23  Adam Fedor  <fedor@gnu.org>

	* Master/source-distribution.make: Add svn tag/dist rules

	* Documentation/userfaq.texi: updates.

2006-01-11  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MinGW: Update with information on libxml2

2006-01-05  Adam Fedor  <fedor@gnu.org>

	* Instance/bundle.make: Always link agains all libs when using
	Apple's CC.

2006-01-01  Richard Frith-Macdonald <rfm@gnu.org>

	* openapp.in: Remove IFS setting and search again ... it prevented
	windows paths from working (which was why it was removed in the first
	place).  Also removed insertion of '.' as a path to search ... since
	this is generally considered a security flaw.
	Removed some code to search in odd subdirectories.
	Added code to search the directories specified in PATH as well as the
	standard locations.  Does this need a different path separator on
	mingw?  Can't remember and I don't currently have a windows system to
	test on.

2005-12-30  Adam Fedor  <fedor@gnu.org>

	* openapp.in: Re-add IFS setting and search in current dir
	(Fixes Bug #15289).

2005-12-21  Adam Fedor  <fedor@gnu.org>

	* Version 1.11.2

2005-12-20  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Check for objc-gnu in the GNUstep libraries dir.
	* Instance/bundle.make: Always link againt all libs on darwin.

2005-12-20  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Don't strip -g from CFLAGS. Someone might want it
	without using debug=yes.

2005-12-06  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: On mingw32, if we don't get the config file location
	from an earlier installatioin or a command line option, use
	/c/GNUstep/GNUstep.conf-dev ... assuming a development version
	rather than a version for distribution.
	* target.m: add -SystemStubs to bundle libraries on MacOS-X tiger ...
	as linking of stdio functions seems to fail otherwise.

2005-12-05  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/filesystem.texi: Initial attempt at adding
	documentation on how the filesystem layout is controlled by
	the GNUstep config file.

2005-12-05  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Display a message with the GNUSTEP_MAKEFILES that
	is used.  In psychological preparation for when it will actually
	be configurable. ;-)
	* configure: Regenerated.

2005-12-05  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make (internal-library-uninstall_): Fixed
	uninstallation of dll on windows.  (Suggested by Frode
	<frode@bredband.net>).

2005-12-02  Richard Frith-Macdonald <rfm@gnu.org>

	* opentool.in:
	* openapp.in:
	* config.make.in:
	Honor the GNUSTEP_CONFIG_FILE environment variable.

2005-11-28  Richard Frith-Macdonald <rfm@gnu.org>

	* GNUstep.conf.in: Use new variables for handling backslashes in
	paths.
	* GNUstep.csh.in: ditto
	* GNUstep.sh.in: ditto
	* GNUmakefile.in: Quote paths when we use them .. to avoid backslashes
	being removed when they should be present in the path.
	* configure.ac: Always make GNUSTEP_MAKEFILES the Library/Makefiles
	subdirectory of the system root.  Create new variables containing
	escaped backslashes to handle being given a backslash in a path.
	* configure: regenerate

2005-11-21  Richard Frith-Macdonald <rfm@gnu.org>

	* opentool.in:
	* openapp.in:
	Changed to use new GNUstep.conf configuration file to obtain the
	directories to search.

2005-10-28  Richard Frith-Macdonald <rfm@gnu.org>

	* configure.ac: Set up a sensible default location for GNUstep.conf
	on mingw32 systems (C:\GNUstep\GNUstep.conf).
	* configure: ditto

2005-10-27  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Standardized the format of option help, and also
	written fairly complete help on each and every option.
	* configure: Regenerated.
	
2005-10-26  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make: Removed checks for GNUSTEP_*_ROOT variables
	top-level, they are now automatically and always set by
	config.make, no need to check for them here in the new system.

2005-10-26  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/rules.make: Rewritten code that determines if this the
	top-level make invocation (in order to have the dependencies
	install: check-install-permissions all, and distclean: clean
	top-level), so that it also works when gnustep-make is invoked
	from within a makefile itself (this fixes 'make distclean' in
	gnustep-make's own Documentation/GNUmakefile).
	* common.make: Updated similar checks.
	
2005-10-26  Nicola Pero  <n.pero@mi.flashnet.it>

	* Documentation/GNUmakefile: Updated commands to create temporary
	gnustep-make installation.  Also, do not source GNUstep.sh but rely
	just on passing GNUSTEP_MAKEFILES on the make command line.

2005-10-26  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (install): Fixed installing GNUstep.conf
	when the build directory is different from the source directory.

2005-10-23  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Fixed error in the documentation of
	--with-user-config-file option.
	* configure: Regenerated.
	
2005-10-23  Nicola Pero  <n.pero@mi.flashnet.it>

	* config.make.in: Removed code to compute GNUSTEP_HOST,
	GNUSTEP_HOST_CPU, etc, when in GNUSTEP_MULTI_PLATFORM mode -- this
	is already done by names.make later.

2005-10-23  Nicola Pero  <n.pero@mi.flashnet.it>

	This change is key to no longer having to source GNUstep.sh when
	compiling stuff using gnustep-make.  Please understand this is all
	very experimental so don't upgrade yet if you need stability.
	* config.make.in (GNUSTEP_CONFIG_FILE): Read configuration files
	directly and get all required information from there; only
	GNUSTEP_MAKEFILES is assumed to be set.
	* common.make: Include config.make first because until we include
	that one, we can no longer assume anything.

2005-10-23  Nicola Pero  <n.pero@mi.flashnet.it>

	* which_lib.c (search_for_lib_with_suffix_and_ext): Enhanced
	changes to make the code simpler and easier to understand and
	avoid duplicate checks for static libs.  Needs testing.

2005-10-23  Richard Frith-Macdonald <rfm@gnu.org>

	* which_lib.c: Tidied a little on lines suggested by David Ayers
	* configure.ac: Check for ctype.h
	* configure: regenerate
	* config.h.in: regenerate

2005-10-23  Jeremy Bettis

	* configure.ac: 
	* rules.make: 
	* target.make: 
	Use install -p so that doing a make install doesn't change the
	timestamp on all the headers and cause everything to need rebuilt.
	Don't create the obj dir (symlink) on mingw.
	Add -Wl,--enable-auto-import to link commands to make the compiler be
	quiet.
	* which_lib.c: Fixes to support other library types on mingw.
	Patches applied and edited to conform to GNUstep coding standard.

2005-10-20  Adam Fedor  <fedor@gnu.org>

	* config.make.in (GNUSTEP_CONFIG_FILE): Correct capitaliztion
	of substitution variable.

2005-10-19  Nicola Pero  <n.pero@mi.flashnet.it>

	* config.guess: Updated to latest version.
	* config.sub: Idem.

2005-10-18  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Make sure that --prefix=xxx takes precedence over
	paths read from GNUstep.conf or inherited from the environment.
	* configure: Regenerated.
	
2005-10-17  Adam Fedor  <fedor@gnu.org>

	* target.make (netbsd): Remove static libs version of netbsd
	target and make (netbsdelf) work for all netbsd versions.
	* clean_os.sh: Don't clean netbsd targets. Fixes Bug #14635.

2005-10-14  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUstep.sh.in: Export GNUSTEP_USER_ROOT after setting it (Bug
	reported by Fred Kiefer <fredkiefer@gmx.de>).

2005-10-13  Nicola Pero  <n.pero@mi.flashnet.it>
	
	* GNUstep.sh.in: Read system, local, network, user paths from
	configuration files and use the configuration files settings in
	preference to the hardcoded ones.
	* GNUstep.csh.in: Same changes, where we use sed to convert on the
	fly the sh syntax of config files to csh syntax, then we eval the
	result.
	* GNUmakefile.in: Do not compile, install and clean user_home.
	* user_home.c: Removed.
	* GNUstep-reset.sh (GNUSTEP_USER_CONFIG_FILE, GNUSTEP_USER_DIR,
	GNUSTEP_USER_DEFAULTS_DIR, GNUSTEP_CONFIG_FILE): Unset.
	
2005-10-13  Nicola Pero  <n.pero@mi.flashnet.it>
	
	* GNUmakefile.in (GNUSTEP_CONFIG_FILE): Fixed replacing this variable.

2005-10-13  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Added --with-user-config-file, --with-user-dir,
	--with-user-defaults-dir options.  Remove --with-user-root option.
	Simplified implementation of --with-config-file option.  Do not
	generate GNUsteprc.
	* configure: Regenerated.
	* GNUstep.conf.in (GNUSTEP_USER_CONFIG_FILE): New variable.
	(GNUSTEP_USER_DIR): New variable.
	(GNUSTEP_USER_DEFAULTS_DIR): New variable.
	* GNUsteprc.in: Removed.
	
2005-10-13  Nicola Pero  <n.pero@mi.flashnet.it>

	Warning: --prefix=/usr/GNUstep/System no longer works.  Please use
	--prefix=/usr/GNUstep or --with-system-root=/usr/GNUstep/System.
	* configure.ac: Simplified management of --prefix.  Do not try
	setting default prefix from an existing GNUSTEP_SYSTEM_ROOT as
	that is read from the config file after the default prefix is set.
	Do not set $prefix variable that it not used anywhere.  Fixed bug
	in setting GNUSTEP_SYSTEM_ROOT introduced in previous changes.
	* configure: Regenerated.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* .cvsignore: Ignore GNUstep.conf

2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>
	
	* configure.ac: Use the GNUSTEP_CONFIG_FILE environment variable
	to choose the location of the config file, if no configure option
	is given.  Automatically import the settings from an existing
	GNUstep config file if one exists, and use them for anything not
	specified.  Added --disable-importing-config-file option to
	disable this behaviour.
	* configure: Regenerated.	

2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Added --with-system-root=xxx option.
	* configure: Regenerated.

2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>
	
	Removed obsolete public variable GNUSTEP_ROOT.
	* configure.ac: Do not replace GNUSTEP_ROOT in generate files.
	* configure: Regenerated.
	* GNUstep.csh.in: Do not define GNUSTEP_ROOT.
	* GNUstep.sh.in: Do not define GNUSTEP_ROOT.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>
	
	* configure.ac: Define GNUSTEP_SYSTEM_ROOT from prefix.  Export
	and reference it instead of exporting and referencing 'prefix' to
	clarify what is happening.  Reordered some configure stages to
	prepare it for further changes.
	* configure: Regenerated.
	* GNUmakefile.in: Use GNUSTEP_SYSTEM_ROOT instead of prefix.
	* GNUstep.csh.in: Same change.
	* GNUstep.sh.in: Same change.
	* GNUstep.conf.in: Same change.

2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>
	
	* configure.ac (MAKEFILE_SUFFIX): Variable removed.
	(GNUSTEP_MAKEFILES): New variable (that is more standard and more
	suited to make it a configure option in the future).  Replace it
	in generated files.
	* configure: Regenerated.
	* debugapp.in: Use everywhere GNUSTEP_MAKEFILES, not
	MAKEFILE_SUFFIX.
	* opentool.in: Same change.
	* GNUmakefile.in: Same change.
	* executable.template.in: Same change.
	* GNUstep.sh.in: Same change.
	* GNUstep.csh.in: Same change.
	* gnustep-make.spec.in: Removed MAKEFILE_SUFFIX, use Library/Makefiles
	directly.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Removed obsolete --without-system-root option.
	* configure: Regenerated.

2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac (root_prefix): Variable removed.  Wasn't used or
	replaced anywhere.
	* configure: Regenerated.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Use /usr/pkg/etc/GNUstep.conf instead of
	/usr/pkg/etc as GNUstep config file on NetBSD (Suggestion by David
	Ayers).
	* configure: Regenerated.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Generate GNUstep.conf from GNUstep.conf.in
	so that GNUstep.conf gets properly setup with the paths that
	are configured into gnustep-make
	* GNUstep.conf.in: New file.
	* GNUstep.conf: Removed.
	* configure: Regenerated.
	* GNUmakefile.in (install): Install the GNUstep.conf file
	in the chosen location for the GNUstep config file.
	
2005-10-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Added --with-config-file=xxx (code partially taken
	from gnustep-base) option.
	* config.make.ac: Added GNUSTEP_CONFIG_FILE variable holding the
	configured location of the config file for this installation.
	* configure: Regenerated.
	
2005-10-06 Tom MacSween <macsweent@sympatico.ca>

	* Fixes for cygwin.
	* Instance/rules.make: Add Windows resource files for cygwin
	* config.make.in: Cygwin does not have ln-s
	* rules.make: Add Windows resource rules for cygwin
	* target.make (cygwin): Fix shared link cmd.

2005-10-06  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make (ALL_OBJCCFLAGS, $(GNUSTEP_OBJ_DIR)/%${OEXT}): When
	compiling ObjC++ files, don't use the additional ObjC flags but
	only the internal/system ones, to make it easier/possible for end
	users to add different flags to ObjC and ObjC++ compilations.
	
2005-10-06  Nicola Pero  <n.pero@mi.flashnet.it>

	Added support for ObjC++.  You should list the ObjC++ .mm files in
	the xxx_OBJCC_FILES variable, and put extra ObjC++ flags in
	xxx_OBJCCFLAGS or ADDITIONAL_OBJCCFLAGS.
	* rules.make (.SUFFIXES): Added .mm for ObjC++.
	($(GNUSTEP_OBJ_DIR)/%${OEXT}): Added rule to compile .mm files
	into .o files.
	(ALL_OBJCCFLAGS): New variable, set from ADDITIONAL_OBJCCFLAGS and
	AUXILIARY_OBJCCFLAGS.
	* Instance/rules.make (OBJCC_OBJS, OBJCC_OBJ_FILES): New variables
	set from xxx_OBJCC_FILES.
	(OBJ_FILES_TO_LINK): Added the new OBJCC_OBJ_FILES to the list of things
	to link.
	(ADDITIONAL_OBJCCFLAGS): New variable set from xxx_ADDITIONAL_OBJCCFLAGS.
	
2005-09-28  Adam Fedor  <fedor@gnu.org>

	* target.make (cygwin/SHARED_LIB_LINK_CMD): Correct lib file name
	(Fix from Tom MacSween).
	* Instance/framework.make: Add extension to NSExecutable.

2005-09-22  Adam Fedor  <fedor@gnu.org>

	* Add runtime flags everywhere for Mac OS/gcc dual runtimes
	* rules.make (CC_LDFLAGS): New variable for extra ld flags
	* target.make (darwin/SHARED_LD_PREFLAGS): Use it.
	* Instance/application.make (APP_FILE),
	Instance/gswapp.make (GSWAPP_FILE), Instance/objc.make,
	Instance/service.make (SERVICE_FILE), Instance/tool.make: Idem.

2005-09-18  Adam Fedor  <fedor@gnu.org>

	* Version 1.11.1

	* target.make (darwin): Add RUNTIME_FLAGS to shared lib link with
	GNU compiler (i.e. -fgnu-runtime).
	* Documentation/README.MinGW: Update.

2005-09-17  Adam Fedor  <fedor@gnu.org>

	* Changes to fix compilation on cygwin.
	* target.make: Add generic BUNDLE_LINK_CMD.
	(cygwin): Modify it for cygwin. New SHARED_LIB_LINK_CMD and
	other support variables.
	* Instance/application.make: Remove OLD_DLL_SUPPORT
	* Instance/bundle.make: Idem. Use BUNDLE_LINK_CMD.
	* Instance/library.make: Remove OLD_DLL_SUPPORT
	* Instance/palette.make: Idem.
	* Instance/rules.make: Remove subproject def file rule.
	* Instance/subprojects.make: Remove def file rules.
	* Instance/framework.make: Add OBJ_EXT in Info file.
	(Based on patch and suggestions by Tom MacSween).

2005-08-08  Adam Fedor  <fedor@gnu.org>

	* Documentation/machines.texi: Update.

2005-08-08  Adam Fedor  <fedor@gnu.org>

	* Instance/application.make, Instance/gswapp.make,
	Instance/service.make, Instance/tool.make: Revert change from
	2005-06-06.

2005-07-21  Adam Fedor  <fedor@gnu.org>

	* Version 1.11.0

2005-07-20  Jeremy Bettis <jeremy@deadbeef.com>,
	    Nicola Pero  <n.pero@mi.flashnet.it>

	* config.make.in: Set FRAMEWORK_VERSION_SUPPORT here.
	* Instance/framework.make: And do not set it here.
	* Master/rules.make (%.variables, %.subprojects): if
	FRAMEWORK_VERSION_SUPPORT is not set to yes, use
	non-Versions directories for frameworks.
	* config.make.in (HAS_LN_S): Make sure it's set to no
	when it's not set to yes.
	
2005-07-14  Jeremy Bettis <jeremy@deadbeef.com>, 
	    Nicola Pero  <n.pero@mi.flashnet.it>

	Implemented support for xxx_WINDRES_FILES on mingw32.
	* rules.make ($(GNUSTEP_OBJ_DIR)/%${OEXT}): New mingw32 rule to
	compile a .rc (windres) file into an object file.
	(.SUFFIXES): On mingw32, add .rc.
	* Instance/rules.make (WINDRES_OBJS, WINDRES_OBJ_FILES): New
	variables for mingw32; generate them from xxx_WINDRES_FILES.
	(OBJ_FILES_TO_LINK): Add WINDRES_OBJ_FILES to the list of files to
	link.

2005-07-14 Jeremy Bettis <jeremy@deadbeef.com>, 
	   Nicola Pero <n.pero@mi.flashnet.it>

	Implemented pseudo-framework support for mingw32 (Windows).
	* Instance/framework.make: disable versioning on Windows, switch
	to use the new DLL building system already used by libraries, and
	clean up all the small details of pseudo-frameworks on mingw32.
	
2005-07-13  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (EXTRACT_CLASS_NAMES_COMMAND): New define for
	mingw32 where class name symbols start with '___' rather than
	'__'.

2005-07-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (FreeBSD ELF): if -pthread is being used for
	threads, add -pthread to INTERNAL_CFLAGS, INTERNAL_OBJCFLAGS,
	INTERNAL_LDFLAGS.
	
2005-07-12  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (DUMMY_FRAMEWORK): Mangle
	framework names into valid ObjC class names.

2005-07-12  Nicola Pero <n.pero@mi.flashnet.it>

	* Documentation/README.MinGW: Updated.
	
2005-07-08  Adam Fedor  <fedor@gnu.org>

	* Documentation/news.texi: Update for next version.

2005-07-06  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/bundle.make: Removed usage of :: rules for all but the
	internal- rules.  Can't see a reason why we were using :: rules in
	the other cases, probably a tradition that was followed without
	really understanding why.
	* Instance/gswbundle.make: Same change.
	* Instance/framework.make: Same change.
	* Instance/subproject.make: Same change.

2005-06-17  Adam Fedor  <fedor@gnu.org>

	* Documentation/GNUmakefile: Don't try to install README.NetBSD
	* Documentation/machines.texi: Updates.

2005-06-10  Adam Fedor  <fedor@gnu.org>

	* Instance/test-library.make: Remove dejagnu code and replace
	with rules to inherit from library.make

2005-06-10  Adam Fedor  <fedor@gnu.org>

	* Master/source-distribution.make (dist): Tar/copy the directory
	instead of moving it to make the distribution. Fixes bug #13305

	* Documentation/machines.texi: Update Suse.

2005-06-06  Adam Fedor  <fedor@gnu.org>

	* Instance/application.make (ALL_GUI_LIBS): Remove OBJC_LIBS,
	AUXILIARY_OBJC_LIBS, and TARGET_SYSTEM_LIBS
	* Instance/gswapp.make (ALL_GSW_LIBS): Idem.
	* Instance/service.make (ALL_SERVICE_LIBS): Idem.
	* Instance/test-library.make (ALL_TEST_LIBRARY_LIBS): Idem.
	* Instance/tool.make (ALL_TOOL_LIBS): Idem.
	Fixes bug #9920.

2005-05-31  Nicola Pero  <n.pero@mi.flashnet.it>

	* Documentation/README.MinGW: Rewritten with updated instructions.

2005-05-23  David Lazaro Saz  <dlazaro@acm.org>

	* Documentation/userfaq.texi: Updated style, trademark usage and some
	spelling mistakes.

2005-05-21  Adam Fedor  <fedor@gnu.org>

	* Update FSF Address.
	* Documentation/gnustep-howto.texi: Update required libs.

2005-04-19  Adam Fedor  <fedor@gnu.org>

	* GNUmakefile.in (install): Don't make Makefiles link
	* target.make (darwin/GNU): Use $(CC) to link library.
	* Instance/framework.make: More comments.

2005-04-15  Adam Fedor  <fedor@gnu.org>

	* Instance/framework.make: Add top-level symlink for all darwin
	* ld_lib_path.[c]sh: Clarify framework comment.

	* Documentation/machines.texi: Update
	* Documentation/README.NetBSD: Remove, obsolete.

2005-04-06  Nicola Pero <n.pero@mi.flashnet.it>

	* GNUstep.conf (USER_GNUSTEP_RC): Fixed typo, it was spelt
	as .GNusteprc instead of .GNUsteprc.

2005-04-06  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/framework.make: Create header directories and copy them
	even if HEADER_FILES is empty.  This fixes problems when
	subprojects have headers, but the top-level framework does not.
	* Instance/Shared/headers.make (HEADER_FILES_DIR,
	HEADER_FILES_INSTALL_DIR): Always compute those two variables
	even if HEADER_FILES is empty.

2005-04-06  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/framework.make ($(FRAMEWORK_HEADER_FILES)): Fixed
	depending on HEADER_FILES, which wasn't taking HEADER_FILES_DIR
	into account (Fix suggested by Matt Rice <ratmice@yahoo.com>).
	
2005-03-22  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/application.make (ALL_LDFLAGS): When on a platform
	where DLLs are built (such as Mingw), automatically generate a
	.exe.a library for the application.  Required by Gorm.

2005-03-21  Adam Fedor  <fedor@gnu.org>

	* GNUmakefile.in: Don't install .GNUsteprc file
	* GNUstep.conf: New file.
	* Documentation/README.Darwin,  Documentation/README.MinGW,
	Documentation/faq.texi, Documentation/machines.texi: Updates.

2005-03-21  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/palette.make (internal-palette-all_): Use the old dll
	rules only if OLD_DLL_SUPPORT is YES.  In all other cases,
	including Mingw, use the standard ones.
	(Info-gnustep.plist): Include PALETTE_OBJ_EXT in NSExecutable.

2005-03-21  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/bundle.make: Use make quotes, not shell quotes, for
	BUNDLE_OBJ_EXT when used in rules.
	
2005-03-21  Nicola Pero <n.pero@mi.flashnet.it>
	
	* target.make (SHARED_LIBEXT): Set to .dll.a for Mingw so that
	which_lib manages to find the libs and building with debug=yes now
	works on Mingw.

2005-03-10  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/library.make: On Windows, try to link against all 
	libraries, except the one we are compiling.
	* Instance/bundle.make: Replaced all occurrences of WITH_DLL with
	BUILD_DLL.
	* Instance/framework.make: Same change.
	* Instance/palette.make:  Same change.
	* Instance/bundle.make (build-bundle): Use the old DLL rules to
	build bundles only if OLD_DLL_SUPPORT is defined.  Else, use the
	rules specified in target.make for that platform.
	* target.make (BUNDLE_LD): Just use -shared on Mingw.
	
2005-03-10  Nicola Pero <n.pero@mi.flashnet.it>

	* user_home.c (main): Fixed missing case for Windows ... if
	HOMEPATH was already a full path, the code would forget to copy
	the path into home.

2005-03-09  Nicola Pero <n.pero@mi.flashnet.it>

	* configure.ac: Detect libobjc.dll.a as a custom ObjC library.
	* configure: Regenerated.

2005-03-01  Nicola Pero <n.pero@mi.flashnet.it>

	* target.make (WITH_DLL): Variable removed.
	(OLD_DLL_SUPPORT): New variable which is set to yes for cygwin,
	but to no for mingw.
	(DLLTOOL): Do not define for mingw.
	(DLLWRAP): Do not define for mingw.
	(SHARED_LIB_LINK_CMD): New variable for mingw.
	(AFTER_INSTALL_SHARED_LIB_CMD): The same.
	(AFTER_INSTALL_SHARED_LIB_CHOWN): The same.
	(SHARED_LIBEXT): Do not define to be .a on mingw; that is only
	confusing; use LIBEXT instead.
	(LIBEXT): Define to be .a on mingw.
	(TARGET_SYSTEM_LIBS): Define using =, not :=.
       
	* rules.make (ALL_CPPFLAGS): Check BUILD_DLL instead of WITH_DLL
	when adding -DGNUSTEP_WITH_DLL.

	* Instance/library.make (LIBRARY_NAME_WITHOUT_LIB): New variable.
	(LIBRARY_FILE_EXT): Unused variable removed.
	(CLEAN_library_NAME): Generate using make functions rather than
	firing external shell scripts to increase building speed.
	Execute existing DLL code when OLD_DLL_SUPPORT is set to yes.  For
	BUILD_DLL but not OLD_DLL_SUPPORT, added brand new code which uses
	the new target.make mingw variables and takes advantage of the new
	DLL support in GCC and mingw.

2005-02-19  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.MinGW: Minor edit.
	* Documentation/faq.texi: Add question.
	* Documentation/gnustep-howto.texi: Add service
	* Documentation/machines.texi: Edit FreeBSD 5.x	

2005-02-18  Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MinGW: Update with my latest experiences.

2005-01-31  Adam Fedor  <fedor@gnu.org>

	* Documentation/GNUmakefile: Install README.* docs
	* Documentation/machines.texi: Typo.

2005-01-14  Armando Di Cianno <fafhrd@gentoo.org>

	* GNUstep-reset.sh (reset-path): Add new argument with a path
	fragment to make the path removal more accurate.  Use it with
	appropriate arguments for each variable. (with small changes by
	Nicola).

2005-01-05  Sergii Stoian <stoian255@ukr.net>

	* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed
	copying resource files and localized resource files into the
	bundle when they are in subdirs.
	
2004-12-27  Quentin Mathe <qmathe@club-internet.fr>
       
        * Documentation/README.Darwin: Rewritten the base library install
        instructions (libxslt support with Fink explained) and other minor
        updates.
        * Documentation/machines.texi: Made the GNUstep on MacOSX section a bit
        more clear.
        * GNUstep-HOWTO: Synchronized with Documentation/machines.texi and made
        the spacing more consistent.

2004-12-26  Quentin Mathe <qmathe@club-internet.fr>
       
        * Documentation/README.Darwin: Updated to take in account the latest 
        feedback by Uli Kusterer.
        * Documentation/machines.texi: 
        * GNUstep-HOWTO:
        Updated the current GCC state for GNUstep on Darwin.

2004-12-26  Quentin Mathe <qmathe@club-internet.fr>
       
        * Documentation/README.Darwin: Improved indentation and presentation.

2004-12-19 Richard Frith-Macdonald <rfm@gnu.org>

        * target.make: For gnu compiler on darwin, use flat namespace and
	undefined warning for executables as well as libraries/bundles so
	that we can link with libraries/bundles without havint to explictly
	name all the libraries that thay depend upon.

2004-12-06  Adam Fedor  <fedor@gnu.org>

	* Documentation/machines.texi (MacOSX): Update (info from Markus
	Hitter).

	* Documentation/README.Darwin: Clean up, simplify.

Sun Nov  7 04:18:39 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* tar-exclude-list: Use *.svn instead of .svn to have
	.svn dirs excluded.

Sun Nov  7 04:07:50 2004  David Wetzel <dave@turbocat.de>

	* Instance/Shared/bundle.make: Everywhere use the '-f' flag to 'cp
	-r' so that read-only files such as subversions dirs can be
	written and overwritten.

Thu Nov  4 08:39:29 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* common.make (RM_LN_S): New variable.
	* target.make: Replaced 'rm -f', when used before creating a
	symlink, with $(RM_LN_S).
	* rules.make ($(GNUSTEP_OBJ_DIR)): Same change.
	* Instance/framework.make: Same change.
	* Instance/gswbundle.make: Same change.

2004-10-29  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.Cygwin: Updated
	* Documentation/README.Darwin: Minor update
	* Documentation/gnustep.init: Add navigation tags back

2004-10-18  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.MinGW: Mention Windows installer. Update links
	* Documentation/gnustep-howto.texi: Some setup no longer needed.
	* Documentation/gnustep.init: Don't add links - currently not 
	referenced correctly.
	* Documentation/machines.texi: Add compilers section.

	* Instance/tool.make: Fix a typo.

2004-09-07  Adam Fedor  <fedor@gnu.org>

	* Version 1.10.0

Tue Sep  7 12:48:31 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (SHARED_LIB_LINK_CMD): Removed -prebind flag.

2004-09-06  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Don't reset LIB_DIR.

2004-09-03  Adam Fedor  <fedor@gnu.org>

	* Add missing GNUsteprc.in

Fri Sep  3 21:52:00 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Recognize --with-user-root option and store
	the configuration into the system GNUsteprc.
	* configure: Regenerated.
	* GNUsteprc.in: New file.
	* GNUmakefile.in (install): Install the system GNUsteprc into
	GNUSTEP_SYSTEM_ROOT.  (uninstall): Uninstall the same file.
	(distclean): Remove GNUsteprc.
	* user_home.c: Do not segfault if the environment variable
	GNUSTEP_SYSTEM_ROOT is not set when the tool is executed.
	
Thu Sep 02 17:01:11 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* tar-exclude-list: New file currently containing CVS and .svn.
	* GNUmakefile.in: Install the new file.
	* Instance/Shared/bundle.make: Modified TAR commands to exclude
	files listed in the tar-exclude-list file.
	* Instance/framework.make: Same changes.
	* Instance/gswbundle.make: Same changes.
	* Instance/Documentation/autogsdoc.make: Same changes.
	* Instance/Documentation/javadoc.make: Same changes.
	* Instance/Documentation/latex.make: Same changes.
	
Tue Aug 31 16:21:41 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make: If xxx_INTERFACE_VERSION or xxx_SOVERSION
	is set, but xxx_VERSION is not set, guess xxx_VERSION by taking
	xxx_INTERFACE_VERSION and appending .0.
	
2004-08-24  Quentin Mathe  <qmathe@club-internet.fr>

	* ld_lib_path.sh:
	* ld_lib_path.csh:
	Added comments to explain why we set DYLD_FRAMEWORK_PATH on Darwin with
	any library combo and not just apple-apple-apple (it is a temporary
	solution).

2004-08-24  Adam Fedor  <fedor@gnu.org>

	* GNUstep.sh.in: Add newline at end of file (avoids bug in Solaris
	sed).

Fri Aug 20 02:26:12 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Documentation/install.texi (Single-User): Removed mention of
	FORCE_USER_ROOT which is going to be dropped in next releases.

Fri Aug 20 02:19:54 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUstep.sh.in: Do not run make_services.
	* GNUstep.csh.in: Do not run make_services.
	
2004-08-07  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Remove warning about moving old directories into
	new directory structure (been there since 1.7.0).

2004-07-31  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add checks for specific Apple compiler flags.
	* target.make (darwin): Use them. Don't add no-cpp-precomp flag
	when compiling with Apple compiler.

	* Documentation/README.Darwin: Minor fixes (Patch from
	lars.sonchocky-helldorf@hamburg.de).

	* Master/source-distribution.make: Add CVS_TAG_NAME variable.

2004-07-11  Gregory John Casamento <greg_casamento@yahoo.com>

	* Instance/palette.make: Updated the palette.make to create
	a plist instead of a string format file for the palette.table.   
	It's necessary for the the palette.table to be able to pass in
	a set of classes to be imported.

2004-07-09  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Improve compiler type test.
	* Documentation/gnustep.init: Fix template parsing rules.

2004-07-04  Adrian Robert  <arobert@cogsci.ucsd.edu>

	* Instance/Documentation/texi.make:
	Added rules to use texi2pdf to generate PDF doc, and replace PS by PDF
	in the default generate/install/uninstall rules.  Add <instance>.html
	to the list of files installed/uninstalled for HTML.

2004-06-23 01:47  Alexander Malmberg <alexander@malmberg.org>

	* common.make, config.make.in: Rename HAS_OBJC_EXCEPTIONS to
	USE_OBJC_EXCEPTIONS.
	* configure.ac: Same. Also add --enable-native-objc-exceptions
	argument and make the test for this feature stricter.
	* configure: Rebuild.

Fri Jun 19 13:01:02 2004  Nicola Pero <n.pero@mi.flashnet.it>,
	                  Yves de Champlain <yves@gnu-darwin.org>

	* target.make (EXTRACT_CLASS_NAMES_COMMAND): New variable, with
	special value for darwin.
	* Instance/framework.make: Use the new variable when building
	the list of classes in the framework.

Fri Jun 18 18:49:16 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* configure.ac: Detect native exception handler support in the
	compiler, and set HAS_OBJC_EXCEPTIONS to yes if it's there.
	* configure: Regenerated.
	* config.make.in: New variable HAS_OBJC_EXCEPTIONS.
	* common.make: If HAS_OBJC_EXCEPTIONS is set, add
	-fobjc-exceptions to the ObjC flags.
	
2004-06-16  Adam Fedor  <fedor@gnu.org>

	* GNUmakefile (distclean): Remove duplicate GNUmakefile removal
	Don't remove Documentation/GNUmakefile

	* Documentation/machines.texi: Update

	* Instance/resource-set.make (internal-resource_set-uninstall_):
	Remove directories after removing files.

Tue Jun 15 09:49:16 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* GNUstep.sh.in: Detect if we're running under zsh, and if so, if
	the shwordsplit option is not set, set it for the duration of the
	script, then restore it to its original value at the end.  This
	seems to fix setting the paths on zsh.
	
2004-06-14  Adam Fedor  <fedor@gnu.org>

	* GNUmakefile.in (uninstall): Remove all installed files (still
	need to do directories).

2004-06-09  Adam Fedor  <fedor@gnu.org>

	* Version 1.9.2
	* Documentation/GNUmakefile: Include ../Version
	* Documentation/README.Cygwin: minor updates.
	* Documentation/gnustep-howto.texi, Documentation/machines.texi: Update

2004-06-05  Adam Fedor  <fedor@gnu.org>

	* ld_lib_path.[c]sh: Allow seting of GNUstep framework location on
	Mac OS X for all library combos (patch from Quentin Mathe
	<gnustep-quentin@club-internet.fr>).

	* Instance/application.make ($(APP_INFO_PLIST_FILE)): Don't fail
	if plmerge does not work.

	* Documentation/README.Cygwin: Update
	* Documentation/machines.texi: Add Mac OS X section.
	* Documentation/news.texi: Update.

Tue Jun  1 15:43:45 BST 2004  Riccardo Mottola <rollei@tiscalinet.it>

	* debugapp.in (appname): Fixed escaping of --args argument to work
	with an alien grep / os.

2004-05-17 Richard Frith-Macdonald <rfm@gnu.org>

        * Instance/Documentation/autogsdoc.make: Simplify rules.  Avoid
	dependency on existence of documentation subdirectory by relying on
	new autogsdoc feature (it now creates the subdirectory if necessary).
	This prevents possible recursion in make process.

2004-05-07 Richard Frith-Macdonald <rfm@gnu.org>

	* Master/rules.make: Pass 'operation' to instances in
	'GNUSTEP_OPERATION'
        * Instance/Documentation/autogsdoc.make: Use 'GNUSTEP_OPERATION'

Thu Apr 29 15:54:17 2004  Nicola Pero <n.pero@mi.flashnet.it>
	
	* Instance/Documentation/autogsdoc.make
	(GNUSTEP_INSTANCE/dependencies): Only include this file when the
	operation is 'all'.
	(internal-doc-clean): Do not run autogsdoc here.
	(internal-doc-distclean): Rule removed.  No longer needed, as the
	previous changes should do the real fix.
	
Thu Apr 29 14:04:61 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/Documentation/autogsdoc.make (internal-doc-distclean):
	Added rule, to make sure a 'make distclean' actually cleans.

2004-04-27  Adam Fedor  <fedor@gnu.org>

	* clean_os.sh: Report netbsd1.6* and netbsd2* as netbsdelf.

Tue Apr 20 10:27:16 2004  Matt Rice <ratmice@yahoo.com>

	* target.make: Use the GNU/Linux ELF code for GNU/Hurd too.

2004-04-12  Adam Fedor  <fedor@gnu.org>

	* common.make (GNUSTEP_FRAMEWORKS_FLAGS): Add missing close paren.

	* clean_os.sh: Add netbsd1.6Z

	* Documentation/GNUmakefile (GNUSTEP_TEXI2HTML_FLAGS): Add.
	* Documentation/gnustep.init: Some updates.
	* Documentation/announce.texi: Fix bug url.
	* Documentation/gnustep-howto.texi: Add more dependancy explanations.
	* Documentation/machines.texi: Add FreeBSD 5.x.

2004-04-02  David Ayers  <d.ayers@inode.at>

	* GNUstep-reset.sh: Unset DYLD_LIBRARY_PATH and	
	DYLD_FRAMEWORK_PATH.
	* common.make: Mark as makefile for emacs.  Add support for
	setting GNUSTEP_FRAMEWORKS_DIRS and GNUSTEP_FRAMEWORKS_FLAGS 
	for apple-apple-apple.
	* ld_lib_path.(c)sh: Set DYLD_FRAMEWORK_PATH for
	apple-apple-apple.
	* rules.make: Added support for GNUSTEP_FRAMEWORKS_FLAGS.
	
Wed Mar 31 11:46:03 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* Instance/bundle.make: Use ALL_LDFLAGS when running DLLWRAP on
	windows.
	* Instance/framework.make: Similar change.
	* Instance/palette.make: Similar change.

Wed Mar 31 11:44:21 2004  Willem Rein Oudshoorn <woudshoo@xs4all.nl>
	
	* Instance/library.make: Use ALL_LDFLAGS when running DLLWRAP on
	windows.

2004-03-31 Richard Frith-Macdonald <rfm@gnu.org>

	* Instance/Documentation/autogsdoc.make: Make doc subdirectory if
	necessary.

2004-03-31 Richard Frith-Macdonald <rfm@gnu.org>

	* jni.make: Add support for MacOS-X ... use the java 1.3.1 headers
	fromt the JavaVM framework.

Tue Mar 30 02:44:21 2004  Nicola Pero <n.pero@mi.flashnet.it>
	
	* Documentation/filesystem.texi: Clarify the differences between
	the Local domain and System domain, clearly state that the default
	installation directory of software should be the Local domain, and
	mention that the Network domain is now optional and disabled by
	default.  Other minor clarifications and tidyups.

Tue Mar 30 02:01:59 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* Documentation/make.texi (PACKAGE_NAME, PACKAGE_VERSION): Updated
	documentation.

Mon Mar 29 12:58:34 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* common.make (MAJOR_VERSION): Variable removed.
	(MINOR_VERSION): Variable removed.
	(SUBMINOR_VERSION): Variable removed.
	(VERSION): Variable removed.
	* Instance/framework.make (VERSION): Set VERSION from xxx_VERSION
	if available.  Use 0.0.1 as default.
	* Instance/library.make (VERSION): Similar changes.
	
Mon Mar 29 12:41:58 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* Master/rules.make (PACKAGE_NAME): Set it here; set it to
	unnamed-package if not set.
	(PACKAGE_VERSION): Set it to 0.0.1 if not set.
	* Master/source-distribution.make (PACKAGE_NAME): Do not set it
	here.
	
Mon Mar 29 12:19:38 2004  Nicola Pero <n.pero@mi.flashnet.it>

	* Version: Do not define VERSION.

Mon Mar 29 12:19:38 2004  Matt Rice <ratmice@yahoo.com>

	* Master/source-distribution.make: Strip whitespaces from
	PACKAGE_NAME.

2004-03-28 Richard Frith-Macdonald <rfm@gnu.org>

	* Instance/Documentation/autogsdoc.make: Correct dependency
	information so that documentation is regenerated when needed.

2004-03-28  David Ayers  <d.ayers@inode.at>

	* Documentation/make.texi: Document native-library.make.
	Capitalize acronyms.

2004-03-23  David Ayers  <d.ayers@inode.at>

	* Documentation/make.texi: Spelling fixes.

Thu Mar 18 12:57:40 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Documentation/GNUmakefile: New file using standard gnustep-make
	to build the documentation.  If there is no available gnustep-make
	installation, it creates a local/temporary one, and uses it.
	* Documentation/GNUmakefile.in: Removed.
	* Documentation/makerules.make: Removed.
	* Documentation/makedoc.make: Removed.
	* configure.ac: Do not generate Documentation/GNUmakefile.
	* configure: Regenerated.
	
2004-03-17  Adam Fedor  <fedor@gnu.org>

	* Instance/palette.make: Link palatte to all libs on Windows
	and Apple/two-level-namespaces. Similar to bundles.
	(patch from Marc Ordinas i Llopis <lists@tragnarion.com>).

Mon Mar 15 13:57:50 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in: Fixed installation of strip_makefiles.sh when
	using a different build directory.

Thu Mar 11 18:36:59 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/gswapp.make: Rewritten to use the new
	Instance/Shared/bundle.make, so that for example subprojects with
	resources now should be possible.

Thu Mar 11 02:26:20 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/gswapp.make: Do not create library_paths.openapp on
	Apple.  ($(GNUSTEP_INSTANCE).iconheader): Rule removed.
	
2004-03-09  Adam Fedor  <fedor@gnu.org>

	* Documentation/GNUMakefile.in (GNUSTEP_TEXI2HTML_FLAGS): Add
	init_file flag

	* Documentation/README.MinGW: Update library locations.

Tue Mar  9 17:28:37 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Make by default GNUSTEP_NETWORK_ROOT the same as
	GNUSTEP_LOCAL_ROOT.  This has the effect of disabling
	GNUSTEP_NETWORK_ROOT by default, which is very rarely used - if
	ever, and simplifying paths and flags.
	* configure: Regenerated.

Tue Mar  9 17:25:16 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make (GNUSTEP_HEADERS_DIRS, GNUSTEP_LIBRARIES_DIRS,
	GNUSTEP_HEADER_FND_DIRS): Rewritten the code creating the list of
	-I and -L flags to pass to the compiler and linker so that if two
	GNUSTEP_XXX_ROOT are the same, the flags are added only once.

Tue Mar  9 17:21:34 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make: Removed stale debugging statement.

Tue Mar  9 17:05:38 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make (GNUSTEP_HEADERS_FND_DIRS): Only set these flags
	when libFoundation is used.  In the standard case, we no longer
	add the -Ixxx/Headers/gnustep/ flags.
	* library-combo.make (GNUSTEP_FND_DIR): Do not define.
	* rules.make (ALL_OBJCFLAGS): Removed GNUSTEP_HEADERS_FND_FLAG.
	(ALL_CFLAGS): Same change.
	
Tue Mar  9 16:58:50 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make (ALL_OBJCFLAGS): Removed GNUSTEP_HEADERS_GUI_FLAG,
	which is defined nowhere.
	(ALL_CFLAGS): Same change.
	
Mon Mar  8 13:52:43 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make ($(APP_FILE)): Do not create the
	library_paths.openapp file on Apple.

Mon Mar  8 13:20:38 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* openapp.in: On Apple, look for the executable in the new location.
	* debugapp.in: On Apple, look for the executable in the new
	location.  Also, removed obsolete nextstep support code.

2004-03-07  Adam Fedor  <fedor@gnu.org>

	* Documentation/machines.texi: Updates, add URL's for README's.

Sun Mar  7 15:22:37 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	Updated application and bundle file structure on Apple to the
	latest Apple conventions.
	* Instance/application.make (APP_FILE_NAME): On Apple, create it
	as xxx.app/Contents/MacOS/xxx.  ($(APP_FILE)): Put the
	library_paths.openapp file inside xxx.app/Contents.
	($(APP_DIR)/Contents/MacOS): New rule on Apple replacing the rule
	to create xxx.app (GNUSTEP_STAMP_DIR): On Apple, use
	xxx.app/Contents as directory in which to create the stamp.make
	file.  (internal-app-all_): On Apple, create the
	xxx.app/Contents/MacOS directory instead of xxx.app.
	* Instance/bundle.make (BUNDLE_FILE_NAME): On Apple, create it as
	xxx.bundle/Contents/MacOS/xxx. (build-bundle): On Apple, depend on
	creating the xxx.bundle/Contents/MacOS directory rather than the
	xxx.bundle/library-combo one.  (GNUSTEP_STAMP_DIR): On Apple, use
	xxx.bundle/Contents as directory for stamp.make.
	($(GNUSTEP_STAMP_DIR)): On Apple, updated rule for new setup.
	($(BUNDLE_DIR)/Contents/MacOS): New rule on Apple replacing the
	xxx.bundle/Contents one.
	
2004-03-4  Quentin Mathe  <qmathe@club-internet.fr>

	* Documentation/README.Darwin: Minor improvements.

Thu Mar  4 13:06:22 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (xxx_DEPLOY_WITH_CURRENT_VERSION):
	Variable renamed to xxx_MAKE_CURRENT_VERSION.
	(update-current-symlink): New optional rule, executed only if
	MAKE_CURRENT_VERSION is yes, to create the symlink from Current to
	the current version.
	(build-framework-dirs): Moved code into the new rule.
	(xxx.framework/xxx): On Apple, build the symlink xxx.framework/xxx
	to the current instance only when MAKE_CURRENT_VERSION is yes.
	
Thu Mar  4 12:09:27 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (SOVERSION): Variable removed, replaced
	with INTERFACE_VERSION.  Made xxx_INTERFACE_VERSION available for
	frameworks too exactly as it happens for libraries.

Thu Mar  4 11:36:41 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make (INTERFACE_VERSION): New variable.
	xxx_SOVERSION has been renamed to xxx_INTERFACE_VERSION, which
	will be used consistently by frameworks too, and not only for the
	.so names.  Backwards compatibility code for xxx_SOVERSION
	included.
	
Thu Mar  4 10:41:21 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/bundle.make (internal-bundle-copy_into_dir): New rule.
	(.PHONY): Added internal-bundle-copy_into_dir.
	* Instance/palette.make (internal-palette-copy_into_dir): New
	rule.  (.PHONY): Added internal-palette-copy_into_dir.
	* Instance/service.make (internal-service-copy_into_dir): New
	rule.  (.PHONY): Added internal-service-copy_into_dir.	
	
2004-02-28  Adam Fedor  <fedor@gnu.org>

	* Version 1.9.1
	* Documentation/announce.texi, readme.texi, install.texi, news.texi:
	Update.

2004-02-28  Quentin Mathe  <qmathe@club-internet.fr>

	* Documentation/README.Darwin: Update with the detailed and
	complete installation process on Mac OS X And Darwin (with the
	help of Nicolas Roard).

2004-02-23  Adam Fedor  <fedor@gnu.org>

	* user_home.c (main): Fix check for space in home dir, issue
	warning if space found (Suggestion from Sheldon Gill).

Wed Feb 18 16:57:46 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Removed --enable-import / --disable-import option.
	* common.make (OBJCFLAGS): Do not add OBJC_NO_IMPORT.
	* config.make.in (OBJC_NO_IMPORT): Removed.
	* configure: Regenerated.
	* Documentation/userfaq.texi: Removed mention of --enable-import.
	
2004-02-11  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.Darwin: Update (from Lars Sonchocky-Helldorf). 

	* Documentation/GNUMakefile (GNUSTEP_TEXI2HTML_FLAGS): Add init_file
	flag
	* Documentation/gnustep.init: texi2html init file.

2004-02-07  Adam Fedor  <fedor@gnu.org>

	* Instance/framework.make: Simplify search for framework location
	and change order to prevent problems in obscure case where GNUstep
	is installed in user's home.

	* Documentation/machines.texi (cygwin): Update link.

2004-01-25  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.Darwin: Update.

2004-01-21  Adam Fedor  <fedor@gnu.org>

	* clean_os.sh: Add darwin7
	* target.make (darwin/SHARED_LD_PREFLAGS): Remove -arch_only. Add
	-single_module on darwin7
	(darwin/DYLIB_EXTRA_FLAGS): Idem.
	* Documentation/README.Darwin: New file.

2004-01-18  Adam Fedor  <fedor@gnu.org>

	* Documentation/gnustep-howto.texi: Add gui image libs.
	* Documentation/install.texi: Update info on #import.
	* Documentation/userfaq.texi: Idem.
	* Documentation/machines.texi: Update Darwin compiler.

Fri Jan 16 17:01:55 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/bundle.make: Recognize xxx_INSTALL_DIR and use it if
	set.
	* Instance/clibrary.make: Same change.
	* Instance/ctool.make: Same change.
	* Instance/framework.make: Same change.
	* Instance/gswbundle.make: Same change.
	* Instance/java.make: Same change.
	* Instance/library.make: Same change.
	* Instance/objc.make: Same change.
	* Instance/palette.make: Same change.
	* Instance/service.make: Same change.
	* Instance/tool.make: Same change.

2004-01-15  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add check for Apple cc
	* config.make.in: Add CC_TYPE
	* target.make (darwin): Use it instead of OBJC_COMPILER.

	* Documentation/machines.texi: Update

Wed Jan 14 18:59:25 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/rpm.make: Use PACKAGE_VERSION instead of VERSION.
	* Master/source-distribution.make: Use PACKAGE_VERSION instead of
	VERSION.

	* Master/rules.make: Set PACKAGE_VERSION from VERSION if
	PACKAGE_VERSION is not set, for backwards compatibility.
	
Mon Jan 12 12:45:56 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make: If a framework is being compiled with shared=no,
	print a warning and use shared=yes instead.

Mon Jan 12 11:47:00 2004  Jeff Teunissen <deek@d2dc.net>,
	                  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (SHARED_LIB_LINK_CMD, AFTER_INSTALL_SHARED_LIB_CMD):
	Do not remove LIB_LINK_SONAME_FILE and do not create the symlink
	LIB_LINK_SONAME_FILE --> LIB_LINK_VERSION_FILE if
	LIB_LINK_SONAME_FILE and LIB_LINK_VERSION_FILE are equal, which
	happens for example if you use 'A' as version.

2004-01-05  David Ayers  <d.ayers@inode.at>

	* Instance/framework.make (internal-framework-uninstall_):
	Remove symlinks in $(GNUSTEP_LIBRARIES).

Mon Jan  5 00:33:00 2004  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (build-framework-dirs): Replaced test -L
	with test -h because test -L does not work on some old Sun Solaris.

2003-12-29  Adam Fedor  <fedor@gnu.org>

	* Documentation/gnustep-howto.texi: Update.
	* Documentation/machines.texi: Idem.

Fri Dec 26 17:40:23 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* debugapp.in: Iterate over command line arguments to be able to
	process more than one of them at the same time.  Added
	--gdb=... command line flag.  Documented it.

2003-11-3- Richard Frith-Macdonald <rfm@gnu.org>

	* user_home.c: Use name of current user under unix (rather than
	environment variables etc).

Fri Nov 28 19:07:11 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make (ADDITIONAL_OBJC_LIBS): Fixed bug in the
	implementation of ADDITIONAL_NATIVE_LIBS on gnu.

Tue Nov 25 12:23:20 2003  Manuel Guesdon <ml@orange-concept.com>

	* Instance/Shared/bundle.make
	(shared-instance-bundle-all-localized-webresources): Fixed syntax
	error.

2003-11-13  David Ayers  <d.ayers@inode.at>

	* Instance/framework.make: Remove symlink.

Sat Nov  8 22:41:03 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make: Use $(ALL_LDFLAGS) when linking shared stuff.
	Otherwise there is no way to add linker flags when libraries and
	frameworks are linked.  Change applied to all shared link commands
	on all platforms.

Sat Nov  8 16:40:59 2003  Matt Rice <ratmice@yahoo.com>

	* Documentation/DESIGN: Updated makefiles location.
	* Documentation/README.MinGW: Updated makefiles location.  Added
	comment on buggy 'ln -s' on mingw.
	* Documentation/README.Cygwin: Updated makefiles location.
	* Documentation/README.NetBSD: Updated makefiles location.
	* Documentation/install.texi: Updated makefiles location.
	* Documentation/machines.texi: Updated makefiles location.
	* Documentation/make.texi: Updated makefiles location, use
	GNUSTEP_MAKEFILES variable.
	
Mon Nov  3 23:48:41 2003  Marcus Muller <znek@mulle-kybernetik.com>

	* target.make (SHARED_LIB_LINK_CMD): Use -prebind flag on Apple.
	* Instance/framework.make (DYLIB_INSTALL_NAME_BASE): New variable.
	(LIB_LINK_INSTALL_NAME): Define using DYLIB_INSTALL_NAME_BASE if
	it was set.

Mon Nov  3 23:34:56 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make (ADDITIONAL_INCLUDE_DIRS): Do not add -framework
	flags from ADDITIONAL_NATIVE_LIBS.

Mon Nov  3 23:30:47 2003  Marcus Muller <znek@mulle-kybernetik.com>

	* library-combo.make (INTERNAL_OBJCFLAGS): Do not add -framework
	Foundation and -framework AppKit for Apple.

Mon Nov  3 23:25:07 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (build-framework): Do not build
	Info-gnustep.plist on Apple.

Mon Nov  3 11:50:30 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (FRAMEWORK_LIBRARY_FILE_EXT): Unused
	variable removed.
	* Instance/framework.make (FRAMEWORK_FILE_EXT): Unused variable
	removed.
	
Fri Oct 31 17:16:51 2003  Matt Rice <ratmice@yahoo.com>

	* config.make.in (HAS_LN_S): Set to no for mingw32. 

2003-10-25 00:50  Alexander Malmberg <alexander@malmberg.org>

	* debugapp.in: Only pass --args to gdb if its new enough to handle
	it. Based on patch from Ian Jones.

Fri Oct 24 15:54:41 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Documentation/texi.make (internal-doc-clean): Remove
	$(GNUSTEP_INSTANCE).html.

2003-10-20  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add 2.57 prereq, subst OBJCFLAGS
	* config.make.in (OBJCFLAGS): New

Mon Oct 20 15:02:22 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* cpu.sh: Simplified code by removing unused echo command.
	* os.sh: Same change.
	* vendor.sh: Same change.

Mon Oct 20 14:49:03 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (internal-framework-distclean): Delete
	from GNUSTEP_BUILD_DIR.

Mon Oct 20 14:44:57 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	Write the list of classes belonging to a framework into the
	framework's Info-gnustep.plist too.
	* Instance/framework.make (DUMMY_FRAMEWORK_CLASS_LIST): New
	variable.
	($(DUMMY_FRAMEWORK_FILE)): Build a classarray list of classes in
	the framework, and store it in $DUMMY_FRAMEWORK_CLASS_LIST.
	(Info-gnustep.plist): Add a Classes key/value.  Depend on
	DUMMY_FRAMEWORK_FILE.
	
2003-10-19  Adam Fedor  <fedor@gnu.org>

	* Documentation/gnustep-howto.texi: Updates, clearer instructions.
	* Documenation/machines.texi, Documentation/userfaq.texi: Idem.

Sun Oct 19 16:09:46 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* native-library.make: New file.
	* GNUmakefile.in: Install native-library.make.
	* Instance/rules.make (ADDITIONAL_NATIVE_LIBS): Set from
	xxx_NATIVE_LIBS.	
	* rules.make: Implemented ADDITIONAL_NATIVE_LIBS.

Sun Oct 19 15:43:50 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make (LIBRARY_NAME_WITH_LIB): New variable.
	Use it in place of GNUSTEP_INSTANCE whenever lib{library-name} is
	expected.  With this change, LIBRARY_NAME can now include or not
	the 'lib' prefix, and everything should work in both cases.
	
Wed Oct 15 17:02:30 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/tool.make (internal-distclean): Fixed typo causing it not
	to work.
	* Master/test-tool.make (internal-distclean): Same change.

Wed Oct 15 10:55:58 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure: Regenerated using autoconf 2.57 instead of 2.53.

2003-10-14  Adam Fedor  <fedor@gnu.org>

	* common.make: Simplify common GNUstep dirs.

Tue Oct 14 01:07:22 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	Implemented support for building in a build directory outside the
	source tree.  Not supported for Java and doc yet.
	* common.make (GNUSTEP_BUILD_DIR): New variable.
	(GNUSTEP_OBJ_DIR_NAME): New variable.
	(GNUSTEP_OBJ_DIR): Define using GNUSTEP_BUILD_DIR.
	* rules.make (DERIVED_SOURCES_DIR): New variable.
	(DERIVED_SOURCES_HEADERS_FLAG): Check using
	OWNING_PROJECT_HEADER_DIR_NAME instead of
	OWNING_PROJECT_HEADER_DIR.
	($(GNUSTEP_BUILD_DIR)): New rule to create GNUSTEP_BUILD_DIR.
	($(GNUSTEP_OBJ_DIR)): Modified the rule to create
	GNUSTEP_OBJ_DIR_NAME inside GNUSTEP_BUILD_DIR.
	* Master/aggregate.make: Pass GNUSTEP_BUILD_DIR to submake
	invocations.	
	* Master/rules.make (all): Depend on creating GNUSTEP_BUILD_DIR
	if any is specified.	
	(ABS_GNUSTEP_BUILD_DIR): New variable - compute if needed.
	(%.variables, %.subprojects): Pass GNUSTEP_BUILD_DIR to submake
	invocations; pass OWNING_PROJECT_DIR_NAME rather than
	OWNING_PROJECT_DIR to submake invocations.
	* Master/application.make: Modified all clean targets to clean
	in GNUSTEP_BUILD_DIR.
	* Master/bundle.make: The same.
	* Master/clibrary.make: The same.
	* Master/ctool.make: The same.
	* Master/gswapp.make: The same.
	* Master/gswbundle.make: The same.
	* Master/library.make: The same.
	* Master/objc.make: The same.
	* Master/palette.make: The same.
	* Master/rules.make: The same. 
	* Master/service.make: The same.
	* Master/subproject.make: The same.
	* Master/test-application.make: The same.
	* Master/test-library.make: The same.
	* Master/test-tool.make: The same.
	* Master/tool.make: The same.
	* Instance/application.make: Modified all code as required to
	implement the new functionality.
	* Instance/bundle.make: The same.
	* Instance/framework.make: The same.
	* Instance/gswapp.make: The same.
	* Instance/gswbundle.make: The same.
	* Instance/library.make: The same.
	* Instance/palette.make: The same.
	* Instance/rules.make: The same.
	* Instance/service.make: The same.
	* Instance/Shared/bundle.make: The same.
	
Tue Oct 14 00:34:57 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make (DERIVED_SOURCES): Do not define here;
	it's already defined in rules.make.

Mon Oct 13 23:23:40 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/bundle.make (internal-bundle-install_): Fixed error
	when installing with strip=yes a bundle without object file.

Mon Oct 13 15:53:43 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Added configure option --enable-strip-makefiles;
	substitute @GNUSTEP_STRIP_MAKEFILES@ in output.
	* configure: Regenerated.
	* GNUmakefile.in (install): Install strip_makefiles.sh; 
	execute it if --enable-strip-makefiles.
	* strip_makefiles.sh: New file.
	
Mon Oct 13 15:07:53 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Shared/java.make (.PHONY): Removed line continuation in
	excess.

Mon Oct 13 13:56:00 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/palette.make: Tidied up the way in which code was
	commented.

Mon Oct 13 13:09:53 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/application.make (internal-clean): Do the entire
	clean in a single shell command.
	* Master/gswapp.make (internal-clean): Same change.
	* Master/palette.make (internal-clean): Same change.
	* Master/service.make (internal-clean): Same change.
	* Master/test-application.make (internal-clean): Same change.
	
Mon Oct 13 12:55:50 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/application.make (internal-distclean): Do not remove
	.iconheader files, no longer used.
	* Master/gswapp.make (internal-clean, internal-distclean): Do not
	remove .iconheader files.
	(internal-clean): Obsolete code removed.
	* Master/service.make (internal-clean): Same changes.
	* Master/test-application.make (internal-clean,
	internal-disclean): Same changes.
	* Instance/gswapp.make: Removed obsolete iconheader code.
	
Mon Oct 13 12:25:50 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/palette.make (internal-clean): Remove objects inside
	.palette on clean.
	(internal-distclean): Remove *.palette and similar on distclean
	without performing a recursive make invocation.
	* Instance/palette.make (internal-palette-distclean_): Removed.
	
	* Master/service.make (internal-distclean): Remove *.service and
	similar on distclean without performing a recursive make
	invocation.
	* Instance/service.make (internal-service-distclean_): Removed.
	
Sun Oct 12 18:43:20 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/subproject.make (internal-subproject-clean): Fixed typo
	- it was removing non-existing DLL_DEF_IMP instead of DLL_DEF_INP.

Sun Oct 12 18:29:49 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/palette.make: Use Instance/Shared/bundle.make to
	install and uninstall.
	* Instance/service.make: Same changes.
	
Sun Oct 12 13:09:12 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make ($(GNUSTEP_OBJ_DIR)): Use ECHO_NOTHING.

2003-10-09  Adam Fedor  <fedor@gnu.org>

	* Correct problem where *bsd lib flags were not getting used.
	* configure.ac: Use LIB_DIR not LDFLAGS
	* config.make.in (CONFIG_SYSTEM_LIB_DIR): New var for LIB_DIRs
	* library-combo.make (SYSTEM_LIB_DIR): Use it.

2003-10-05  Adam Fedor  <fedor@gnu.org>

	* Version: Bump to 1.8.90

2003-10-04  Adam Fedor  <fedor@gnu.org>

	* GNUmakefile.in (dist): Remove
	* Documentation/machines.texi: Doc updates.
	* Documentation/faq.texi, Documentattion/userfaq.texi: Idem.

2003-09-29  Adam Fedor  <fedor@gnu.org>

	* Simplify use of user-defined flags.
	* configure.ac: USE LDFLAGS not LIBS. Leave CPPFLAGS alone
	* common.make (INTERNAL_LDFLAGS): Don't add LDFLAGS
	* library-combo.make (SYSTEM_LDFLAGS): Add LDFLAGS.
	* config.make.in (CONFIG_SYSTEM_DEFS): Remove.

	* Documentation/faq.texi: Update answers.

2003-09-27  Adam Fedor  <fedor@gnu.org>

	* target.make (darwin/BUNDLE_LDFLAGS): Supress warnings
	* Documentation/machines.texi: Update darwin.

2003-09-26  Adam Fedor  <fedor@gnu.org>

	* Version 1.8.0 released on branch.

2003-09-25  Adam Fedor  <fedor@gnu.org>

	* target.make (darwin): Fix up bundle flags for GNU compiler.

2003-09-19  Leigh Smith  <leigh@leighsmith.com> 

        * library.make: Changed the full .inp declaration to $(DLL_DEF_INP). 

2003-09-15  Adam Fedor  <fedor@gnu.org>

	* Version: Add VERSION
	* gnustep-make.spec.in: Update packager.

Sun Sep  7 12:43:59 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* config.site: Fixed Headers directory, it is now in Library/.

Wed Sep  3 10:29:26 2003  Matt Rice <ratmice@yahoo.com>,
                          Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/library.make: Removed ADDITIONAL_INSTALL_DIRS code.
	* Instance/rules.make: Implemented support for
	ADDITIONAL_INSTALL_DIRS.
	* common.make (GNUSTEP_APPLICATION_SUPPORT): New variable.
	
2003-08-23  Adam Fedor  <fedor@gnu.org>

	* Version 1.7.3

2003-08-22  Adam Fedor  <fedor@gnu.org>

	* configure.ac: On netbsd, Use -Wl to pass linker options.

2003-08-05  Martin Brecher <martin@mb-itconsulting.com>
        * Documentation/openapp.1: New file.
        * Documentation/GNUstep.7: Updated. File is now unprocessed.

2003-08-07 Richard Frith-Macdonald <rfm@gnu.org>

	* Instance/Documentation/autogsdoc.make: Rewrite dependency rules
	to avoid regeneration of documentation when we are going to clean.
	Also, use autogsdoc -Clean argument to get all files.

Wed Jul 30 09:52:16 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (BUNDLE_LDFLAGS): openbsd: use -fPIC instead of
	-fpic to match the -fPIC flag used when compiling as recommended
	by the gcc manual.

Tue Jul 29 12:06:02 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: If flattened, add library combo to headers
	directory.
	* configure: Regenerated.
	* config.site (includedir): If flattened, add library combo.
	* GNUmakefile.in (MAYBE_LIBRARY_COMBO): Define.
	Export GNUSTEP_TARGET_DIR, GNUSTEP_TARGET_LDIR and
	MAYBE_LIBRARY_COMBO.
	* create_domain_dir_tree.sh: Use MAYBE_LIBRARY_COMBO when creating
	the headers dir.
	* common.make (GNUSTEP_HEADERS): Define using library combo if
	not flattened.
	(GNUSTEP_HEADERS_DIRS): Use library combo if not flattened.

Mon Jul 28 11:49:18 2003  Pete French <pete@twisted.org.uk>

	* Instance/application.make (MAIN_MARKUP_FILE): New variable.
	* Instance/application.make (GNUSTEP_STAMP_STRING): Include
	MAIN_MARKUP_FILE in the stamp string.
	* Instance/application.make ($(APP_INFO_PLIST_FILE)): Set
	GSMarkupMainFile to MAIN_MARKUP_FILE in the info dictionary.

Mon Jul 28 10:59:21 2003  Pete French <pete@twisted.org.uk>

	* rules.make (%.plist): Filter the result through sed to drop #pragma
	statements.

2003-07-23 Richard Frith-Macdonald <rfm@gnu.org>

	* Instance/Documentation/autogsdoc.make: put stamp file in
	documentation subdirectory so it gets removed properly with 'clean'

2003-07-22  Adam Fedor  <fedor@gnu.org>

	* Version 1.7.2

2003-07-22 Richard Frith-Macdonald <rfm@gnu.org>

	* user_home.c: Use HOMEPATH in preference to USERPROFILE for
	OPENSTEP compatibility and because USERPROFILE generally doesn't
	work due to the presence of spaces.
	* messages.make: Make documentation generation less verbose.
	* Instance/Documentation/autogsdoc.make: ditto
	Also use autogsdoc -MakeDependencies to avoid unnecessary
	regeneration of documentation.

2003-07-21  Adam Fedor  <fedor@gnu.org>

	* target.make: Set thread library in AUXILIARY_OBJC_LIBS. Set
        reentrant flags for all targets if threaded. Remove duplicates.


	* Documentation/README.MinGW: Updated for default flattened
	structure.
	* Documentation/gnustep-howto.texi: Idem.
	
Mon Jul 21 10:42:42 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* debugapp.in: Detect core files with name core.xxx, not just
	core, as found on some gnu-linux systems.  Improved user
	prompting.

Mon Jul 21 10:31:08 2003  Andrew Ruder <aeruder@ksu.edu>

	* debugapp.in: Pass debugapp arguments to gdb to use when running
	the application.

Wed Jul 16 09:46:16 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (INTERNAL_OBJCFLAGS): On darwin with library-combo
	apple-apple-apple, use -no-cpp-precomp rather than
	-traditional-cpp.

Wed Jul  9 16:28:14 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Made flattened directory structure the default.
	Explicitly print a message saying if we use flattened or
	non-flattened directory structure.
	* configure: Regenerated.
	
2003-07-06  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Remove '^' match from gcc version sed script.

2003-07-05  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add flags for openbsd like freebsd.

2003-07-05  Adam Fedor  <fedor@gnu.org>

	* Documentation/GNUmakefile.in (after-install): gzip man files
	* Documentation/GNUstep.7: Unziped.

2003-07-05  Adam Fedor  <fedor@gnu.org>

	* clean_os.sh: Clean netbsdelf.
	* configure.ac: Add -R flags for netbsdelf
	* target.make (netbsd/ADDITONAL_LDFLAGS): Idem.
	(Patches from Peter Cooper <comrade@obverse.com.au>

2003-06-29 Richard Frith-Macdonald <rfm@gnu.org>

	* user_home.c: Cast all arguments to isspace() as int ... for picky
	compiler versions.

2003-06-25  Adam Fedor  <fedor@gnu.org>

	* Documentation/GNUmakefile.in (after-install): Install man pages
	* Documentation/GNUstep.7.gz: New file (from Martin Brecher).

Wed Jun 25 15:47:46 2003  Tom Koelman <tkoelman@xs4all.nl>

	* Instance/subproject.make (subproject.def): Depend on DLL_DEF_INP.

2003-06-21  Adam Fedor  <fedor@gnu.org>

	* Instance/Documentation/autogsdoc.make: If not BASE_MAKE_LOADED
	print a better error message about needing to install GNUstep-base
	first.

2003-06-20  Adam Fedor  <fedor@gnu.org>

	* Version 1.7.1

2003-06-18  Adam Fedor  <fedor@gnu.org>

	* target.make (openbsd): Enable shared libs, use -fPIC not -fpic.

2003-06-17  Adam Fedor  <fedor@gnu.org>

	* Instance/Documentation/texi.make: Don't abort make if
	texi programs aren't available. Don't install if files not made.

2003-06-16  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Add option to disable moving obsolete dirs
	* GNUmakefile.in: Update for change.

2003-06-15  Adam Fedor  <fedor@gnu.org>

	* target.make (openbsd/SHARED_LIB_LINK_CMD): Use gcc to link
	the library.

2003-06-11  Adam Fedor  <fedor@gnu.org>

	* move_obsolete_paths.sh: Don't remove the Developer dir.

2003-06-06  Adam Fedor  <fedor@gnu.org>

	* target.make (openbsd/OBJ_MERGE_CMD): Add.

2003-06-05  Adam Fedor  <fedor@gnu.org>

	* config_thread.m: More complete thread test.
	* configure.ac: Add runtime based on RUNTIME_LIB

2003-06-03  Adam Fedor  <fedor@gnu.org>

	* target.make (darwin/BUNDLE_LD): Use libtool
	(darwin/AFTER_INSTALL_SHARED_LIB_CMD): Link to the LIB_LINK_FILE
	as well.

Tue Jun  3 11:51:02 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Documentation/autogsdoc.make (internal-doc-install_):
	Fixed typo - added missing ";".

2003-06-02 18:16  Alexander Malmberg <alexander@malmberg.org>

	* Instance/Documentation/autogsdoc.make (internal-doc-install_):
	Add a missing "\" line continuation.

	(internal-doc-uninstall_): Add an $(END_ECHO) to balance the
	echoing.

Mon Jun  2 10:21:11 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (install): Only create the symlink Makefiles -->
	Library/Makefiles if symbolic links are available.  (Problems
	reported by Matt Rice).

Sat May 31 09:13:07 2003  Matt Rice <ratmice@yahoo.com>, 
	                  David Ayers <d.ayers@inode.at>

	* Instance/gswapp.make (internal-gswapp-install_): Fixed typo:
	removed excess bracket.

Fri May 30 23:28:55 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make (OBJC_FLAGS): Added -fno-strict-aliasing.

2003-05-29  Adam Fedor  <fedor@gnu.org>

	* target.make (TARGET_SYSTEM_LIBS): Remove -ldl (added when necessary
	by gnustep-base).

Wed May 28 09:47:42 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make: Use test -r instead of test -f to check
	that a file, which might be a symlink, exists.
	* Instance/framework.make (internal-framework-install_): Always remove
	the old symlinks without checking.

Tue May 27 16:52:27 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Documentation/javadoc.make (internal-doc-install_): Fixed line breaking
	typo.

Tue May 27 13:21:57 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/objc.make: Remove old deprecation warning.
	* Instance/tool.make: The same.
	
Tue May 27 13:12:59 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make: Use ECHO_NOTHING in commands which
	were using @ or printing the command.
	* Instance/documentation.make: The same.
	* Instance/framework.make: The same.
	* Instance/gswapp.make: The same.
	* Instance/java-tool.make: The same.
	* Instance/library.make: The same.
	* Instance/palette.make: The same.	
	* Instance/resource-set.make: The same.
	* Instance/service.make: The same.
	* Instance/subproject.make: The same.	
	* Instance/Documentation/autogsdoc.make: The same.
	* Instance/Documentation/gsdoc.make: The same.
	* Instance/Documentation/javadoc.make: The same.
	* Instance/Documentation/latex.make: The same.
	* Instance/Documentation/texi.make: The same.	
	* Instance/Shared/java.make: The same.
	
	* Instance/ctool.make (internal-ctool-uninstall_): Use ECHO_UNINSTALLING.
	* Instance/document.make (internal-textdoc-uninstall_): The same.
	* Instance/framework.make (internal-framework-uninstall_): The same.
	* Instance/gswapp.make (internal-gswapp-uninstall_): The same.
	* Instance/gswbundle.make (internal-gswbundle-uninstall_): The same.
	* Instance/java-tool.make (internal-java_tool-uninstall_): The same.
	* Instance/library.make (internal-library-uninstall_): The same.
	* Instance/objc.make (internal-objc-uninstall_): The same.
	* Instance/service.make (internal-service-uninstall_): The same.
	* Instance/Documentation/autogsdoc.make (internal-doc-uninstall_): The same.	
	* Instance/Documentation/gsdoc.make (internal-doc-uninstall_): The same.
	* Instance/Documentation/install_files.make (internal-doc-uninstall_): The same.
	* Instance/Documentation/javadoc.make (internal-doc-uninstall_): The same.
	* Instance/Documentation/latex.make (internal-doc-uninstall_): The same.	
	
	* Instance/gswbundle.make (internal-gswbundle-install_): Use ECHO_INSTALLING.
	* Instance/Documentation/autogsdoc.make (internal-doc-install_): The same.
	* Instance/Documentation/gsdoc.make (internal-doc-install_): The same.
	* Instance/Documentation/install_files.make (internal-doc-install_): The same.
	* Instance/Documentation/javadoc.make (internal-doc-install_): The same.

	* Instance/gswapp.make: Use ECHO_CREATING when building the
	various files.
	* Instance/subproject.make: Use ECHO_CREATING when building the
	DLL_DEF_INP file.
	
Tue May 27 12:04:38 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* messages.make (ECHO_CHOWNING, ECHO_STRIPPING): New variables.
	
	* Instance/service.make (internal-service-install_): 
	* Instance/application.make: Use them.
	* Instance/bundle.make: Use them.
	* Instance/framework.make: Use them.	
	* Instance/gswapp.make: Use them.	
	* Instance/gswbundle.make: Use them.
	* Instance/java-tool.make: Use them.
	* Instance/palette.make: Use them.	
	* Instance/service.make: Use them.
	* Instance/Shared/bundle.make: Use them.
	* Instance/Documentation/autogsdoc.make: Use them.
	* Instance/Documentation/javadoc.make: Use them.
	
Tue May 27 11:45:41 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (build-framework-dirs): Merge contiguous
	commands into single subshell.
	
Tue May 27 11:36:06 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make: Use ECHO_CREATING when building the
	.plist files.
	* Instance/bundle.make: Same
	* Instance/framework.make: Same.
	* Instance/gswbundle.make: Same.
	* Instance/palette.make: Same.
	* Instance/service.make: Same.

	* Instance/application.make: Use ECHO_CREATING when building the
	.desktop file.
	* Instance/framework.make ($(DUMMY_FRAMEWORK_FILE)): Use
	ECHO_CREATING when building the internal framework class file.
	
Tue May 27 11:22:44 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make: Use ECHO_CREATING when running MKDIRS
	or MKINSTALLDIRS.
	* Instance/bundle.make: The same.
	* Instance/ctool.make: The same.
	* Instance/documentation.make: The same.
	* Instance/framework.make: The same.
	* Instance/gswapp.make: The same.
	* Instance/gsbundle.make: The same.
	* Instance/library.make: The same.
	* Instance/objc.make: The same.
	* Instance/palette.make: The same.
	* Instance/resource-set.make: The same.
	* Instance/rules.make: The same.
	* Instance/service.make: The same.
	* Instance/subproject.make: The same.
	* Instance/test-library.make: The same.
	* Instance/tool.make: The same.
	* Instance/Documentation/autogsdoc.make: The same.
	* Instance/Documentation/texi.make: The same.
	
	* Instance/gswapp.make (internal-gswapp-install_): Use ECHO_INSTALLING.

Tue May 27 11:08:52 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* messages.make (ECHO_UNINSTALLING): New variable.
	(ECHO_PREPROCESSING): Added missing definition in case
	messages=yes.
	
Tue May 27 11:00:59 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* messages.make (ECHO_CREATING, ECHO_NOTHING): New variables.
	* Instance/Shared/bundle.make: Use them.
	* Instance/Shared/headers.make: Same.
	* Instance/Shared/java.make: Same.
	* Instance/Shared/stamp-string.make: Same.
	
Tue May 27 10:54:36 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/ctool.make: Old deprecation warning removed.
	
Tue May 27 10:02:46 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* relative_path.sh: Added code to normalize input paths by
	removing /./ components before using them.

2003-05-19  Adam Fedor  <fedor@gnu.org>

	* Version 1.7.0
	* Documentation/news.texi: Updated

	* configure.ac: On some systems, check for thread libraries
	in different order.

Thu May 15 10:30:55 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (generated-files): Added fixpath.sh.
	(fixpath.sh): New rule.
	
Wed May 14 16:19:02 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* transform_paths.sh: Quote paths.

Wed May 14 16:15:16 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* debugapp.in: Added more strict quoting of paths everywhere.
	* executable.template.in: Idem.
	* openapp.in: Idem.
	* opentool.in: Idem.

Fri May  9 12:22:24 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Documentation/install.texi (Flat Structure): Fixed typo.
	(Reported by Lele Gaifax <lele@seldati.it>).

Tue May  6 11:30:19 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Shared/bundle.make (shared-instance-bundle-all):
	Reverted last change for resource files, but not localized
	resource files.

Mon May  5 00:52:20 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed
	copying resource files and localized resource files into the
	bundle when they are in subdirs.

2003-05-02  Adam Fedor  <fedor@gnu.org>

	* common.make (GNUSTEP_PALLETES): Put in ApplicationSupport/Palettes
	* move_obsolete_paths.sh: Remove Developer dir.
	* Documentat/GNUmakefile.in: Install docs in Library/Documentation

2003-04-28  Nicola Pero  <nicola@nicola.brainstorm.co.uk>

	* Instance/resource-set.make (RESOURCE_FILES_FULL_INSTALL_DIR): Reverted
	last change.  This file is of general use, not just for libraries.

2003-04-27  Adam Fedor  <fedor@gnu.org>

	* New filesystem structure.
	Use @MAKEFILE_SUFFIX@ instead of Makefiles.
	Replace $GNUSTEP_SYSTEM_ROOT/Makefiles with $GNUSTEP_MAKEFILES	
	Replace Libraries with Library/Libraries
	Replace Headers with Library/Headers
	Replace Documentation with Library/Documentation
	* GNUmakefile.in, GNustep.csh.in, common.make, config.site,
	debugapp.in, executable.template.in, gnustep-make.spec.in,
	java-executable.template, ld_lib_path.csh, ld_lib_path.sh,
	opentool.in, relative_path.sh, setlocaltz.sh,
	spec-debug-alone-rules.template, spec-debug-rules.template,
	spec-rules.template, target.make, which_lib.c, gswbundle.make,
	java.make, test-library.make: Idem.
	* configure.ac (MAKEFILES_SUFFIX): Define to Library/Makefiles
	* create_domain_dir_tree.sh: Add additional Library dirs.
	* resource-set.make (RESOURCE_FILES_FULL_INSTALL_DIR): Use
	$(GNUSTEP_RESOURCES), not $(GNUSTEP_INSTALLATION_DIR).
	* move_obsolete_paths.sh: New file used in installation

Fri Apr 25 17:02:55 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUstep.csh.in: Use the grep -v trick to make sure that
	GUILE_LOAD_PATH is not increased if the paths to add are already
	there in the variable.

	* ld_lib_path.csh: Similar change/fix for all paths.

2003-04-24  Adam Fedor  <fedor@gnu.org>

	* Documentation/filesystem.texi: Clarify Local installation
	rights, Remove Network/{Server,Users}.

Wed Apr 23 09:18:07 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* config.make.in (CPP): Added.  (GENERAL_CPP): Removed.
	* rules.make (ALL_CPLISTFLAGS): Added -x c -traditional.
	(%.plist): Use CPP, not GENERAL_CPP.

Tue Apr 22 16:11:14 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make (%.c): New rules to generate .c files from .l files
	using lex and from .y files using yacc.

Tue Apr 22 15:27:02 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUstep.csh.in: Quote all values of setenv, set, source calls.

Mon Apr 14 12:59:23 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	Implemented support for preprocessed Info.plists in applications.
	* config.make.in (GENERAL_CPP): New variable.
	* rules.make (ALL_CPLISTFLAGS): New flags.
	(%.plist): Added rule to generate %.plist from %.cplist by running
	the preprocessor.
	* messages.make (ECHO_PREPROCESSING): New message.
	* Instance/application.make: If xxx_PREPROCESS_INFO_PLIST is set
	to yes in the user makefile, automatically depend on
	xxxInfo.plist, which is then automatically generated from
	xxxInfo.cplist.	
	* Master/application.make (_PLIST_INFO_FILES): New variable.
	(internal-clean): Remove info plist files generated by the
	preprocessor.
	
Fri Apr 11 12:38:44 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (install): Bug fix - install fixpath.sh from the
	local directory, not from the source directory.

Sun Apr  6 02:25:07 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (install): Bug fix - install GNUstep-reset.sh
	from the source directory, not from the local directory.

Mon Mar 31 18:43:07 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (build-framework-dirs): Do not create
	the symlink from inside derived_src to the headers if there are no
	headers; remove the file before creating the symlink.
	
2003-03-23 Richard Frith-Macdonald <rfm@gnu.org>

	* Merged 1.6.0 branch changes in

Mon Mar 10 12:51:20 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* rules.make: Disable all built-in SUFFIXES and all built-in rules
	with a % target -- for performance.

Wed Feb 26 18:34:37 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make ($(APP_INFO_PLIST_FILE)): Implemented
	merging the xxxInfo.plist into Info.plist on Apple.  Use
	CFBundleIconFile, and not NSIcon, on Apple.  Quote full path of
	xxxInfo.plist file.

2003-03-17  Adam Fedor  <fedor@gnu.org>

	* Version: 1.6.0

2003-03-14  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Check for -lpthread on unknown hosts (e.g. irix)
	* target.make (darwin): Add -read_only_reolcs warning. 
	(darwin5): Remove
	* Documentation/machines.texi: Update Darwin.
	(suggestions from Carl Eugen Hoyos)

2003-03-13  Adam Fedor  <fedor@gnu.org>

	* clean_cpu.sh: Make all hppa variants the same.
	(suggestion from Matthias Klose)

2003-03-04  Adam Fedor  <fedor@gnu.org>

	* configure.ac: Change sense of --disable-import help line
	* configure: Regen.
	* Documentation/install.texi: Update import section
	* Documentation/userfaq.texi: Add import section.

Tue Mar  4 17:13:46 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: Enable GCC deprecation warnings for #import.
	* configure: Regenerated.
	
2003-03-03 iMartin Brecher <martin@mb-itconsulting.com>

	* Documentation/README.MinGW: Tidied
	Some modifiecations by rfm@gnu.org also ... mainly to change the
	order of build/install of libobjc and ffcall
 
2003-02-23 Richard Frith-Macdonald <rfm@gnu.org>

	* user_home.c: fix HOMEPATH and HOMEDRIVE handling for mingw to
	only use the drive if there isn't one in the path.

2003-02-17  Tom Koelman <tkoelman@xs4all.nl>

	* Documentation/README.MingW: Update URLs.

2003-02-16  Adam Fedor  <fedor@gnu.org>

	* Version: 1.5.2
	* Documentation/announce.texi, news.texi, install.texi: Update 

2003-02-14  Adam Fedor  <fedor@gnu.org>

	* target.make (Darwin/SHARED_LIBRARY_LINK_CMD): Include object files
	before library depends.

	* Documentation/gnustep-howto.texi, install.texi: Updates.

Mon Feb 10 13:42:54 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/source-distribution.make: Define a CVS variable, and use
	it in place of `cvs', so that it can be overridden with a
	different value (example: make cvs-snapshot CVS='runsocks cvs').

2003-02-06 Richard Frith-Macdonald <rfm@gnu.org>

	* Instance/subproject.make: Build dll exported symbols def file.
	Remove temporary def file on clean.
	* Instance/rules.make: Make list of subproject def files (thanks Nicola)
	* Instance/library.make: Use list of subproject def files to put
	symbols from subprojects into final dll output.

Wed Feb  5 04:07:05 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* library-combo.make (BUNDLE_LIBS): For apple library-combo,
	do not add -framework Foundation and -framework AppKit.
	* Instance/bundle.make: Link bundle to all libs on Apple so
	that it can be made to work with two-level namespaces.
	
Fri Jan 31 01:20:59 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* openapp.in: Added new option --find.  Calling 'openapp --find
	Ink' will search for the Ink application as usual, but then only
	print out the full path of the application instead of executing
	it.  Replaced `basename $0` with openapp in messages.  Do not talk
	of unimplemented --library-combo option in messages.

Thu Jan 30 17:32:37 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Documentation/gsdoc.make: Use autogsdoc, not gsdoc, to
	compile gsdoc files.  gsdoc is not even installed in the latest
	gnustep-base.

Sun Jan 26 04:54:09 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac: New --enable-multi-platform option, off by
	default.  Substitute GNUSTEP_MULTI_PLATFORM and target when
	processing .in files.
	* configure: Regenereated.
	* GNUstep.sh.in: If GNUSTEP_MULTI_PLATFORM is empty, use hardcoded
	GNUSTEP_HOST, GNUSTEP_HOST_OS, GNUSTEP_HOST_CPU,
	GNUSTEP_HOST_VENDOR as provided by configure.
	* GNUstep.csh.in: Idem.
	
Fri Jan 10 05:48:06 GMT 2003 Nicola Pero <n.pero@mi.flashnet.it>

	* target.make (INTERNAL_CFLAGS): On darwin, apple foundation, add
	-no-cpp-precomp.

2003-01-09 Richard Frith-Macdonald <rfm@gnu.org>

	* Documentation/README.MinGW: Updated for current cod, fixing a few
	errors.
	* user_home.c: Fixed typo.

2003-01-03 Richard Frith-Macdonald <rfm@gnu.org>

	* common.make: Don't use RUNTIME_FLAG for plain C code, just for ObjC

Fri Jan  3 01:57:46 2003  Nicola Pero  <n.pero@mi.flashnet.it>

	* create_domain_dir_tree.sh (mydir): Replaced dirname invocation
	with a sed trick.  Apparently dirname is not available on OpenStep
	(reported by Pete French <pete@twisted.org.uk>).

Tue Dec 31 16:10:49 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make: For darwin: link to LIB_LINK_SONAME_FILE, not to
	LIB_LINK_INSTALL_NAME, so that it works when building frameworks.

2002-12-30  Adam Fedor  <fedor@gnu.org>

	* ld_lib_path.sh: Use DYLD_LIBRARY_PATH on darwin
	* ld_lib_path.csh: Idem.
	* target.make (darwin): Don't set DYLIB_COMPATIBILITY_VERSION,
	set DYLIB_CURRENT_VERSION correctly, link to LIB_LINK_INSTALL_NAME.

Mon Dec 30 16:38:16 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	A new library-combo apple-apple-apple has been added, and made the
	default on Apple OSX systems.
	* library-combo.make (OBJC_RUNTIME): Variable removed, it's
	redundant with OBJC_RUNTIME_LIB.
	* target.make: Check OBJC_RUNTIME_LIB, not OBJC_RUNTIME.
	* common.make: For libFoundation, added backward compatibility
	fixup for header locations.
	* configure.ac: Map gnu library combo to gnu-gnu-gnu, nx library
	combo to nx-nx-nx, apple library combo to apple-apple-apple.  Use
	apple-apple-apple library-combo on darwin by default.  Use
	-DNeXT_RUNTIME for OBJC_RUNTIME_LIB = apple.  Print out a message
	that we are checking for the library-combo, and which one we
	choose.
	* configure: Regenerated.
	* common.make: To check that we are on an Apple system,
	check FOUNDATION_LIB against apple, not nx.
	* debugapp.in: Recognize apple library combo.
	* executable.template.in: Idem.
	* library-combo.make (RUNTIME_FLAG): For NeXT and Apple runtime,
	always set to -fnext-runtime, regardless of the value of
	OBJC_COMPILER, because OBJC_COMPILER is set in target.make, which
	is read after library-combo.make, so we can't use it here.
	* library-combo.make: Map apple library-combo to
	apple-apple-apple.  Added code for apple OBJC_RUNTIME_LIB,
	FOUNDATION_LIB and GUI_LIB, copied from the one for nx
	library-combo.
	* target.make: For darwin systems, replace all checks for 'nx'
	runtime and foundation lib with checks for 'apple'.
	* Instance/application.make: Apple code is now executed for
	'apple' runtime/foundation/gui lib, not 'nx'.  Removed checks for
	OBJC_COMPILER == NeXT; replace them with checks for FOUNDATION_LIB
	== apple.
	* Instance/bundle.make: Idem.
	* Instance/framework.make: Idem.
	* Instance/gswapp.make: idem.
	
Wed Dec 25 03:09:34 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make: Implemented support for Apple native
	bundle organization, and Apple Info.plist.

Wed Dec 25 03:04:42 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* target.make (DYLIB_INSTALL_NAME): Variable removed, replaced
	by LIB_LINK_INSTALL_NAME.
	* Instance/library.make (LIB_LINK_INSTALL_NAME): Define.
	* Instance/framework.make (LIB_LINK_INSTALL_NAME): Define.
	* Instance/framework.make: Do not build and link the dummy
	framework class on Apple.  On Apple, create the symbolic link
	xxx.framework/xxx --> the shared library.  Modified NSExecutable
	value on Apple.  New install code for Apple.
	
Wed Dec 25 02:53:19 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Master/application.make (internal-clean): Removed special code
	for OBJC_COMPILER = NeXT.

Fri Dec 20 17:27:16 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* library-combo.make (LIBRARIES_DEPEND_UPON, BUNDLE_LIBS): For nx
	foundation or gui, add necessary -framework flags.
	* target.make (DYLIB_INSTALL_NAME): For darwin, define using
	FINAL_LIBRARY_INSTALL_DIR rather than hardcoding
	GNUSTEP_SYSTEM_ROOT, so that it works no matter where a library is
	installed.
	
Fri Dec 20 16:21:40 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/tool.make (FINAL_TOOL_INSTALL_DIR): New variable;
	support it.  By setting this variable before including the
	makefile, you can fine control where you want the tool executable
	to be installed.

Sun Dec 15 16:22:13 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Shared/stamp-string.make: New file providing
	infrastructure for very efficient stamp string support.
	* GNUmakefile.in (INSTANCE_SHARED_MAKE_FILES): Added stamp-string.make
	* Instance/application.make: Use Instance/Shared/stamp-string.make
	to rebuild Info.plist and xxx.desktop iff there is a clear reason
	to do so.
	* Instance/bundle.make: Use Instance/Shared/stamp-string.make
	to make sure we rebuild the Info.plist whenever the make variables
	used in it change.

Sat Dec 14 02:42:02 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* library-combo.make: Quick attempt at fixing/updating
	foundation/appkit flags to compile with nx library-combo on Mac
	OSX.  Dropped NeXTstep iconheader code.
	* Instance/application.make: Quick attempt at fixing/updating
	building nx applications.  Added missing rule to build directory,
	and dropped NeXTstep iconheader code.
	
Sat Dec 14 02:36:00 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* configure.ac (AC_CONFIG_FILES): Removed config.h, which is 
	already in AC_CONFIG_HEADER.
	* configure: Regenerated.

Thu Dec 12 00:03:30 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make: Fixed typo in warning message.

2002-12-10  Adam Fedor  <fedor@gnu.org>

	* clean_os.sh: Filter version from darwin6.
	* target.make (darwin): Was darwin6
	(irix): Updated for shared libraries (from Carl Eugen Hoyos).

	* Documentation/machines.texi: Updated.

Mon Dec  9 12:04:49 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (internal-framework-install_): Fixed
	creating the installation directory for headers in DLL case, so
	that it uses HEADER_FILES_INSTALL_DIR (Patch from David Ayers
	<d.ayers@inode.at>).

2002-12-05  Mirko Viviani  <mirko.viviani@rccr.cremona.it>

	* Instance/framework.make ($(FRAMEWORK_FILE)): create the link with
	GNUSTEP_INSTANCE name instead of FRAMEWORK_NAME. (patch from David
	Ayers <d.ayers@inode.at>)

2002-12-03  Mirko Viviani  <mirko.viviani@rccr.cremona.it>

	* Instance/framework.make ($(FRAMEWORK_FILE)): remove the link before
	creating a new one.

2002-12-02  Mirko Viviani  <mirko.viviani@rccr.cremona.it>

	* Instance/framework.make ($(FRAMEWORK_FILE)): link
	lib<frameworkName>.so to <frameworkName> for dynamic loading.

Mon Dec  2 12:43:23 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make: Added support for XXX_HEADER_FILES_DIR
	and XXX_HEADER_FILES_INSTALL_DIR (Patch from David Ayers
	<d.ayers@inode.at>).

2002-11-29  Adam Fedor  <fedor@gnu.org>

	* target.make (darwin1): Remove
	(darwin6): Add.

2002-11-27 Richard Frith-Macdonald <rfm@gnu.org>

	* user_home.c: Use USERPROFILE for home directory on windoze.
	* Documentation/RADME.MinGW: Fix typo reported by Tom Koelman

2002-11-19  Adam Fedor  <fedor@gnu.org>

	* Version: 1.5.1
	* Documentation/news.texi: Updated.

2002-11-19  Adam Fedor  <fedor@gnu.org>

	* create_domain_dir_tree.sh (mydir): Use `command` not
	$(command), which doesn't work with all sh's.

2002-11-15  Adam Fedor  <fedor@gnu.org>

	* common.make: Remove duplicate OBJC_RUNTIME_LIB and FOUNDATION_LIB
	setup
	* library-combo.make (GNUSTEP_FND_DIR, RUNTIME_FLAG): Extra flags
	moved from common.make
	(FOUNDAION_LIB=gnu): setup moved from common.make.

	* target.make (darwin5/NeXT cc) (DYLIB_EXTRA_FLAGS,
	DYLIB_DEF_FRAMEWORKS, DYLIB_DEF_LIBS): Comment out or remove.

Wed Nov  6 15:26:07 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (install): Fixed typo - was installing
	config.site into GNUSTEP_SYSTEM_ROOT/shared rather than
	GNUSTEP_SYSTEM_ROOT/share.

Wed Nov  6 12:31:40 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	Rewritten framework/subproject interaction so that it supports
	FRAMEWORK_NAME containing multiple framework names.  Framework API
	change warning: CURRENT_VERSION_NAME replaced by
	XXX_CURRENT_VERSION_NAME; DEPLOY_WITH_CURRENT_VERSION replaced by
	XXX_DEPLOY_WITH_CURRENT_VERSION.
	* common.make (CURRENT_VERSION_NAME): Do not define here.
	(DEPLOY_WITH_CURRENT_VERSION): Idem.
	* Instance/framework.make: Added support for
	xxx_CURRENT_VERSION_NAME and xxx_DEPLOY_WITH_CURRENT_VERSION.
	* rules.make (FRAMEWORK_NAME): Do not define here.
	(FRAMEWORK_DIR_NAME): Idem.
	(FRAMEWORK_VERSION_DIR_NAME): Idem.
	* Master/framework.make (FRAMEWORK_NAME): Set here.
	* Instance/framework.make (FRAMEWORK_DIR_NAME,
	FRAMEWORK_VERSION_DIR_NAME): Set here.
	* Master/rules.make (%.subprojects): Pass to submakes for
	subprojects OWNING_PROJECT_HEADER_DIR instead of FRAMEWORK_NAME
	and FRAMEWORK_VERSION_DIR_NAME; set the new variable manually
	depending on the instance we're building.
	(%.variables): Similar change.
	* Master/subproject.make (build-headers): Always define this rule;
	don't depend on FRAMEWORK_NAME.
	(internal-install, internal-uninstall: Always run install /
	uninstall, no matter what FRAMEWORK_NAME is.
	* rules.make (CURRENT_FRAMEWORK_HEADERS_FLAG): Renamed to
	DERIVED_SOURCES_HEADERS_FLAG.  Include it also if
	OWNING_PROJECT_HEADER_DIR is non empty.
	* Instance/subproject.make: Rewritten header copying for
	frameworks and such; now manage headers basing on the
	OWNING_PROJECT_HEADER_DIR variable only.
	
Wed Nov  6 12:09:09 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/framework.make (internal-framework-distclean): Do not
	remove DERIVED_SOURCES; already removed on make clean.

Wed Nov  6 10:56:55 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/application.make (.PHONY): Added
	internal-app-copy_into_dir.
	(internal-app-copy_into_dir): Implemented.

2002-11-05  Adam Fedor  <fedor@gnu.org>

	* Documentation/README.MinGW: Add note about setting
	installation prefix.
	* Documentation/faq.texi: Typo.
	* Documentation/machines.texi: Updates.
	* Documentation/userfaq.texi: Idem.

Mon Nov  4 14:59:27 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/documentation.make (internal-doc-install_): Moved
	before the submakefile fragments are included, to fix installation
	problem.

Mon Nov  4 12:44:07 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* GNUmakefile.in (distclean): Remove fixpath.sh.

Mon Nov  4 12:08:58 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* Instance/Documentation: New directory.
	* Instance/Documentation/autogsdoc.make: New file.
	* Instance/Documentation/gsdoc.make: New file.
	* Instance/Documentation/javadoc.make: New file.
	* Instance/Documentation/latex.make: New file.
	* Instance/Documentation/texi.make: New file.
	* Instance/documentation.make: Include only the appropriate
	documentation makefiles; most code moved into the specific
	documentation makefiles.
	* GNUmakefile.in (install): Create the
	GNUSTEP_MAKEFILES/Instance/Documentation directory.
	(INSTANCE_DOC_MAKE_FILES): List the new makefiles in this
	variable.
	(install): Install them.
	* rules.make ($(GNUSTEP_MAKEFILES)/Instance/Documentation/*.make):
	New rule to let make know that all documentation makefiles are
	always up to date.
	
Fri Nov  1 14:00:11 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* common.make (GNUSTEP_MAKEINFO, GNUSTEP_MAKEINFO_FLAGS,
	GNUSTEP_MAKETEXT, GNUSTEP_MAKETEXT_FLAGS, GNUSTEP_TEXI2DVI,
	GNUSTEP_TEXI2DVI_FLAGS, GNUSTEP_TEXI2HTML,
	GNUSTEP_TEXI2HTML_FLAGS, GNUSTEP_DVIPS, GNUSTEP_DVIPS_FLAGS,
	AUTOGSDOC, JAVADOC, ALL_JAVADOCFLAGS): Moved into
	Instance/documentation.make
	* rules.make (ALL_JAVADOCFLAGS): Moved into
	Instance/documentation.make.
	* Instance/documentation.make: Set all these documentation
	specific flags and options here.
	(ADDITIONAL_MAKEINFO_FLAGS, ADDITIONAL_MAKETEXT_FLAGS,
	ADDITIONAL_TEXI2DVI_FLAGS, ADDITIONAL_TEXI2HTML_FLAGS,
	ADDITIONAL_DVIPS_FLAGS): New variables.

Fri Nov  1 13:36:25 2002  Nicola Pero  <n.pero@mi.flashnet.it>

	* ChangeLog: Moved into ChangeLog.1