Search
lxdream.org :: lxdream/configure.in
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 866:86cd01c2b2d3
prev804:567a684e1e7a
next882:ada7d14a8ad9
author nkeynes
date Fri Oct 10 00:13:39 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Skip the texcache render-buffer alloc for now (due to various texture-format
complications), and write the buffer straight back to vram after rendering.
file annotate diff log raw
nkeynes@1
     1
dnl Process this file with autoconf to produce a configure script.
nkeynes@1
     2
nkeynes@1
     3
AC_INIT(configure.in)
nkeynes@793
     4
AM_INIT_AUTOMAKE(lxdream, 0.8.4)
nkeynes@1
     5
AM_MAINTAINER_MODE
nkeynes@1
     6
AM_CONFIG_HEADER(config.h)
nkeynes@1
     7
nkeynes@1
     8
AC_ISC_POSIX
nkeynes@1
     9
AC_PROG_CC
nkeynes@1
    10
AM_PROG_CC_STDC
nkeynes@586
    11
AM_PROG_AS
nkeynes@675
    12
AC_CHECK_SIZEOF([void *])
nkeynes@1
    13
AC_HEADER_STDC
nkeynes@521
    14
AC_CANONICAL_BUILD
nkeynes@521
    15
AC_CANONICAL_HOST
nkeynes@700
    16
nkeynes@700
    17
AC_PATH_PROG(POD2MAN, [pod2man])
nkeynes@700
    18
AC_PATH_PROG(POD2HTML, [pod2html])
nkeynes@700
    19
nkeynes@700
    20
dnl ---------------- enable/with flags ------------------
nkeynes@700
    21
nkeynes@804
    22
AC_ARG_ENABLE( strict-warn,
nkeynes@804
    23
   AS_HELP_STRING( [--enable-strict-warn], [Enable strict compilation warnings]),
nkeynes@804
    24
   [CFLAGS="$CFLAGS -Werror -Wall -Wno-unused"], [])
nkeynes@734
    25
AC_ARG_ENABLE( translator, 
nkeynes@734
    26
   AS_HELP_STRING( [--disable-translator], [Disable the SH4 translator (Enable by default)]),
nkeynes@734
    27
   [true], [enable_translator=yes] )
nkeynes@586
    28
AC_ARG_ENABLE( trace, 
nkeynes@586
    29
   AS_HELP_STRING( [--enable-trace], [Enable generation of IO traces (warning: hurts performance)]),
nkeynes@586
    30
   [if test "$enableval" == "yes"; then
nkeynes@586
    31
     AC_DEFINE(ENABLE_TRACE_IO, 1, [Enable IO tracing])
nkeynes@586
    32
    fi] )
nkeynes@586
    33
AC_ARG_ENABLE( watch,
nkeynes@586
    34
   AS_HELP_STRING( [--enable-watch], [Enable watchpoints in the debugger (warning: hurts performance)]),
nkeynes@586
    35
   [if test "$enableval" == "yes"; then
nkeynes@586
    36
     AC_DEFINE(ENABLE_WATCH, 1, [Enable watchpoints])
nkeynes@586
    37
   fi] )
nkeynes@671
    38
AC_ARG_ENABLE( sh4stats,
nkeynes@671
    39
   AS_HELP_STRING( [--enable-sh4stats], [Enable statistics on executed sh4 instructions]),
nkeynes@671
    40
   [if test "$enableval" == "yes"; then
nkeynes@671
    41
     AC_DEFINE(ENABLE_SH4STATS, 1, [Enable SH4 statistics])
nkeynes@671
    42
    fi] )
nkeynes@653
    43
AC_ARG_WITH( osmesa,
nkeynes@653
    44
   AS_HELP_STRING( [--with-osmesa], [Build with the osmesa GL library (software rendering)]),
nkeynes@653
    45
   [], [with_osmesa=no])
nkeynes@681
    46
AC_ARG_WITH( gtk,
nkeynes@681
    47
   AS_HELP_STRING( [--with-gtk], [Build with the GTK UI. Default on X11 systems]), [with_gtk=yes], [with_gtk=x11] )
nkeynes@714
    48
