mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
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:
parent
2e5cadc9d7
commit
afdbfeee27
5 changed files with 333 additions and 233 deletions
|
@ -1,5 +1,6 @@
|
||||||
2001-03-13 Adam Fedor <fedor@gnu.org>
|
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
|
* Makefile.postamble (header-links): Copy directory rather than link
|
||||||
if LN_S does not support symbolic links.
|
if LN_S does not support symbolic links.
|
||||||
|
|
||||||
|
|
2
Version
2
Version
|
@ -7,7 +7,7 @@ GCC_VERSION=2.8.0
|
||||||
# The version number of this release.
|
# The version number of this release.
|
||||||
MAJOR_VERSION=0
|
MAJOR_VERSION=0
|
||||||
MINOR_VERSION=9
|
MINOR_VERSION=9
|
||||||
SUBMINOR_VERSION=2
|
SUBMINOR_VERSION=3
|
||||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||||
VERSION=${GNUSTEP_BASE_VERSION}
|
VERSION=${GNUSTEP_BASE_VERSION}
|
||||||
|
|
||||||
|
|
2
aclocal.m4
vendored
2
aclocal.m4
vendored
|
@ -122,7 +122,7 @@ int main()
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
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
|
if test -n "`nm conftest | grep _ctors_aux`"; then
|
||||||
objc_cv_con_autoload=yes
|
objc_cv_con_autoload=yes
|
||||||
else
|
else
|
||||||
|
|
|
@ -42,6 +42,8 @@ AC_PROG_CPP
|
||||||
|
|
||||||
AC_PATH_PROG(WHOAMI, whoami, echo, $PATH:/usr/ucb)
|
AC_PATH_PROG(WHOAMI, whoami, echo, $PATH:/usr/ucb)
|
||||||
|
|
||||||
|
AC_EXEEXT
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
# specific target_os options
|
# specific target_os options
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue