mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Recognize a custom libobjc on Windows
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@20883 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
eb3712b97b
commit
430cd86d69
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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.
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -3436,7 +3436,7 @@ if test "${gs_cv_objc_libdir+set}" = set; then
|
|||
else
|
||||
gs_cv_objc_libdir=NONE
|
||||
if test -f "$GNUSTEP_HDIR/objc/objc.h"; then
|
||||
if test -f "$GNUSTEP_LDIR/libobjc.a" -o -f "$GNUSTEP_LDIR/libobjc.so"; then
|
||||
if test -f "$GNUSTEP_LDIR/libobjc.a" -o -f "$GNUSTEP_LDIR/libobjc.so" -o -f "$GNUSTEP_LDIR/libobjc.dll.a"; then
|
||||
gs_cv_objc_libdir="$GNUSTEP_LDIR"
|
||||
else
|
||||
gs_cv_objc_libdir=NONE
|
||||
|
|
|
@ -376,7 +376,7 @@ AC_CACHE_VAL(gs_cv_objc_libdir,
|
|||
[dnl
|
||||
gs_cv_objc_libdir=NONE
|
||||
if test -f "$GNUSTEP_HDIR/objc/objc.h"; then
|
||||
if test -f "$GNUSTEP_LDIR/libobjc.a" -o -f "$GNUSTEP_LDIR/libobjc.so"; then
|
||||
if test -f "$GNUSTEP_LDIR/libobjc.a" -o -f "$GNUSTEP_LDIR/libobjc.so" -o -f "$GNUSTEP_LDIR/libobjc.dll.a"; then
|
||||
gs_cv_objc_libdir="$GNUSTEP_LDIR"
|
||||
else
|
||||
gs_cv_objc_libdir=NONE
|
||||
|
|
Loading…
Reference in a new issue