Search
lxdream.org :: lxdream/configure.in
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 1107:7b279d10f46f
prev1097:d4807997e450
next1110:eb1c005ba3cb
author nkeynes
date Mon May 17 22:01:23 2010 +1000 (13 years ago)
permissions -rw-r--r--
last change Rip out my hacked-up isofs code and replace with libisofs. Much better.
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@1046
     4
AM_INIT_AUTOMAKE(lxdream, 0.9.1)
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@964
    11
AC_PROG_OBJC
nkeynes@964
    12
AC_PROG_SED
nkeynes@586
    13
AM_PROG_AS
nkeynes@675
    14
AC_CHECK_SIZEOF([void *])
nkeynes@1
    15
AC_HEADER_STDC
nkeynes@521
    16
AC_CANONICAL_BUILD
nkeynes@521
    17
AC_CANONICAL_HOST
nkeynes@700
    18
nkeynes@964
    19
_AM_DEPENDENCIES([OBJC])
nkeynes@964
    20
nkeynes@700
    21
AC_PATH_PROG(POD2MAN, [pod2man])
nkeynes@700
    22
AC_PATH_PROG(POD2HTML, [pod2html])
nkeynes@700
    23
nkeynes@700
    24
dnl ---------------- enable/with flags ------------------
nkeynes@700
    25
nkeynes@804
    26
AC_ARG_ENABLE( strict-warn,
nkeynes@804
    27
   AS_HELP_STRING( [--enable-strict-warn], [Enable strict compilation warnings]),
nkeynes@966
    28
   [if test "$enableval" == "yes"; then
nkeynes@966
    29
      enable_strictwarn=yes
nkeynes@966
    30
    fi] )
nkeynes@734
    31
AC_ARG_ENABLE( translator, 
nkeynes@899
    32
   AS_HELP_STRING( [--disable-translator], [Disable the SH4 translator (Enabled by default)]),
nkeynes@734
    33
   [true], [enable_translator=yes] )
nkeynes@899
    34
AC_ARG_ENABLE( optimized,
nkeynes@899
    35
   AS_HELP_STRING( [--disable-optimized], [Disable compile-time optimizations (Enabled by default)]),
nkeynes@899
    36
   [true], [enable_optimized=yes] )
nkeynes@1024
    37
AC_ARG_ENABLE( shared,
nkeynes@1024
    38
   AS_HELP_STRING( [--enable-shared], [Build drivers as shared libraries (Enabled if available)]),
nkeynes@1024
    39
   [if test "$enableval" == "yes"; then enable_shared=yes; else enable_shared=no; fi], [enable_shared=cond] )
nkeynes@909
    40
AC_ARG_ENABLE( profiled,
nkeynes@913
    41
   AS_HELP_STRING( [--enable-profiled], [Enable profiling build]),
nkeynes@909
    42
   [if test "$enableval" == "yes"; then
nkeynes@909
    43
      enable_profiled=yes;
nkeynes@909
    44
    fi] )
nkeynes@586
    45
AC_ARG_ENABLE( trace, 
nkeynes@586
    46
   AS_HELP_STRING( [--enable-trace], [Enable generation of IO traces (warning: hurts performance)]),
nkeynes@586
    47
   [if test "$enableval" == "yes"; then
nkeynes@586
    48
     AC_DEFINE(ENABLE_TRACE_IO, 1, [Enable IO tracing])
nkeynes@586
    49
    fi] )
nkeynes@586
    50
AC_ARG_ENABLE( watch,
nkeynes@586
    51
   AS_HELP_STRING( [--enable-watch], [Enable watchpoints in the debugger (warning: hurts performance)]),
nkeynes@586
    52
   [if test "$enableval" == "yes"; then
nkeynes@586
    53
     AC_DEFINE(ENABLE_WATCH, 1, [Enable watchpoints])
nkeynes@586
    54
   fi] )
nkeynes@671
    55
AC_ARG_ENABLE( sh4stats,
nkeynes@671
    56
   AS_HELP_STRING( [--enable-sh4stats], [Enable statistics on executed sh4 instructions]),
nkeynes@671
    57
   [if test "$enableval" == "yes"; then
nkeynes@671
    58
     AC_DEFINE(ENABLE_SH4STATS, 1, [Enable SH4 statistics])
nkeynes@671
    59
    fi] )
nkeynes@635
    60
AC_ARG_WITH( osmesa,
nkeynes@635
    61
   AS_HELP_STRING( [--with-osmesa], [Build with the osmesa GL library (software rendering)]),
nkeynes@635
    62
   [], [with_osmesa=no])
nkeynes@681
    63
