Check and set EXEEXT

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9346 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-03-13 20:34:50 +00:00
parent 2e5cadc9d7
commit afdbfeee27
5 changed files with 333 additions and 233 deletions

View file

@ -1,5 +1,6 @@
2001-03-13 Adam Fedor <fedor@gnu.org>
* configure.in: Check and set EXEEXT needed by some tests.
* Makefile.postamble (header-links): Copy directory rather than link
if LN_S does not support symbolic links.

View file

@ -7,7 +7,7 @@ GCC_VERSION=2.8.0
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=9
SUBMINOR_VERSION=2
SUBMINOR_VERSION=3
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}

2
aclocal.m4 vendored
View file

@ -122,7 +122,7 @@ int main()
return 0;
}
EOF
${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.constructor.$ac_ext $LIBS 1>&5
${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.constructor.$ac_ext $LIBS 1>&5
if test -n "`nm conftest | grep _ctors_aux`"; then
objc_cv_con_autoload=yes
else

559
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -42,6 +42,8 @@ AC_PROG_CPP
AC_PATH_PROG(WHOAMI, whoami, echo, $PATH:/usr/ucb)
AC_EXEEXT
#--------------------------------------------------------------------
# specific target_os options
#--------------------------------------------------------------------