AC_ARG_WITH( esd,
nkeynes@714
    49
   AS_HELP_STRING( [--with-esd], [Build with support for the ESounD audio system]) )
nkeynes@714
    50
AC_ARG_WITH( pulse,
nkeynes@714
    51
   AS_HELP_STRING( [--with-pulse], [Build with support for the PulseAudio audio system]) )
nkeynes@653
    52
nkeynes@791
    53
dnl ------------ 
nkeynes@791
    54
nkeynes@791
    55
if test "x$GCC" = "xyes"; then
nkeynes@791
    56
   CFLAGS="$CFLAGS -fno-strict-aliasing"
nkeynes@791
    57
fi
nkeynes@791
    58
nkeynes@681
    59
dnl ------------ Check if we're building on Darwin --------------
nkeynes@660
    60
nkeynes@660
    61
dnl For starters, do we have a working objective-c compiler?
nkeynes@660
    62
lxdream_save_cppflags="$CPPFLAGS"
nkeynes@660
    63
CPPFLAGS="$CPPFLAGS -x objective-c"
nkeynes@660
    64
AC_TRY_COMPILE([@interface Foo @end],, [
nkeynes@660
    65
nkeynes@660
    66
   AC_CHECK_HEADER([Cocoa/Cocoa.h], [
nkeynes@660
    67
      HAVE_COCOA='yes'
nkeynes@660
    68
      APPLE_BUILD='yes'
nkeynes@660
    69
      LIBS="$LIBS -framework AppKit"
nkeynes@660
    70
      LIBS="$LIBS -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -framework OpenGL"
nkeynes@804
    71
      CPPFLAGS="$CPPFLAGS -DMAC_OS_X_VERSION_MIN_REQUIRED=MAC_OS_X_VERSION_10_4"
nkeynes@769
    72
      LDFLAGS="$LDFLAGS -Wl,-headerpad_max_install_names"
nkeynes@660
    73
      AC_DEFINE(HAVE_COCOA,[1],[Have Cocoa framework])
nkeynes@660
    74
      AC_DEFINE(APPLE_BUILD,[1],[Building on an apple platform. Things are different...])
nkeynes@704
    75
      if test "x$with_gtk" = "xx11"; then
nkeynes@704
    76
        with_gtk=no
nkeynes@704
    77
      fi
nkeynes@660
    78
   ])
nkeynes@660
    79
nkeynes@660
    80
], [CPPFLAGS="$lxdream_save_cppflags"] )
nkeynes@681
    81
AM_CONDITIONAL(GUI_COCOA, [test "$HAVE_COCOA" = 'yes' -a "$with_gtk" = "no"])
nkeynes@866
    82
if test "x$HAVE_COCOA" = 'xyes' -a "x$with_gtk" = "xno"; then
nkeynes@866
    83
  AC_DEFINE(OSX_BUNDLE, [1], [Generating a bundled application])
nkeynes@866
    84
fi
nkeynes@660
    85
nkeynes@537
    86
dnl ----------- Check for mandatory dependencies --------------
nkeynes@537
    87
dnl Check for libpng (required)
nkeynes@537
    88
PKG_CHECK_MODULES(LIBPNG, [libpng] )
nkeynes@529
    89
nkeynes@539
    90
dnl Implied by libpng, but check explicitly just in case
nkeynes@539
    91
AC_CHECK_LIB(z, uncompress, [], [
nkeynes@539
    92
    echo "Zlib (libz.so) could not be found, but is required."
nkeynes@539
    93
    exit 1])
nkeynes@539
    94
nkeynes@681
    95
if test "x$with_gtk" = "xno"; then
nkeynes@681
    96
   dnl Check for GLIB only
nkeynes@681
    97
   PKG_CHECK_MODULES(GLIB, glib-2.0)
nkeynes@681
    98
else
nkeynes@681
    99
   dnl Check for GTK
nkeynes@681
   100
   PKG_CHECK_MODULES(GTK, gtk+-2.0, [
nkeynes@681
   101
       HAVE_GTK='yes'
nkeynes@681
   102
       AC_DEFINE([HAVE_GTK],1,[Have GTK libraries])
nkeynes@681
   103
   ])
nkeynes@658
   104