AC_ARG_WITH( gtk,
nkeynes@681
    64
   AS_HELP_STRING( [--with-gtk], [Build with the GTK UI. Default on X11 systems]), [with_gtk=yes], [with_gtk=x11] )
nkeynes@714
    65
AC_ARG_WITH( esd,
nkeynes@714
    66
   AS_HELP_STRING( [--with-esd], [Build with support for the ESounD audio system]) )
nkeynes@714
    67
AC_ARG_WITH( pulse,
nkeynes@714
    68
   AS_HELP_STRING( [--with-pulse], [Build with support for the PulseAudio audio system]) )
nkeynes@989
    69
AC_ARG_WITH( sdl,
nkeynes@989
    70
   AS_HELP_STRING( [--with-sdl], [Build with support for SDL audio]) )
nkeynes@635
    71
nkeynes@653
    72
nkeynes@977
    73
dnl ------------ Check if we're building on Darwin --------------
nkeynes@977
    74
nkeynes@977
    75
dnl For starters, do we have a working objective-c compiler?
nkeynes@977
    76
AC_HAVE_OBJC([
nkeynes@977
    77
   AC_CHECK_HEADER([Cocoa/Cocoa.h], [
nkeynes@977
    78
      HAVE_COCOA='yes'
nkeynes@977
    79
      APPLE_BUILD='yes'
nkeynes@1029
    80
      LIBS="$LIBS -framework AppKit -framework Carbon"
nkeynes@977
    81
      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@1024
    82
      LXDREAMCPPFLAGS="-DMAC_OS_X_VERSION_MIN_REQUIRED=MAC_OS_X_VERSION_10_4 -mdynamic-no-pic"
nkeynes@977
    83
      LDFLAGS="$LDFLAGS -Wl,-headerpad_max_install_names"
nkeynes@977
    84
      AC_DEFINE(HAVE_COCOA,[1],[Have Cocoa framework])
nkeynes@977
    85
      AC_DEFINE(APPLE_BUILD,[1],[Building on an apple platform. Things are different...])
nkeynes@977
    86
      if test "x$with_gtk" = "xx11"; then
nkeynes@977
    87
        with_gtk=no
nkeynes@977
    88
      fi
nkeynes@977
    89
   ], [], [AC_INCLUDES_DEFAULT])
nkeynes@977
    90
nkeynes@977
    91
   AC_OBJC_VERSION([ OBJCOPT="-O2 -msse2 -mfpmath=sse"
nkeynes@977
    92
                     OBJCFLAGS="$OBJCFLAGS -fno-strict-aliasing" ],
nkeynes@977
    93
                   [ OBJCOPT="-O2" ], [] )
nkeynes@539
    94
])
nkeynes@539
    95
nkeynes@977
    96
AM_CONDITIONAL(GUI_COCOA, [test "$HAVE_COCOA" = 'yes' -a "$with_gtk" = "no"])
nkeynes@977
    97
if test "x$HAVE_COCOA" = 'xyes' -a "x$with_gtk" = "xno"; then
nkeynes@977
    98
  AC_DEFINE(OSX_BUNDLE, [1], [Generating a bundled application])
nkeynes@977
    99
fi
nkeynes@977
   100
nkeynes@977
   101
dnl ------------------ C Compiler flags -----------------------
nkeynes@964
   102
CFLAGS="-g -fexceptions"
nkeynes@964
   103
OBJCFLAGS="-g -fexceptions"
nkeynes@964
   104
AC_DEFINE(HAVE_EXCEPTIONS, [1], [Have exception stack-frame information])
nkeynes@964
   105
nkeynes@987
   106
STDCFLAG="-std=c99"
nkeynes@964
   107
AC_CC_VERSION([ CCOPT="-O2 -msse2 -mfpmath=sse" 
nkeynes@987
   108
                CFLAGS="$CFLAGS -fno-strict-aliasing" ],
nkeynes@984
   109
              [ CCOPT="$CFLAGS -fast"
nkeynes@987
   110
                CFLAGS="$CFLAGS -fno-strict-aliasing" ],
nkeynes@964
   111
              [ CCOPT="$CFLAGS -O2" ])
nkeynes@791
   112
nkeynes@913
   113
if test "x$enable_optimized" = "xyes"; then
nkeynes@964
   114
   CFLAGS="$CFLAGS $CCOPT"
nkeynes@966
   115
   OBJCFLAGS="$OBJCFLAGS $OBJCOPT"
nkeynes@913
   116
   if test "x$enable_profiled" != "xyes"; then
nkeynes@913
   117
       dnl -fomit-frame-pointer can't be used with -pg
