1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
dnl Process this file with autoconf to produce a configure script.
dnl $Id: configure.in 409 2004-06-07 21:10:20Z roms $
dnl Init.
AC_PREREQ(2.57)
AC_INIT(TiEmu, 3.04, [tiemu-users@lists.sourceforge.net])
AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE
AC_CONFIG_MACRO_DIR([m4])
AC_PREFIX_DEFAULT(/usr/local)
dnl Files to configure.
AC_CONFIG_SRCDIR([src/gui/main.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
build/Makefile
build/mingw/Makefile
glade/Makefile
help/Makefile
man/Makefile
misc/Makefile
pedrom/Makefile
pixmaps/Makefile
po/Makefile.in
skins/Makefile
src/Makefile
])
AC_MSG_CHECKING([for something to drink while compiling])
AC_MSG_RESULT([err: no fridge found!])
# Setup libtool.
AC_DISABLE_STATIC
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_LN_S
AC_ISC_POSIX
AC_CHECK_PROG(GROFF, groff, yes, no)
AM_CONDITIONAL(USE_GROFF, test "$GROFF" != "no")
AC_CHECK_TOOL(RC, windres, windres)
# Checks for libraries.
AM_GNU_GETTEXT(external)
AM_GNU_GETTEXT_VERSION([0.16])
AC_SUBST(INCINTL)
PKG_CHECK_MODULES(TICABLES, ticables2 >= 1.3.0)
AC_SUBST(TICABLES_CFLAGS)
AC_SUBST(TICABLES_LIBS)
PKG_CHECK_MODULES(TICALCS, ticalcs2 >= 1.0.7)
AC_SUBST(TICALCS_CFLAGS)
AC_SUBST(TICALCS_LIBS)
PKG_CHECK_MODULES(TIFILES, tifiles2 >= 1.0.7)
AC_SUBST(TIFILES_CFLAGS)
AC_SUBST(TIFILES_LIBS)
PKG_CHECK_MODULES(TICONV, ticonv >= 1.0.4)
AC_SUBST(TICONV_CFLAGS)
AC_SUBST(TICONV_LIBS)
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6.0)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.6.0)
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.4.0)
AC_SUBST(GLADE_CFLAGS)
AC_SUBST(GLADE_LIBS)
# D-Bus support
AC_ARG_WITH(dbus, AC_HELP_STRING([--with-dbus], [Compile with D-Bus support]), [dbus=$withval], [dbus=no])
if test "x$dbus" = "xyes"; then
PKG_CHECK_MODULES(DBUS_GLIB, dbus-glib-1 >= 0.60)
AC_DEFINE(WITH_DBUS, 1, [Use D-Bus support])
else
DBUS_GLIB_CFLAGS=
DBUS_GLIB_LIBS=
fi
AC_SUBST(DBUS_GLIB_CFLAGS)
AC_SUBST(DBUS_GLIB_LIBS)
AC_SUBST(dbus)
# Checks for header files.
AC_HEADER_STDBOOL
AC_CHECK_HEADERS([fcntl.h])
AC_CHECK_HEADERS([libintl.h])
AC_CHECK_HEADERS([sys/timeb.h])
AC_CHECK_HEADERS(stdint.h)
dnl AC_CHECK_HEADERS([Carbon/Carbon.h])
dnl # Add Carbon framework if detected
dnl if test x"$ac_cv_header_Carbon_Carbon_h" = xyes ; then
dnl LDFLAGS="$LDFLAGS -framework Carbon"
dnl #fi
# Checks for typedefs, structures, and compiler characteristics.
AC_FUNC_MEMCMP
#AC_C_RESTRICT
AC_C_VOLATILE
# Checks for libraries.
AC_CHECK_LIB(m, pow)
AC_CHECK_LIB(pthread, pthread_create) dnl needed by GThread
#AC_CHECK_LIB(comdlg32, GetOpenFileName)
# Check for zlib
AC_CHECK_HEADER(zlib.h)
AC_CHECK_LIB(z, compress)
LIBZ="$LIBS"
LIBS=""
AC_SUBST(LIBZ)
# Checks for library functions.
AC_FUNC_SELECT_ARGTYPES
AC_FUNC_STAT
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([bzero memset mkdir select strchr strrchr strstr])
# Platform specific tests.
CFLAGS_FOR_BUILD="$CFLAGS"
export CFLAGS_FOR_BUILD
dnl AC_CANONICAL_HOST
case $host in
*-*-mingw*) ARCH="-D__WIN32__ -D__MINGW32__ -mwindows -D_WINDOWS" ;;
*-*-*bsd*) ARCH="-D__BSD__" ;;
i[[3456]]86-*-linux-*) ARCH="-D__I386__ -D__LINUX__" ;;
i[[3456]]86-apple-darwin*) ARCH="-D__I386__ -D__MACOSX__" ;;
arm*-*-linux-*) ARCH="-D__IPAQ__ -D__LINUX__" ;;
powerpc-*-linux-*) ARCH="-D__PPC__ -D__LINUX__" ;;
powerpc-apple-darwin*) ARCH="-D__PPC__ -D__MACOSX__" ;;
*-apple-darwin*) ARCH="-D__MACOSX__" ;;
*) ARCH="-D__LINUX__" ;;
esac
CFLAGS="$CFLAGS $CPPFLAGS $LDFLAGS $ARCH"
# Check for SDL if sound support is wanted
AC_ARG_ENABLE(sound,
AC_HELP_STRING([--disable-sound], [disable sound emulation]),
[tiemu_cv_use_sound=$enableval], [tiemu_cv_use_sound=yes])
AC_CACHE_CHECK([whether to enable sound emulation],
[tiemu_cv_use_sound], [tiemu_cv_use_sound=yes])
if test "x$tiemu_cv_use_sound" = "xyes"; then
SDL_VERSION=1.2.0
AM_PATH_SDL($SDL_VERSION,
:,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
)
else
CFLAGS="$CFLAGS -DNO_SOUND"
SDL_CFLAGS=
SDL_LIBS=
fi
AC_SUBST(SDL_CFLAGS)
AC_SUBST(SDL_LIBS)
# KDE dialogs support
AC_ARG_WITH(kde, AC_HELP_STRING([--with-kde], [Compile with KDE support]), [kde=$withval], [kde=no])
if test "x$kde" = "xdefault"; then
case $host_os in
*mingw*)
kde=no
;;
*)
kde=yes
;;
esac
fi
if test "x$kde" = "xyes"; then
AC_PROG_CXX
AC_PATH_KDE
AC_DEFINE(WITH_KDE, 1, [Use KDE support])
fi
AM_CONDITIONAL(USE_KDE, test "x$kde" = "xyes")
AC_SUBST(kde)
# Ensure MSVC-compatible struct packing convention is used when
# compiling for Win32 with gcc.
# What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while
# gcc2 uses "-fnative-struct".
case $host_os in
*mingw*|*cygwin*)
if test x$GCC = xyes; then
msnative_struct=''
AC_MSG_CHECKING([how to get MSVC-compatible struct packing])
if test -z "$ac_cv_prog_CC"; then
our_gcc="$CC"
else
our_gcc="$ac_cv_prog_CC"
fi
case `$our_gcc --version | sed -e 's,\..*,.,' -e q` in
2.)
if $our_gcc -v --help 2>/dev/null | grep fnative-struct >/dev/null; then
msnative_struct='-fnative-struct'
fi
;;
*)
if $our_gcc -v --help 2>/dev/null | grep ms-bitfields >/dev/null; then
msnative_struct='-mms-bitfields'
fi
;;
esac
if test x"$msnative_struct" = x ; then
AC_MSG_RESULT([no way])
AC_MSG_WARN([produced libraries might be incompatible with MSVC-compiled code])
else
CFLAGS="$CFLAGS $msnative_struct"
AC_MSG_RESULT([${msnative_struct}])
fi
fi
;;
esac
AM_CONDITIONAL(OS_WIN32, test "$msnative_struct")
# Check for the new -fvisibility=hidden flag introduced in gcc 4.0
# Allow to reduce shared library size and avoid symbol clash
# Unfortunately, this only works for fully static builds. If any parts of GDB are built shared (--enable-shared or --enable-shared-*), we currently have no way to disable it just for these parts. -- Kevin
case $host_os in
*mingw*)
;;
*)
case "$ac_configure_args" in
*--enable-shared*)
;;
*)
if test x$GCC = xyes; then
visibility_flag=''
AC_MSG_CHECKING([whether gcc accepts -fvisibility])
if test -z "$ac_cv_prog_CC"; then
our_gcc="$CC"
else
our_gcc="$ac_cv_prog_CC"
fi
if $our_gcc -v --help 2>/dev/null | grep "fvisibility" >/dev/null; then
visibility_flag='-fvisibility=hidden'
fi
if test x"$visibility_flag" = x ; then
AC_MSG_RESULT([no])
else
CFLAGS="$CFLAGS $visibility_flag"
AC_MSG_RESULT([${visibility_flag}])
AC_DEFINE(HAVE_FVISIBILITY, 1, [Use -fvisibility=hidden flag])
fi
fi
;;
esac
;;
esac
case "$host" in
*-*-linux*) EXFL="-Wl,--export-dynamic" ;;
*) EXFL="" ;;
esac
LDFLAGS="$LDFLAGS $EXFL"
# On Darwin, libglade chokes on stripped executables.
case "$host" in
*-apple-darwin*)
case "$CFLAGS $CXXFLAGS $LDFLAGS" in
*" -s "*|"-s "*|*" -s"|"-s")
echo "warning: cannot strip libglade executables on this host"
CFLAGS=`echo "$CFLAGS"|sed 's/\( -s\)* / /g;s/^-s //g;s/ -s$//g;s/^-s$//g'`
CXXFLAGS=`echo "$CXXFLAGS"|sed 's/\( -s\)* / /g;s/^-s //g;s/ -s$//g;s/^-s$//g'`
LDFLAGS=`echo "$LDFLAGS"|sed 's/\( -s\)* / /g;s/^-s //g;s/ -s$//g;s/^-s$//g'`
;;
esac
;;
esac
# some extra flags
CFLAGS="$CFLAGS -DGTK_DISABLE_DEPRECATED -DDEBUGGER"
CXXFLAGS="$CFLAGS -fno-rtti -fno-exceptions"
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(CXXFLAGS)
# Debugger support (can be disabled for embedded architectures)
AC_ARG_ENABLE(debugger,
AC_HELP_STRING([--disable-debugger], [disable the built-in debugger]),
[tiemu_cv_use_debugger=$enableval], [tiemu_cv_use_debugger=yes])
AC_CACHE_CHECK([whether to use the debugger],
[tiemu_cv_use_debugger], [tiemu_cv_use_debugger=yes])
if test x$tiemu_cv_use_debugger = xno; then
AC_DEFINE(NO_DEBUGGER, 1, [Defined to disable the debugger])
fi
# GDB support (can be disabled)
AC_ARG_ENABLE(gdb,
AC_HELP_STRING([--disable-gdb], [disable the GDB-based source-level debugger]),
[tiemu_cv_use_gdb=$enableval], [tiemu_cv_use_gdb=$tiemu_cv_use_debugger])
AC_CACHE_CHECK([whether to use the GDB-based source-level debugger],
[tiemu_cv_use_gdb], [tiemu_cv_use_gdb=$tiemu_cv_use_debugger])
if test x$tiemu_cv_use_gdb = xno; then
CFLAGS="$CFLAGS -DNO_GDB"
fi
AM_CONDITIONAL(NO_GDB, test x$tiemu_cv_use_gdb = xno)
# It makes no sense to enable GDB without the debugger!
if test x$tiemu_cv_use_debugger = xno -a x$tiemu_cv_use_gdb = xyes; then
AC_MSG_ERROR([cannot enable GDB without the debugger])
fi
# Run GDB configury (if enabled)
if test x$tiemu_cv_use_gdb = xyes; then
ac_configure_args="$ac_configure_args --target=m68k-coff --disable-tui --disable-werror"
changequote(<<,>>)
ac_configure_args=`echo "$ac_configure_args" | sed "s,'CC=[^']*',,g;s,'CFLAGS=[^']*',,g;s,'CXX=[^']*',,g;s,'CXXFLAGS=[^']*',,g;s,'LDFLAGS=[^']*',,g;s,'LIBS=[^']*',,g;s,'build_alias=[^']*',,g;s,'host_alias=[^']*',,g;s,'target_alias=[^']*',,g"`
changequote([,])
AC_CONFIG_SUBDIRS(src/gdb)
fi
# Output.
AC_OUTPUT
echo
echo "To run the TiEmu emulator, you will need an image (ROM dump or FLASH upgrade)."
echo "As those files are copyrighted by Texas Instruments, they will never be"
echo "distributed with the emulator... In replacement, you can use PedRom which"
echo "is provided with TiEmu."
echo
echo "It you need a ROM dump, you can get one from your calculator"
echo "with the 'ROM dump' function of TiLP."
echo "Otherwise, you can use a TI's FLASH OS upgrade (AMS) as image."
echo "Note: TiLP is available at [http://lpg.ticalc.org/prj_tilp]."
echo
echo "Now, you can type 'make' and 'make install'"
echo ;
|