nkeynes@681
   105
   dnl Which GTK port do we have?
nkeynes@681
   106
   LIBS="$LIBS $GTK_LIBS"
nkeynes@681
   107
   AC_CHECK_FUNC(gdk_x11_display_get_xdisplay, [ 
nkeynes@681
   108
      HAVE_GTK_X11='yes'
nkeynes@681
   109
      AC_DEFINE([HAVE_GTK_X11],1,[Building with GTK+X11]) ], [])
nkeynes@681
   110
   AC_CHECK_FUNC(gdk_quartz_window_get_nsview, [ 
nkeynes@681
   111
      HAVE_GTK_OSX='yes'
nkeynes@681
   112
      AC_DEFINE([HAVE_GTK_OSX],1,[Building with GTK+Cocoa]) ], [])
nkeynes@681
   113
fi
nkeynes@681
   114
nkeynes@658
   115
AM_CONDITIONAL(GUI_GTK, [test "$HAVE_GTK" = 'yes'])
nkeynes@658
   116
nkeynes@658
   117
dnl ------------------ Video driver support -------------------
nkeynes@658
   118
AS_IF([test "x$with_osmesa" != xno], [ 
nkeynes@658
   119
nkeynes@658
   120
dnl User requested OSMesa (ie pure software rendering)
nkeynes@658
   121
  AC_CHECK_LIB([OSMesa], [OSMesaCreateContext], [],
nkeynes@658
   122
    [AC_MSG_FAILURE( [--with-osmesa was given, but OSMesa library could not be found])])
nkeynes@658
   123
  AC_CHECK_HEADER([GL/osmesa.h], [],
nkeynes@658
   124
    [AC_MSG_FAILURE( [--with-osmesa was given, but osmesa.h could not be found])])
nkeynes@658
   125
  HAVE_OSMESA='yes'
nkeynes@702
   126
  VIDEO_DRIVERS="$VIDEO_DRIVERS osmesa"
nkeynes@658
   127
  AC_DEFINE([HAVE_OSMESA],1,[Building with the OSMesa video driver]) ], [
nkeynes@658
   128
nkeynes@658
   129
dnl Otherwise we want a real GL library (unless we're on darwin, in which case it's already
nkeynes@658
   130
dnl taken care of above).
nkeynes@658
   131
   if test "x$APPLE_BUILD" != 'xyes'; then
nkeynes@658
   132
      AC_CHECK_LIB(GL, glVertex3f, [], [
nkeynes@658
   133
          AC_MSG_FAILURE( ["The OpenGL library (libGL.so) could not be found, but is required."])])
nkeynes@658
   134
      AC_CHECK_HEADER([GL/gl.h], [], [
nkeynes@658
   135
          AC_MSG_FAILURE( ["The OpenGL header files (eg GL/gl.h) could not be found, but are required."])])
nkeynes@681
   136
   else
nkeynes@681
   137
      AC_CHECK_FUNC(NSOpenGLGetVersion, [
nkeynes@681
   138
         HAVE_NSGL='yes'
nkeynes@702
   139
         VIDEO_DRIVERS="$VIDEO_DRIVERS nsgl"
nkeynes@681
   140
         AC_DEFINE([HAVE_NSGL],1, [Have NSOpenGL support]) ] )
nkeynes@658
   141
   fi
nkeynes@658
   142
nkeynes@658
   143
dnl Now work out how to get from the UI to GL - this is usually the painful part.
nkeynes@658
   144
   if test "x$HAVE_GTK_X11" = "xyes"; then
nkeynes@658
   145
      if test "x$APPLE_BUILD" = "xyes"; then
nkeynes@658
   146
         LIBS="$LIBS -L/usr/X11/lib -lGL"
nkeynes@658
   147
      fi
nkeynes@658
   148
      AC_CHECK_FUNC(glXQueryVersion, [
nkeynes@658
   149
         HAVE_GLX='yes'
nkeynes@702
   150
         VIDEO_DRIVERS="$VIDEO_DRIVERS glx"
nkeynes@658
   151
         AC_DEFINE([HAVE_GLX], 1, [Have GLX support]) ] )
nkeynes@658
   152
   fi
nkeynes@658
   153
      
nkeynes@658
   154
])
nkeynes@658
   155
