1
0
Fork 0

Fixes to better support the native irix compilers.

This commit is contained in:
curt 2002-09-06 17:30:21 +00:00
parent 6bcef49afc
commit 30e0a956c3
3 changed files with 130 additions and 28 deletions

View file

@ -4092,6 +4092,96 @@ SOURCE=.\src\FDM\UIUCModel\uiuc_ice.h
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_iceboot.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_iceboot.h
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_ice_rates.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_ice_rates.h
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_iced_nonlin.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_iced_nonlin.h
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_initializemaps.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"
@ -4752,6 +4842,36 @@ SOURCE=.\src\FDM\UIUCModel\uiuc_map_record5.h
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_map_record6.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_map_record6.h
!IF "$(CFG)" == "FlightGear - Win32 Release"
# PROP Intermediate_Dir "Release\Lib_UIUCModel"
!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug"
# PROP Intermediate_Dir "Debug\Lib_UIUCModel"
!ENDIF
# End Source File
# Begin Source File
SOURCE=.\src\FDM\UIUCModel\uiuc_menu.cpp
!IF "$(CFG)" == "FlightGear - Win32 Release"

View file

@ -17,14 +17,8 @@ echo -n " automake: `automake --version | head -1 | awk '{print $4}'`"
echo " ($AUTO_MAKE_VERSION)"
echo ""
ACLOCAL_OPTS=""
if [ $AUTO_MAKE_VERSION -ge 14 ]; then
if [ $OSTYPE = "IRIX" -o $OSTYPE = "IRIX64" ]; then echo " -I ."
ACLOCAL_OPTS="-I ."
fi
fi
echo "Running aclocal $ACLOCAL_OPTS"
aclocal $ACLOCAL_OPTS
echo "Running aclocal"
aclocal
echo "Running autoheader"
autoheader
@ -33,14 +27,8 @@ if [ ! -e src/Include/config.h.in ]; then
exit 1
fi
echo -n "Running automake"
if [ $OSTYPE = "IRIX" -o $OSTYPE = "IRIX64" ]; then
echo " --add-missing --include-deps"
automake --add-missing --include-deps
else
echo " --add-missing"
automake --add-missing
fi
echo "Running automake --add-missing"
automake --add-missing
echo "Running autoconf"
autoconf
@ -50,16 +38,6 @@ if [ ! -e configure ]; then
exit 1
fi
# fixup Makefiles for Irix
if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
echo "Fixing Makefiles for Irix"
for n in `find . -name Makefile.in`; do \
mv -f $n $n.ar-new; \
sed 's/$(AR) cru/$(AR) -o/g' $n.ar-new > $n; \
rm -f $n.ar-new; \
done;
fi
echo ""
echo "======================================"

View file

@ -12,7 +12,7 @@ AC_CONFIG_SRCDIR([src/Aircraft/aircraft.cxx])
AC_PREREQ(2.52)
# Initialize the automake stuff
AM_INIT_AUTOMAKE(FlightGear, 0.7.11pre1)
AM_INIT_AUTOMAKE(FlightGear, 0.7.11pre2)
# Checks for programs.
AC_PROG_MAKE_SET
@ -54,15 +54,19 @@ AM_CONDITIONAL(IS_CYGWIN, test "x$is_cygwin" = "xyes")
# Used by JSBSim
AC_DEFINE([FGFS], 1, [Define so that JSBSim compiles in 'library' mode])
# Used on the Irix platform
AR="ar"
ARFLAGS="cru"
OS=`uname -s`
if test "$OS" = "IRIX" -o "$OS" = "IRIX64"; then
if test "$CXX" = "CC"; then
AR="CC -ar"
AC_SUBST(AR)
ARFLAGS="-o"
fi
fi
AC_SUBST(AR)
AC_SUBST(ARFLAGS)
# Specify if we want logging (testing build) or not (release build)