nkeynes@964
   118
       CFLAGS="$CFLAGS -fomit-frame-pointer"
nkeynes@966
   119
       OBJCFLAGS="$OBJCFLAGS -fomit-frame-pointer"
nkeynes@913
   120
   fi
nkeynes@964
   121
else
nkeynes@964
   122
   CFLAGS="$CFLAGS -g3"
nkeynes@964
   123
   OBJCFLAGS="$OBJCFLAGS -g3"
nkeynes@899
   124
fi
nkeynes@909
   125
nkeynes@913
   126
if test "x$enable_profiled" = "xyes"; then
nkeynes@913
   127
   CFLAGS="$CFLAGS -pg"
nkeynes@913
   128
   LDFLAGS="$LDFLAGS -pg";
nkeynes@964
   129
   OBJCFLAGS="$OBJCFLAGS -pg";
nkeynes@791
   130
fi
nkeynes@791
   131
nkeynes@966
   132
if test "x$enable_strictwarn" = "xyes"; then
nkeynes@966
   133
   CFLAGS="$CFLAGS -Wall -Werror -Wno-unused"
nkeynes@966
   134
   OBJCFLAGS="$OBJCFLAGS -Wall -Werror -Wno-unused"
nkeynes@966
   135
fi
nkeynes@966
   136
nkeynes@1024
   137
if test "x$enable_shared" != "xno"; then
nkeynes@1024
   138
   AC_DEFINE(ENABLE_SHARED, [1], [Enable shared-library plugins])
nkeynes@1024
   139
   if test "x$APPLE_BUILD" = "xyes"; then
nkeynes@1024
   140
      SOEXT="dylib"
nkeynes@1024
   141
      PLUGINLDFLAGS="-dynamiclib -undefined dynamic_lookup"
nkeynes@1024
   142
   else 
nkeynes@1024
   143
      SOEXT="so"
nkeynes@1024
   144
      PLUGINLDFLAGS="-shared"
nkeynes@1024
   145
   fi
nkeynes@1024
   146
   PLUGINCFLAGS="-fPIC"
nkeynes@1024
   147
nkeynes@1024
   148
dnl Check for dlfcn.h and dlopen() (in libdl or libc)
nkeynes@1024
   149
   AC_CHECK_HEADER( [dlfcn.h], [
nkeynes@1024
   150
      AC_SEARCH_LIBS( [dlopen], [dl], [have_dlopen=yes]) ])
nkeynes@1024
   151
   if test "x$have_dlopen" != "xyes"; then
nkeynes@1024
   152
      if test "x$enable_shared" == "xyes"; then
nkeynes@1024
   153
         AC_MSG_ERROR( "--enable-shared not supported on your system - can't find a working dlopen" )
nkeynes@1024
   154
      else
nkeynes@1024
   155
         AC_MSG_WARN("Statically linking all plugins")
nkeynes@1024
   156
      fi
nkeynes@1024
   157
   fi
nkeynes@1024
   158
nkeynes@1024
   159
dnl Check if linker accepts -rdynamic
nkeynes@1024
   160
   AC_MSG_CHECKING([if linker accepts -rdynamic])
nkeynes@1024
   161
   old_LDFLAGS="$LDFLAGS"
nkeynes@1024
   162
   LDFLAGS="$LDFLAGS -rdynamic"
nkeynes@1074
   163
   AC_LINK_IFELSE( [int main(){ return 0; }], [
nkeynes@1024
   164
     LXDREAMLDFLAGS="-rdynamic"
nkeynes@1024
   165
     AC_MSG_RESULT([yes]) 
nkeynes@1024
   166
   ], [
nkeynes@1024
   167
     LXDREAMLDFLAGS=""
nkeynes@1024
   168
     AC_MSG_RESULT([no]) ])
nkeynes@1024
   169
   LDFLAGS="$old_LDFLAGS"
nkeynes@1024
   170
nkeynes@1024
   171
   AC_SUBST(SOEXT)
nkeynes@1024
   172
   AC_SUBST(PLUGINCFLAGS)
nkeynes@1024
   173
   AC_SUBST(PLUGINLDFLAGS)
nkeynes@1024
   174
   AC_SUBST(LXDREAMLDFLAGS)
nkeynes@1024
   175
fi
nkeynes@1024
   176
AM_CONDITIONAL(BUILD_SHARED, [test "x$have_dlopen" = "xyes"])
nkeynes@1024
   177
nkeynes@923
   178
AC_CHECK_FASTCALL([
nkeynes@923
   179
   AC_DEFINE(HAVE_FASTCALL, [1], [Use fast register-passing calling conventions])
nkeynes@923
   180
])
nkeynes@927
   181