nkeynes@658
   156
nkeynes@537
   157
nkeynes@658
   158
AM_CONDITIONAL(VIDEO_OSMESA, [test "x$HAVE_OSMESA" = "xyes"])
nkeynes@658
   159
AM_CONDITIONAL(VIDEO_GLX, [test "x$HAVE_GLX" = "xyes"])
nkeynes@658
   160
AM_CONDITIONAL(VIDEO_NSGL, [test "x$HAVE_NSGL" = "xyes"])
nkeynes@658
   161
nkeynes@658
   162
dnl Check for optional (but highly desireable) OpenGL features
nkeynes@656
   163
AC_CHECK_FUNC(glGenFramebuffersEXT, [ AC_DEFINE([HAVE_OPENGL_FBO],1,[Have EXT_framebuffer_object support]) ], [])
nkeynes@656
   164
AC_CHECK_FUNC(glCreateShader, [ AC_DEFINE([HAVE_OPENGL_SHADER],1,[Have 2.0 shader support]) ], [])
nkeynes@656
   165
AC_CHECK_FUNC(glCreateShaderObjectARB, [ AC_DEFINE([HAVE_OPENGL_SHADER_ARB],1,[Have ARB shader support]) ], [])
nkeynes@687
   166
AC_CHECK_FUNC(glClampColorARB, [ AC_DEFINE([HAVE_OPENGL_CLAMP_COLOR],1,[Have Color Clamp]) ], [])
nkeynes@656
   167
nkeynes@521
   168
nkeynes@734
   169
dnl ------------------- SH4 translator target -------------------
nkeynes@734
   170
nkeynes@734
   171
if test "x$enable_translator" != "xno"; then
nkeynes@734
   172
    case $host_cpu in
nkeynes@734
   173
        i386|i486|i586|i686|x86_64)
nkeynes@734
   174
	    SH4_TRANSLATOR="x86"
nkeynes@734
   175
            AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86], [SH4 Translator to use (if any)] );;
nkeynes@734
   176
    esac
nkeynes@734
   177
fi
nkeynes@734
   178
AM_CONDITIONAL(BUILD_SH4X86, [test "$SH4_TRANSLATOR" = "x86"])
nkeynes@94
   179
nkeynes@537
   180
dnl ------------------ Optional driver support -------------------
nkeynes@697
   181
dnl Check for Apple CoreAudio
nkeynes@702
   182
AC_CHECK_HEADER([CoreAudio/CoreAudio.h], [
nkeynes@697
   183
     HAVE_CORE_AUDIO=yes
nkeynes@702
   184
     LIBS="$LIBS -framework CoreAudio"
nkeynes@702
   185
     AUDIO_DRIVERS="$AUDIO_DRIVERS osx"
nkeynes@697
   186
     AC_DEFINE([HAVE_CORE_AUDIO], 1, [Have Apple CoreAudio support]) ],[true ])
nkeynes@697
   187
AM_CONDITIONAL( AUDIO_OSX, [test "$HAVE_CORE_AUDIO" = 'yes'] )
nkeynes@697
   188
nkeynes@657
   189
dnl Check for pulseaudio
nkeynes@714
   190
if test "x$with_pulse" != "xno"; then
nkeynes@714
   191
   PKG_CHECK_MODULES(PULSE, [libpulse-simple], [
nkeynes@714
   192
       HAVE_PULSE='yes'
nkeynes@714
   193
       AUDIO_DRIVERS="$AUDIO_DRIVERS pulse"
nkeynes@714
   194
       AC_DEFINE([HAVE_PULSE],1,[Have pulseaudio support]) 
nkeynes@714
   195
   ], [
nkeynes@714
   196
       if test "x$with_pulse" = "xyes"; then
nkeynes@714
   197
          AC_MSG_FAILURE( [PulseAudio audio package could not be found (but was required)] )
nkeynes@714
   198
       fi
nkeynes@714
   199
   ])
nkeynes@714
   200
fi
nkeynes@657
   201
AM_CONDITIONAL( AUDIO_PULSE, [test "$HAVE_PULSE" = 'yes'] )
nkeynes@657
   202
