mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Empty target fix.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11123 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
51ec28f5e5
commit
b6d1990761
4 changed files with 46 additions and 16 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-10-09 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* config.site: Fix for empty target. (suggested by
|
||||
Laurent.Julliard@xrce.xerox.com).
|
||||
|
||||
Mon Oct 8 14:06:30 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* service.make (CPP_FLAGS): Add the DLL flags for ALL_GUI_LIBS if
|
||||
|
|
|
@ -158,3 +158,40 @@ compile correctly:
|
|||
|
||||
. $GNUSTEP_SYSTEM_ROOT/Makefiles/GNUstep.sh
|
||||
|
||||
|
||||
Problems?
|
||||
---------
|
||||
|
||||
Compiling ffcall:
|
||||
|
||||
./configure --host=i386-mingw32 --prefix=//c/mingw
|
||||
|
||||
Problems compiling ffcall with MingWs gcc? Use Cygwin gcc:
|
||||
|
||||
export CC="gcc -mno-cygwin"
|
||||
|
||||
Configure problem finding ld with MingW?
|
||||
|
||||
LD=ld ./configure
|
||||
|
||||
Good Sites for Pre-Compiled Binaries
|
||||
------------------------------------
|
||||
|
||||
Many libraries, etc from:
|
||||
|
||||
<http://sourceforge.net/project/showfiles.php?group_id=7382>
|
||||
|
||||
MingW guile from
|
||||
|
||||
<http://www.textsure.net/~ela/devel.html>.
|
||||
|
||||
also need guile from
|
||||
|
||||
<http://sourceforge.net/project/showfiles.php?group_id=7382>
|
||||
|
||||
for guile-config file.
|
||||
|
||||
Author
|
||||
------
|
||||
|
||||
Adam Fedor <fedor@gnu.org>
|
||||
|
|
|
@ -586,24 +586,12 @@ documentation directory.
|
|||
If you want to work on other parts of the website - capture the
|
||||
pages you want to edit in your web browser (at http://www.gnustep.org).
|
||||
If you can't do that, you can grab a copy of the website via
|
||||
anonymous CVS -
|
||||
|
||||
@example
|
||||
$ CVSROOT=:pserver:anoncvs:@@cvs.net-community.com:/gnustep-www
|
||||
$ export CVSROOT
|
||||
$ cvs login (password anoncvs)
|
||||
$ checkout -z3 www
|
||||
@end example
|
||||
anonymous CVS. See @url{http://savannah.gnu.org/cvs/?group_id=99}
|
||||
for instructions on how to do that.
|
||||
|
||||
The main task with the website is to figure out which bits are
|
||||
out-of-date (or wrong) and update/mark-as-outdated as required.
|
||||
|
||||
Current status -
|
||||
|
||||
The 'developers section' of the FAQ is being worked on by
|
||||
@email{stevensl@@mindspring.net}, and we are looking at rewriting the more
|
||||
general parts of the FAQ.
|
||||
|
||||
@node How do I compile GNUstep on my machine? , Are there any precompiled packages available?, How can I help with the GNUstep website?, Compiling and Developing
|
||||
@subsection How do I compile GNUstep on my machine?
|
||||
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
echo Processing GNUstep site configuration
|
||||
|
||||
# Determine the target
|
||||
if test "$target" = NONE ; then
|
||||
# The did not specify one so the target is the host
|
||||
if test -z "$target" -o "$target" = NONE; then
|
||||
# The user did not specify one so the target is the host
|
||||
GNUSTEP_TARGET=$GNUSTEP_HOST
|
||||
GNUSTEP_TARGET_CPU=$GNUSTEP_HOST_CPU
|
||||
GNUSTEP_TARGET_VENDOR=$GNUSTEP_HOST_VENDOR
|
||||
|
|
Loading…
Reference in a new issue