AC_CHECK_FRAME_ADDRESS( [
nkeynes@927
   182
   AC_DEFINE(HAVE_FRAME_ADDRESS, [1], [Define if we have a working builtin frame_address])
nkeynes@927
   183
], [ AC_MSG_WARN([Memory exceptions will be slow]) ])
nkeynes@923
   184
nkeynes@1024
   185
AC_SUBST(LXDREAMCPPFLAGS)
nkeynes@1002
   186
AC_SEARCH_LIBS(listen, [socket])
nkeynes@1002
   187
AC_SEARCH_LIBS(inet_ntoa,[nsl])
nkeynes@635
   188
nkeynes@537
   189
dnl ----------- Check for mandatory dependencies --------------
nkeynes@537
   190
dnl Check for libpng (required)
nkeynes@537
   191
PKG_CHECK_MODULES(LIBPNG, [libpng] )
nkeynes@529
   192
nkeynes@539
   193
dnl Implied by libpng, but check explicitly just in case
nkeynes@539
   194
AC_CHECK_LIB(z, uncompress, [], [
nkeynes@539
   195
    echo "Zlib (libz.so) could not be found, but is required."
nkeynes@539
   196
    exit 1])
nkeynes@539
   197
nkeynes@681
   198
if test "x$with_gtk" = "xno"; then
nkeynes@681
   199
   dnl Check for GLIB only
nkeynes@681
   200
   PKG_CHECK_MODULES(GLIB, glib-2.0)
nkeynes@681
   201
else
nkeynes@681
   202
   dnl Check for GTK
nkeynes@681
   203
   PKG_CHECK_MODULES(GTK, gtk+-2.0, [
nkeynes@681
   204
       HAVE_GTK='yes'
nkeynes@681
   205
       AC_DEFINE([HAVE_GTK],1,[Have GTK libraries])
nkeynes@681
   206
   ])
nkeynes@658
   207
nkeynes@681
   208
   dnl Which GTK port do we have?
nkeynes@681
   209
   LIBS="$LIBS $GTK_LIBS"
nkeynes@681
   210
   AC_CHECK_FUNC(gdk_x11_display_get_xdisplay, [ 
nkeynes@681
   211
      HAVE_GTK_X11='yes'
nkeynes@681
   212
      AC_DEFINE([HAVE_GTK_X11],1,[Building with GTK+X11]) ], [])
nkeynes@681
   213
   AC_CHECK_FUNC(gdk_quartz_window_get_nsview, [ 
nkeynes@681
   214
      HAVE_GTK_OSX='yes'
nkeynes@681
   215
      AC_DEFINE([HAVE_GTK_OSX],1,[Building with GTK+Cocoa]) ], [])
nkeynes@635
   216
fi
nkeynes@537
   217
nkeynes@658
   218
AM_CONDITIONAL(GUI_GTK, [test "$HAVE_GTK" = 'yes'])
nkeynes@658
   219
nkeynes@1107
   220
AC_CHECK_HEADER([libisofs/libisofs.h], [
nkeynes@1107
   221
   AC_CHECK_LIB(isofs, [iso_data_source_new_from_file], [
nkeynes@1107
   222
      LIBS="$LIBS -lisofs"
nkeynes@1107
   223
   ], [ AC_MSG_FAILURE( ["Libisofs library not found, but is required"]) ])], 
nkeynes@1107
   224
      [ AC_MSG_FAILURE( ["Libisofs headers not found, but is required"]) ])
nkeynes@1107
   225
nkeynes@658
   226
dnl ------------------ Video driver support -------------------
nkeynes@658
   227