nkeynes@537
   203
dnl Check for esound
nkeynes@714
   204
if test "x$with_esd" != "xno"; then
nkeynes@714
   205
   PKG_CHECK_MODULES(ESOUND, [esound], [ 
nkeynes@714
   206
       HAVE_ESOUND='yes'
nkeynes@714
   207
       AUDIO_DRIVERS="$AUDIO_DRIVERS esd"
nkeynes@714
   208
       AC_DEFINE([HAVE_ESOUND],1,[Have esound support]) 
nkeynes@714
   209
   ], [
nkeynes@714
   210
       if test "x$with_esd" = "xyes"; then
nkeynes@714
   211
          AC_MSG_FAILURE( [ESounD audio package could not be found (but was required)] )
nkeynes@714
   212
       fi
nkeynes@714
   213
   ])
nkeynes@714
   214
fi
nkeynes@537
   215
AM_CONDITIONAL( AUDIO_ESOUND, [test "$HAVE_ESOUND" = 'yes'] )
nkeynes@537
   216
bhaal22@643
   217
dnl Check for alsa support
bhaal22@643
   218
PKG_CHECK_MODULES(ALSA, [alsa], [ 
bhaal22@643
   219
     HAVE_ALSA='yes'
nkeynes@702
   220
     AUDIO_DRIVERS="$AUDIO_DRIVERS alsa"
nkeynes@657
   221
     AC_DEFINE([HAVE_ALSA],1,[Have alsa support]) ], [true])
bhaal22@643
   222
AM_CONDITIONAL( AUDIO_ALSA, [test "$HAVE_ALSA" = 'yes'] )
bhaal22@643
   223
nkeynes@657
   224
nkeynes@709
   225
dnl Check for native cdrom support. There can be only one.
nkeynes@709
   226
AC_CHECK_HEADER([linux/cdrom.h], [CDROM_DRIVER=linux], [true])
nkeynes@720
   227
AC_CHECK_HEADER([IOKit/IOKitLib.h], [
nkeynes@720
   228
     CDROM_DRIVER=osx
nkeynes@720
   229
     LIBS="$LIBS -framework IOKit"],[true])
nkeynes@709
   230
AM_CONDITIONAL(CDROM_LINUX, [test "x$CDROM_DRIVER" = "xlinux"])
nkeynes@709
   231
AM_CONDITIONAL(CDROM_OSX, [test "x$CDROM_DRIVER" = "xosx"])
nkeynes@709
   232
AM_CONDITIONAL(CDROM_NONE, [test "x$CDROM_DRIVER" = "x"])
nkeynes@489
   233
nkeynes@614
   234
AC_CHECK_HEADER([linux/joystick.h], [
nkeynes@614
   235
    HAVE_LINUX_JOYSTICK_H=yes
nkeynes@614
   236
    AC_DEFINE([HAVE_LINUX_JOYSTICK], 1, [Have linux joystick support]) ], 
nkeynes@614
   237
  [ echo "Linux Joystick support not found, building without it."] )
nkeynes@614
   238
AM_CONDITIONAL(JOY_LINUX, [test "$HAVE_LINUX_JOYSTICK_H" = "yes"])
nkeynes@614
   239
nkeynes@537
   240
dnl Check for cross-compiler availability - needed for system tests
nkeynes@521
   241
AC_PATH_PROG(SHCC, [sh-elf-gcc])
nkeynes@521
   242
AC_PATH_PROG(SHLD, [sh-elf-ld])
nkeynes@521
   243
AC_PATH_PROG(SHOBJCOPY, [sh-elf-objcopy])
nkeynes@521
   244
AC_PATH_PROG(ARMCC, [arm-elf-gcc])
nkeynes@521
   245
AC_PATH_PROG(ARMLD, [arm-elf-ld])
nkeynes@521
   246
AC_PATH_PROG(ARMOBJCOPY, [arm-elf-objcopy])
nkeynes@521
   247
nkeynes@521
   248
if test "x$SHCC" = "x" -o "x$SHLD" = "x" -o "x$SHOBJCOPY" = "x"; then
nkeynes@521
   249
  BUILD_SH="no"
nkeynes@521
   250
  echo "Warning: SH4 cross-compiler not found, system tests will be disabled."
