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