AS_IF([test "x$with_osmesa" != xno], [ 
nkeynes@658
   228
nkeynes@658
   229
dnl User requested OSMesa (ie pure software rendering)
nkeynes@658
   230
  AC_CHECK_LIB([OSMesa], [OSMesaCreateContext], [],
nkeynes@658
   231
    [AC_MSG_FAILURE( [--with-osmesa was given, but OSMesa library could not be found])])
nkeynes@658
   232
  AC_CHECK_HEADER([GL/osmesa.h], [],
nkeynes@658
   233
    [AC_MSG_FAILURE( [--with-osmesa was given, but osmesa.h could not be found])])
nkeynes@658
   234
  HAVE_OSMESA='yes'
nkeynes@702
   235
  VIDEO_DRIVERS="$VIDEO_DRIVERS osmesa"
nkeynes@658
   236
  AC_DEFINE([HAVE_OSMESA],1,[Building with the OSMesa video driver]) ], [
nkeynes@658
   237
nkeynes@658
   238
dnl Otherwise we want a real GL library (unless we're on darwin, in which case it's already
nkeynes@658
   239
dnl taken care of above).
nkeynes@658
   240
   if test "x$APPLE_BUILD" != 'xyes'; then
nkeynes@658
   241
      AC_CHECK_LIB(GL, glVertex3f, [], [
nkeynes@658
   242
          AC_MSG_FAILURE( ["The OpenGL library (libGL.so) could not be found, but is required."])])
nkeynes@658
   243
      AC_CHECK_HEADER([GL/gl.h], [], [
nkeynes@658
   244
          AC_MSG_FAILURE( ["The OpenGL header files (eg GL/gl.h) could not be found, but are required."])])
nkeynes@681
   245
   else
nkeynes@681
   246
      AC_CHECK_FUNC(NSOpenGLGetVersion, [
nkeynes@681
   247
         HAVE_NSGL='yes'
nkeynes@702
   248
         VIDEO_DRIVERS="$VIDEO_DRIVERS nsgl"
nkeynes@681
   249
         AC_DEFINE([HAVE_NSGL],1, [Have NSOpenGL support]) ] )
nkeynes@658
   250
   fi
nkeynes@658
   251
nkeynes@658
   252
dnl Now work out how to get from the UI to GL - this is usually the painful part.
nkeynes@658
   253
   if test "x$HAVE_GTK_X11" = "xyes"; then
nkeynes@658
   254
      if test "x$APPLE_BUILD" = "xyes"; then
nkeynes@658
   255
         LIBS="$LIBS -L/usr/X11/lib -lGL"
nkeynes@658
   256
      fi
nkeynes@658
   257
      AC_CHECK_FUNC(glXQueryVersion, [
nkeynes@658
   258
         HAVE_GLX='yes'
nkeynes@702
   259
         VIDEO_DRIVERS="$VIDEO_DRIVERS glx"
nkeynes@658
   260
         AC_DEFINE([HAVE_GLX], 1, [Have GLX support]) ] )
nkeynes@658
   261
   fi
nkeynes@658
   262
      
nkeynes@539
   263
])
nkeynes@539
   264
nkeynes@521
   265
nkeynes@537
   266
nkeynes@658
   267
AM_CONDITIONAL(VIDEO_OSMESA, [test "x$HAVE_OSMESA" = "xyes"])
nkeynes@658
   268
AM_CONDITIONAL(VIDEO_GLX, [test "x$HAVE_GLX" = "xyes"])
nkeynes@658
   269
AM_CONDITIONAL(VIDEO_NSGL, [test "x$HAVE_NSGL" = "xyes"])
nkeynes@658
   270
nkeynes@658
   271
dnl Check for optional (but highly desireable) OpenGL features
nkeynes@656
   272
AC_CHECK_FUNC(glGenFramebuffersEXT, [ AC_DEFINE([HAVE_OPENGL_FBO],1,[Have EXT_framebuffer_object support]) ], [])
nkeynes@656
   273
AC_CHECK_FUNC(glCreateShader, [ AC_DEFINE([HAVE_OPENGL_SHADER],1,[Have 2.0 shader support]) ], [])
nkeynes@656
   274
AC_CHECK_FUNC(glCreateShaderObjectARB, [ AC_DEFINE([HAVE_OPENGL_SHADER_ARB],1,[Have ARB shader support]) ], [])
nkeynes@687
   275
AC_CHECK_FUNC(glClampColorARB, [ AC_DEFINE([HAVE_OPENGL_CLAMP_COLOR],1,[Have Color Clamp]) ], [])
nkeynes@656
   276
nkeynes@521
   277
nkeynes@734
   278
dnl ------------------- SH4 translator target -------------------
nkeynes@734
   279
nkeynes@734
   280
if test "x$enable_translator" != "xno"; then
nkeynes@734
   281
    case $host_cpu in
nkeynes@734
   282
        i386|i486|i586|i686|x86_64)
nkeynes@734
   283
	    SH4_TRANSLATOR="x86"
nkeynes@734
   284
            AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86], [SH4 Translator to use (if any)] );;
nkeynes@734
   285
    esac
nkeynes@734
   286
fi
nkeynes@734
   287
AM_CONDITIONAL(BUILD_SH4X86, [test "$SH4_TRANSLATOR" = "x86"])
nkeynes@94
   288
nkeynes@537
   289
dnl ------------------ Optional driver support -------------------
nkeynes@697
   290
dnl Check for Apple CoreAudio
nkeynes@702
   291