nkeynes@521
   251
else
nkeynes@521
   252
  BUILD_SH="yes"
nkeynes@521
   253
fi
nkeynes@521
   254
if test "x$ARMCC" = "x" -o "x$ARMLD" = "x" -o "x$ARMOBJCOPY" = "x"; then
nkeynes@521
   255
  BUILD_ARM="no"
nkeynes@521
   256
  echo "Warning: ARM cross-compiler not found, AICA tests will be disabled."
nkeynes@521
   257
else
nkeynes@521
   258
  BUILD_ARM="yes"
nkeynes@521
   259
fi
nkeynes@521
   260
AM_CONDITIONAL(BUILD_SYSTEST, [test "$BUILD_SH" = "yes"])
nkeynes@521
   261
AM_CONDITIONAL(BUILD_ARMTEST, [test "$BUILD_ARM" = "yes"])
nkeynes@521
   262
nkeynes@537
   263
nkeynes@537
   264
dnl ----------------------- All done, finish up -----------------------
nkeynes@503
   265
GETTEXT_PACKAGE=lxdream
nkeynes@1
   266
AC_SUBST(GETTEXT_PACKAGE)
nkeynes@529
   267
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[translation domain])
nkeynes@1
   268
nkeynes@1
   269
dnl Add the languages which your application supports here.
nkeynes@664
   270
ALL_LINGUAS="de es it pt_BR"
nkeynes@1
   271
AM_GLIB_GNU_GETTEXT
nkeynes@1
   272
nkeynes@1
   273
AC_OUTPUT([
nkeynes@1
   274
Makefile
nkeynes@1
   275
src/Makefile
nkeynes@1
   276
po/Makefile.in
nkeynes@521
   277
test/Makefile
nkeynes@778
   278
Info.plist
nkeynes@1
   279
])
nkeynes@746
   280
AS_MKDIR_P(test/sh4)
nkeynes@1
   281
nkeynes@702
   282
dnl ------------------------- Print out a summary ----------------------
nkeynes@702
   283
nkeynes@702
   284
echo
nkeynes@702
   285
echo "Configuration complete"
nkeynes@702
   286
echo
nkeynes@702
   287
nkeynes@702
   288
if test "x$HAVE_GTK" = x; then
nkeynes@702
   289
  if test "x$HAVE_COCOA" = x; then
nkeynes@702
   290
     echo "  User interface: none"
nkeynes@702
   291
  else
nkeynes@702
   292
     echo "  User interface: Cocoa"
nkeynes@702
   293
  fi
nkeynes@702
   294
else
nkeynes@702
   295
  echo "  User interface: GTK"
nkeynes@702
   296
fi
nkeynes@702
   297
nkeynes@702
   298
if test "x$SH4_TRANSLATOR" = "x"; then
nkeynes@702
   299
  echo "  SH4 translator: None (emulation core only)"
nkeynes@702
   300
else
nkeynes@702
   301
  echo "  SH4 translator: $SH4_TRANSLATOR"
nkeynes@702
   302
fi
nkeynes@702
   303
nkeynes@702
   304
if test "x$VIDEO_DRIVERS" = "x"; then
nkeynes@702
   305
   echo "  Video drivers: none (no supported GL found)"
nkeynes@702
   306
else
nkeynes@702
   307
   echo "  Video drivers: $VIDEO_DRIVERS"
nkeynes@702
   308
fi
nkeynes@702
   309
nkeynes@702
   310
if test "x$AUDIO_DRIVERS" = "x"; then
nkeynes@702
   311
   echo "  Audio drivers: none (no supported output devices found)"
nkeynes@702
   312
else
nkeynes@702
   313
   echo "  Audio drivers: $AUDIO_DRIVERS"
nkeynes@702
   314
fi
nkeynes@702
   315
nkeynes@709
   316
if test "x$CDROM_DRIVER" = "x"; then
nkeynes@709
   317
   echo "  CD-ROM driver: none (no supported cd-rom devices found)"
nkeynes@709
   318
else
nkeynes@709
   319
   echo "  CD-ROM driver: $CDROM_DRIVER"
nkeynes@709
   320
fi
.