mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Don't look for gcc's libobjc.so
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10756 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
83cee451ed
commit
a01c53e391
4 changed files with 16 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-08-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.in (gs_cv_objc_libdir): Don't look for gcc's
|
||||
installed libobjc.so since it's usually in a standard dir anyway.
|
||||
|
||||
Mon Aug 6 19:15:35 2001 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* library.make (internal-install-dirs): Insert a / between
|
||||
|
|
|
@ -57,6 +57,9 @@ Then
|
|||
make
|
||||
make install
|
||||
|
||||
NOTES: On some systems, configure has trouble when mingw's bin is in the
|
||||
path (probably because of mingw's make).
|
||||
|
||||
2. The default location for GNUstep on Unix systems in /usr/GNUstep, but
|
||||
there is no default for Windows machines, so you need to set that up
|
||||
first with the GNUSTEP_SYSTEM_ROOT environment variable. To put it in
|
||||
|
|
8
configure
vendored
8
configure
vendored
|
@ -1686,10 +1686,10 @@ if test -f $GNUSTEP_HDIR/objc/objc.h; then
|
|||
gs_cv_objc_libdir=NONE
|
||||
fi
|
||||
fi
|
||||
gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
|
||||
if test -f "$gcc_shared_libobjc"; then
|
||||
gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
|
||||
fi
|
||||
#gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
|
||||
#if test -f "$gcc_shared_libobjc"; then
|
||||
# gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
|
||||
#fi
|
||||
|
||||
fi
|
||||
|
||||
|
|
|
@ -250,10 +250,10 @@ if test -f $GNUSTEP_HDIR/objc/objc.h; then
|
|||
gs_cv_objc_libdir=NONE
|
||||
fi
|
||||
fi
|
||||
gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
|
||||
if test -f "$gcc_shared_libobjc"; then
|
||||
gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
|
||||
fi
|
||||
#gcc_shared_libobjc=`gcc -print-file-name=libobjc.so`
|
||||
#if test -f "$gcc_shared_libobjc"; then
|
||||
# gs_cv_objc_libdir=`dirname $gcc_shared_libobjc`
|
||||
#fi
|
||||
])
|
||||
AC_MSG_RESULT($gs_cv_objc_libdir)
|
||||
|
||||
|
|
Loading…
Reference in a new issue