AC_CHECK_HEADER([CoreAudio/CoreAudio.h], [
nkeynes@697
   292
     HAVE_CORE_AUDIO=yes
nkeynes@702
   293
     LIBS="$LIBS -framework CoreAudio"
nkeynes@702
   294
     AUDIO_DRIVERS="$AUDIO_DRIVERS osx"
nkeynes@697
   295
     AC_DEFINE([HAVE_CORE_AUDIO], 1, [Have Apple CoreAudio support]) ],[true ])
nkeynes@697
   296
AM_CONDITIONAL( AUDIO_OSX, [test "$HAVE_CORE_AUDIO" = 'yes'] )
nkeynes@697
   297
nkeynes@989
   298
dnl Check for SDL (only used for audio at the moment)
nkeynes@989
   299
if test "x$with_sdl" != "xno"; then
nkeynes@989
   300
   PKG_CHECK_MODULES(SDL, [sdl], [
nkeynes@989
   301
       HAVE_SDL='yes'
nkeynes@989
   302
       AUDIO_DRIVERS="$AUDIO_DRIVERS sdl"
nkeynes@989
   303
       AC_DEFINE([HAVE_SDL],1,[Have SDL support])
nkeynes@989
   304
   ], [
nkeynes@989
   305
      if test "x$with_sdl" = "xyes"; then
nkeynes@989
   306
         AC_MSG_FAILURE( ["SDL libraries could not be found (but were required)] )
nkeynes@989
   307
      fi
nkeynes@989
   308
   ])
nkeynes@989
   309
fi
nkeynes@989
   310
AM_CONDITIONAL( AUDIO_SDL, [test "$HAVE_SDL" = 'yes'] )
nkeynes@989
   311
nkeynes@657
   312
dnl Check for pulseaudio
nkeynes@714
   313
if test "x$with_pulse" != "xno"; then
nkeynes@714
   314
   PKG_CHECK_MODULES(PULSE, [libpulse-simple], [
nkeynes@714
   315
       HAVE_PULSE='yes'
nkeynes@714
   316
       AUDIO_DRIVERS="$AUDIO_DRIVERS pulse"
nkeynes@714
   317
       AC_DEFINE([HAVE_PULSE],1,[Have pulseaudio support]) 
nkeynes@714
   318
   ], [
nkeynes@714
   319
       if test "x$with_pulse" = "xyes"; then
nkeynes@714
   320
          AC_MSG_FAILURE( [PulseAudio audio package could not be found (but was required)] )
nkeynes@714
   321
       fi
nkeynes@714
   322
   ])
nkeynes@714
   323
fi
nkeynes@657
   324
AM_CONDITIONAL( AUDIO_PULSE, [test "$HAVE_PULSE" = 'yes'] )
nkeynes@657
   325
nkeynes@537
   326
dnl Check for esound
nkeynes@714
   327
if test "x$with_esd" != "xno"; then
nkeynes@714
   328
   PKG_CHECK_MODULES(ESOUND, [esound], [ 
nkeynes@714
   329
       HAVE_ESOUND='yes'
nkeynes@714
   330
       AUDIO_DRIVERS="$AUDIO_DRIVERS esd"
nkeynes@714
   331
       AC_DEFINE([HAVE_ESOUND],1,[Have esound support]) 
nkeynes@714
   332
   ], [
nkeynes@714
   333
       if test "x$with_esd" = "xyes"; then
nkeynes@714
   334
          AC_MSG_FAILURE( [ESounD audio package could not be found (but was required)] )
nkeynes@714
   335
       fi
nkeynes@714
   336
   ])
nkeynes@714
   337
fi
nkeynes@537
   338
AM_CONDITIONAL( AUDIO_ESOUND, [test "$HAVE_ESOUND" = 'yes'] )
nkeynes@537
   339
bhaal22@643
   340
dnl Check for alsa support
bhaal22@643
   341
PKG_CHECK_MODULES(ALSA, [alsa], [ 
bhaal22@643
   342
     HAVE_ALSA='yes'
nkeynes@702
   343
     AUDIO_DRIVERS="$AUDIO_DRIVERS alsa"
nkeynes@657
   344
     AC_DEFINE([HAVE_ALSA],1,[Have alsa support]) ], [true])
bhaal22@643
   345
AM_CONDITIONAL( AUDIO_ALSA, [test "$HAVE_ALSA" = 'yes'] )
bhaal22@643
   346
nkeynes@657
   347
nkeynes@709
   348
dnl Check for native cdrom support. There can be only one.
nkeynes@987
   349
AC_CHECK_HEADER([linux/cdrom.h], [
nkeynes@987
   350
     CDROM_DRIVER=linux
nkeynes@987
   351
     dnl Some kernel versions have non-c99 compliant headers - check here
nkeynes@987
   352
     AC_MSG_CHECKING([C99 compliant kernel headers])
nkeynes@987
   353
     old_CFLAGS="$CFLAGS"
nkeynes@987
   354
     CFLAGS="$CFLAGS $STDCFLAG"
nkeynes@987
   355
     AC_TRY_COMPILE([#include <linux/cdrom.h>], [], [AC_MSG_RESULT([Yes])], [
nkeynes@987
   356
        AC_MSG_RESULT([No])
nkeynes@987
   357
        STDCFLAG="-std=gnu99"])
nkeynes@987
   358
     CFLAGS="$old_CFLAGS"
nkeynes@987
   359
], [true])
nkeynes@720
   360
AC_CHECK_HEADER([IOKit/IOKitLib.h], [
nkeynes@720
   361
     CDROM_DRIVER=osx
nkeynes@720
   362
     LIBS="$LIBS -framework IOKit"],[true])
nkeynes@709
   363
AM_CONDITIONAL(CDROM_LINUX, [test "x$CDROM_DRIVER" = "xlinux"])
nkeynes@709
   364
AM_CONDITIONAL(CDROM_OSX, [test "x$CDROM_DRIVER" = "xosx"])
nkeynes@709
   365
AM_CONDITIONAL(CDROM_NONE, [test "x$CDROM_DRIVER" = "x"])
nkeynes@1097
   366
if test "x$CDROM_DRIVER" = "xlinux"; then
nkeynes@1097
   367
   AC_DEFINE([HAVE_LINUX_CDROM],1,[Using the linux native CDROM driver])
nkeynes@1097
   368
fi
nkeynes@489
   369
nkeynes@614
   370
AC_CHECK_HEADER([linux/joystick.h], [
nkeynes@614
   371
    HAVE_LINUX_JOYSTICK_H=yes
nkeynes@1024
   372
    AC_DEFINE([HAVE_LINUX_JOYSTICK], 1, [Have linux joystick support]) 
nkeynes@1024
   373
    INPUT_DRIVERS="$INPUT_DRIVERS joy_linux" ], 
nkeynes@614
   374
  [ echo "Linux Joystick support not found, building without it."] )
nkeynes@614
   375
AM_CONDITIONAL(JOY_LINUX, [test "$HAVE_LINUX_JOYSTICK_H" = "yes"])
nkeynes@614
   376
nkeynes@1015
   377
dnl Check for LIRC
nkeynes@1015
   378
if test "x$with_lirc" != "xno"; then
nkeynes@1015
   379
    AC_CHECK_HEADER([lirc/lirc_client.h], [
nkeynes@1015
   380
        HAVE_LIRC_CLIENT_H=yes
nkeynes@1024
   381
        AC_DEFINE([HAVE_LIRC],1,[Have LIRC support]) 
nkeynes@1024
   382
        INPUT_DRIVERS="$INPUT_DRIVERS lirc"
nkeynes@1024
   383
      ],
nkeynes@1015
   384
      [ echo "LIRC support not found, building without it." ] )
nkeynes@1015
   385
fi
nkeynes@1015
   386
AM_CONDITIONAL(INPUT_LIRC, [test "$HAVE_LIRC_CLIENT_H" = "yes"])
nkeynes@489
   387
nkeynes@537
   388
dnl Check for cross-compiler availability - needed for system tests
nkeynes@521
   389
AC_PATH_PROG(SHCC, [sh-elf-gcc])
nkeynes@521
   390
AC_PATH_PROG(SHLD, [sh-elf-ld])
nkeynes@521
   391
AC_PATH_PROG(SHOBJCOPY, [sh-elf-objcopy])
nkeynes@521
   392
AC_PATH_PROG(ARMCC, [arm-elf-gcc])
nkeynes@521
   393
AC_PATH_PROG(ARMLD, [arm-elf-ld])
nkeynes@521
   394
AC_PATH_PROG(ARMOBJCOPY, [arm-elf-objcopy])
nkeynes@521
   395
nkeynes@521
   396
if test "x$SHCC" = "x" -o "x$SHLD" = "x" -o "x$SHOBJCOPY" = "x"; then
nkeynes@521
   397
  BUILD_SH="no"
nkeynes@521
   398
  echo "Warning: SH4 cross-compiler not found, system tests will be disabled."
nkeynes@521
   399
else
nkeynes@521
   400
  BUILD_SH="yes"
nkeynes@521
   401
fi
nkeynes@521
   402
if test "x$ARMCC" = "x" -o "x$ARMLD" = "x" -o "x$ARMOBJCOPY" = "x"; then
nkeynes@521
   403
  BUILD_ARM="no"
nkeynes@521
   404
  echo "Warning: ARM cross-compiler not found, AICA tests will be disabled."
nkeynes@521
   405
else
nkeynes@521
   406
  BUILD_ARM="yes"
nkeynes@521
   407
fi
nkeynes@521
   408
AM_CONDITIONAL(BUILD_SYSTEST, [test "$BUILD_SH" = "yes"])
nkeynes@521
   409
AM_CONDITIONAL(BUILD_ARMTEST, [test "$BUILD_ARM" = "yes"])
nkeynes@521
   410
nkeynes@987
   411
CFLAGS="$CFLAGS $STDCFLAG"
nkeynes@537
   412
nkeynes@537
   413
dnl ----------------------- All done, finish up -----------------------
nkeynes@503
   414
GETTEXT_PACKAGE=lxdream
nkeynes@1054
   415
LXDREAM_LIBS="$LIBS"
nkeynes@1054
   416
LIBS=""
nkeynes@1054
   417
AC_SUBST(LXDREAM_LIBS)
nkeynes@1
   418
AC_SUBST(GETTEXT_PACKAGE)
nkeynes@529
   419
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[translation domain])
nkeynes@1
   420
nkeynes@1
   421
dnl Add the languages which your application supports here.
nkeynes@664
   422
ALL_LINGUAS="de es it pt_BR"
nkeynes@1
   423
AM_GLIB_GNU_GETTEXT
nkeynes@1
   424
nkeynes@1
   425
AC_OUTPUT([
nkeynes@1
   426
Makefile
nkeynes@1
   427
src/Makefile
nkeynes@1
   428
po/Makefile.in
nkeynes@521
   429
test/Makefile
nkeynes@778
   430
Info.plist
nkeynes@1
   431
])
nkeynes@746
   432
AS_MKDIR_P(test/sh4)
nkeynes@1
   433
nkeynes@702
   434
dnl ------------------------- Print out a summary ----------------------
nkeynes@702
   435
nkeynes@702
   436
echo
nkeynes@702
   437
echo "Configuration complete"
nkeynes@702
   438
echo
nkeynes@702
   439
nkeynes@702
   440
if test "x$HAVE_GTK" = x; then
nkeynes@702
   441
  if test "x$HAVE_COCOA" = x; then
nkeynes@702
   442
     echo "  User interface: none"
nkeynes@702
   443
  else
nkeynes@702
   444
     echo "  User interface: Cocoa"
nkeynes@702
   445
  fi
nkeynes@702
   446
else
nkeynes@702
   447
  echo "  User interface: GTK"
nkeynes@702
   448
fi
nkeynes@702
   449
nkeynes@702
   450
if test "x$SH4_TRANSLATOR" = "x"; then
nkeynes@702
   451
  echo "  SH4 translator: None (emulation core only)"
nkeynes@702
   452
else
nkeynes@702
   453
  echo "  SH4 translator: $SH4_TRANSLATOR"
nkeynes@702
   454
fi
nkeynes@702
   455
nkeynes@702
   456
if test "x$VIDEO_DRIVERS" = "x"; then
nkeynes@702
   457
   echo "  Video drivers: none (no supported GL found)"
nkeynes@702
   458
else
nkeynes@702
   459
   echo "  Video drivers: $VIDEO_DRIVERS"
nkeynes@702
   460
fi
nkeynes@702
   461
nkeynes@702
   462
if test "x$AUDIO_DRIVERS" = "x"; then
nkeynes@702
   463
   echo "  Audio drivers: none (no supported output devices found)"
nkeynes@702
   464
else
nkeynes@702
   465
   echo "  Audio drivers: $AUDIO_DRIVERS"
nkeynes@702
   466
fi
nkeynes@702
   467
nkeynes@1024
   468
if test "x$INPUT_DRIVERS" = "x"; then
nkeynes@1031
   469
   echo "  Input drivers: none (no supported input devices found)"
nkeynes@1024
   470
else
nkeynes@1024
   471
   echo "  Input drivers: $INPUT_DRIVERS"
nkeynes@1024
   472
fi
nkeynes@1024
   473
nkeynes@709
   474
if test "x$CDROM_DRIVER" = "x"; then
nkeynes@709
   475
   echo "  CD-ROM driver: none (no supported cd-rom devices found)"
nkeynes@709
   476
else
nkeynes@1015
   477
   echo "  CD-ROM driver:  $CDROM_DRIVER"
nkeynes@709
   478
fi
nkeynes@1015
   479
.