mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 17:10:48 +00:00
Use config/ directory prefix.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@426 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c2a638d951
commit
aada55d7d4
1 changed files with 5 additions and 4 deletions
|
@ -39,7 +39,7 @@ AC_PROG_CPP
|
|||
# include implementations of List, HashTable etc. objects
|
||||
#--------------------------------------------------------------------
|
||||
AC_MSG_CHECKING(whether we are using NeXT's compiler)
|
||||
AC_TRY_CPP([#include "config.nextcc.h"], NeXTCC=0, NeXTCC=1)
|
||||
AC_TRY_CPP([#include "config/config.nextcc.h"], NeXTCC=0, NeXTCC=1)
|
||||
# Was using this too: -o `basename $CC` = "gcc" -o `basename $CC` = "xgcc"
|
||||
if test $NeXTCC = 0; then
|
||||
AC_MSG_RESULT(no)
|
||||
|
@ -48,7 +48,8 @@ if test $NeXTCC = 0; then
|
|||
#----------------------------------------------------------------
|
||||
AC_C_CROSS
|
||||
AC_MSG_CHECKING(whether nested functions work)
|
||||
AC_TRY_RUN([#include "config.nested.c"], gcc_nested=1, gcc_nested=0,
|
||||
AC_TRY_RUN([#include "config/config.nested.c"],
|
||||
gcc_nested=1, gcc_nested=0,
|
||||
gcc_nested=1)
|
||||
if test $gcc_nested = 0; then
|
||||
echo "aborting"
|
||||
|
@ -58,7 +59,7 @@ if test $NeXTCC = 0; then
|
|||
echo "Read the bug-report instructions in the GCC texinfo manual"
|
||||
echo "and submit a bug report."
|
||||
echo "The program this configure script used to test nested functions"
|
||||
echo "can be found in the file 'config.nested.c' in the libobjects"
|
||||
echo "can be found in the file 'config/config.nested.c' in this"
|
||||
echo "distribution. Under sparc-sun-sunos4.1.3 with gcc-2.6.1 the"
|
||||
echo "file compiles, runs and returns exit status 0."
|
||||
exit
|
||||
|
@ -87,7 +88,7 @@ if test $NeXTCC = 0; then
|
|||
saved_ac_ext=$ac_ext
|
||||
ac_ext=m
|
||||
AC_MSG_CHECKING(whether we are using GNU Objective C runtime)
|
||||
AC_TRY_LINK([#include "config.nextrt.m"], ;,
|
||||
AC_TRY_LINK([#include "config/config.nextrt.m"], ;,
|
||||
NeXT_runtime=1, NeXT_runtime=0)
|
||||
ac_ext=$saved_ac_ext
|
||||
if test $NeXT_runtime = 1; then
|
||||
|
|
Loading…
Reference in a new issue