Search
lxdream.org :: lxdream/configure.in
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 1115:90292b2f2243
prev1113:174fa8e137b6
next1147:e04e4af64626
author nkeynes
date Wed Sep 08 08:42:09 2010 +1000 (13 years ago)
permissions -rw-r--r--
last change Abort configure when we can't find a gdk display method
Add -lX11 to the GTK-X11 lib list explicitly - on OSX at least pkg-config
doesn't do the right thing automatically
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@1115
   213
      dnl Add -lX11 explicitly as some pkg-configs get it wrong
nkeynes@1115
   214
      GTK_LIBS="$GTK_LIBS -lX11"
nkeynes@1115
   215
      LIBS="$LIBS -lX11"
nkeynes@681
   216
   AC_CHECK_FUNC(gdk_quartz_window_get_nsview, [ 
nkeynes@681
   217
      HAVE_GTK_OSX='yes'
nkeynes@681
   218
      AC_DEFINE([HAVE_GTK_OSX],1,[Building with GTK+Cocoa]) ], [])
nkeynes@1115
   219
   if test "x$HAVE_GTK_X11$HAVE_GTK_OSX" = "x"; then
nkeynes@1115
   220
      AC_MSG_FAILURE( [Unable to identify GTK platform] )
nkeynes@1115
   221
   fi
nkeynes@635
   222
fi
nkeynes@537
   223
nkeynes@658
   224
AM_CONDITIONAL(GUI_GTK, [test "$HAVE_GTK" = 'yes'])
nkeynes@658
   225
nkeynes@1110
   226
PKG_CHECK_MODULES(LIBISOFS, [libisofs-1] )
nkeynes@1110
   227
dnl AC_CHECK_HEADER([libisofs/libisofs.h], [
nkeynes@1110
   228
   dnl AC_CHECK_LIB(isofs, [iso_data_source_new_from_file], [
nkeynes@1110
   229
      dnl LIBS="$LIBS -lisofs"
nkeynes@1110
   230
   dnl ], [ AC_MSG_FAILURE( ["Libisofs library not found, but is required"]) ])], 
nkeynes@1110
   231
      dnl [ AC_MSG_FAILURE( ["Libisofs headers not found, but is required"]) ])
nkeynes@1107
   232
nkeynes@658
   233
dnl ------------------ Video driver support -------------------
nkeynes@658
   234
AS_IF([test "x$with_osmesa" != xno], [ 
nkeynes@658
   235
nkeynes@658
   236
dnl User requested OSMesa (ie pure software rendering)
nkeynes@658
   237
  AC_CHECK_LIB([OSMesa], [OSMesaCreateContext], [],
nkeynes@658
   238
    [AC_MSG_FAILURE( [--with-osmesa was given, but OSMesa library could not be found])])
nkeynes@658
   239
  AC_CHECK_HEADER([GL/osmesa.h], [],
nkeynes@658
   240
    [AC_MSG_FAILURE( [--with-osmesa was given, but osmesa.h could not be found])])
nkeynes@658
   241
  HAVE_OSMESA='yes'
nkeynes@702
   242
  VIDEO_DRIVERS="$VIDEO_DRIVERS osmesa"
nkeynes@658
   243
  AC_DEFINE([HAVE_OSMESA],1,[Building with the OSMesa video driver]) ], [
nkeynes@658
   244
nkeynes@658
   245
dnl Otherwise we want a real GL library (unless we're on darwin, in which case it's already
nkeynes@658
   246
dnl taken care of above).
nkeynes@658
   247
   if test "x$APPLE_BUILD" != 'xyes'; then
nkeynes@1110
   248
      PKG_CHECK_MODULES(LIBGL, [gl] )
nkeynes@1110
   249
      dnl AC_CHECK_LIB(GL, glVertex3f, [], [
nkeynes@1110
   250
          dnl AC_MSG_FAILURE( ["The OpenGL library (libGL.so) could not be found, but is required."])])
nkeynes@1110
   251
      dnl AC_CHECK_HEADER([GL/gl.h], [], [
nkeynes@1110
   252
          dnl AC_MSG_FAILURE( ["The OpenGL header files (eg GL/gl.h) could not be found, but are required."])])
nkeynes@1113
   253
      LIBS="$LIBS $LIBGL_LIBS";
nkeynes@1113
   254
      CPPFLAGS="$CPPFLAGS $LIBGL_CFLAGS";
nkeynes@681
   255
   else
nkeynes@681
   256
      AC_CHECK_FUNC(NSOpenGLGetVersion, [
nkeynes@681
   257
         HAVE_NSGL='yes'
nkeynes@702
   258
         VIDEO_DRIVERS="$VIDEO_DRIVERS nsgl"
nkeynes@681
   259
         AC_DEFINE([HAVE_NSGL],1, [Have NSOpenGL support]) ] )
nkeynes@658
   260
   fi
nkeynes@658
   261
nkeynes@658
   262
dnl Now work out how to get from the UI to GL - this is usually the painful part.
nkeynes@658
   263
   if test "x$HAVE_GTK_X11" = "xyes"; then
nkeynes@658
   264
      if test "x$APPLE_BUILD" = "xyes"; then
nkeynes@658
   265
         LIBS="$LIBS -L/usr/X11/lib -lGL"
nkeynes@658
   266
      fi
nkeynes@658
   267
      AC_CHECK_FUNC(glXQueryVersion, [
nkeynes@658
   268
         HAVE_GLX='yes'
nkeynes@702
   269
         VIDEO_DRIVERS="$VIDEO_DRIVERS glx"
nkeynes@658
   270
         AC_DEFINE([HAVE_GLX], 1, [Have GLX support]) ] )
nkeynes@658
   271
   fi
nkeynes@658
   272
      
nkeynes@539
   273
])
nkeynes@539
   274
nkeynes@521
   275
nkeynes@537
   276
nkeynes@658
   277
AM_CONDITIONAL(VIDEO_OSMESA, [test "x$HAVE_OSMESA" = "xyes"])
nkeynes@658
   278
AM_CONDITIONAL(VIDEO_GLX, [test "x$HAVE_GLX" = "xyes"])
nkeynes@658
   279
AM_CONDITIONAL(VIDEO_NSGL, [test "x$HAVE_NSGL" = "xyes"])
nkeynes@658
   280
nkeynes@658
   281
dnl Check for optional (but highly desireable) OpenGL features
nkeynes@656
   282
AC_CHECK_FUNC(glGenFramebuffersEXT, [ AC_DEFINE([HAVE_OPENGL_FBO],1,[Have EXT_framebuffer_object support]) ], [])
nkeynes@656
   283
AC_CHECK_FUNC(glCreateShader, [ AC_DEFINE([HAVE_OPENGL_SHADER],1,[Have 2.0 shader support]) ], [])
nkeynes@656
   284
AC_CHECK_FUNC(glCreateShaderObjectARB, [ AC_DEFINE([HAVE_OPENGL_SHADER_ARB],1,[Have ARB shader support]) ], [])
nkeynes@687
   285
AC_CHECK_FUNC(glClampColorARB, [ AC_DEFINE([HAVE_OPENGL_CLAMP_COLOR],1,[Have Color Clamp]) ], [])
nkeynes@656
   286
nkeynes@521
   287
nkeynes@734
   288
dnl ------------------- SH4 translator target -------------------
nkeynes@734
   289
nkeynes@734
   290
if test "x$enable_translator" != "xno"; then
nkeynes@734
   291
    case $host_cpu in
nkeynes@734
   292
        i386|i486|i586|i686|x86_64)
nkeynes@734
   293
	    SH4_TRANSLATOR="x86"
nkeynes@734
   294
            AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86], [SH4 Translator to use (if any)] );;
nkeynes@734
   295
    esac
nkeynes@734
   296
fi
nkeynes@734
   297
AM_CONDITIONAL(BUILD_SH4X86, [test "$SH4_TRANSLATOR" = "x86"])
nkeynes@94
   298
nkeynes@537
   299
dnl ------------------ Optional driver support -------------------
nkeynes@697
   300
dnl Check for Apple CoreAudio
nkeynes@702
   301
AC_CHECK_HEADER([CoreAudio/CoreAudio.h], [
nkeynes@697
   302
     HAVE_CORE_AUDIO=yes
nkeynes@702
   303
     LIBS="$LIBS -framework CoreAudio"
nkeynes@702
   304
     AUDIO_DRIVERS="$AUDIO_DRIVERS osx"
nkeynes@697
   305
     AC_DEFINE([HAVE_CORE_AUDIO], 1, [Have Apple CoreAudio support]) ],[true ])
nkeynes@697
   306
AM_CONDITIONAL( AUDIO_OSX, [test "$HAVE_CORE_AUDIO" = 'yes'] )
nkeynes@697
   307
nkeynes@989
   308
dnl Check for SDL (only used for audio at the moment)
nkeynes@989
   309
if test "x$with_sdl" != "xno"; then
nkeynes@989
   310
   PKG_CHECK_MODULES(SDL, [sdl], [
nkeynes@989
   311
       HAVE_SDL='yes'
nkeynes@989
   312
       AUDIO_DRIVERS="$AUDIO_DRIVERS sdl"
nkeynes@989
   313
       AC_DEFINE([HAVE_SDL],1,[Have SDL support])
nkeynes@989
   314
   ], [
nkeynes@989
   315
      if test "x$with_sdl" = "xyes"; then
nkeynes@989
   316
         AC_MSG_FAILURE( ["SDL libraries could not be found (but were required)] )
nkeynes@989
   317
      fi
nkeynes@989
   318
   ])
nkeynes@989
   319
fi
nkeynes@989
   320
AM_CONDITIONAL( AUDIO_SDL, [test "$HAVE_SDL" = 'yes'] )
nkeynes@989
   321
nkeynes@657
   322
dnl Check for pulseaudio
nkeynes@714
   323
if test "x$with_pulse" != "xno"; then
nkeynes@714
   324
   PKG_CHECK_MODULES(PULSE, [libpulse-simple], [
nkeynes@714
   325
       HAVE_PULSE='yes'
nkeynes@714
   326
       AUDIO_DRIVERS="$AUDIO_DRIVERS pulse"
nkeynes@714
   327
       AC_DEFINE([HAVE_PULSE],1,[Have pulseaudio support]) 
nkeynes@714
   328
   ], [
nkeynes@714
   329
       if test "x$with_pulse" = "xyes"; then
nkeynes@714
   330
          AC_MSG_FAILURE( [PulseAudio audio package could not be found (but was required)] )
nkeynes@714
   331
       fi
nkeynes@714
   332
   ])
nkeynes@714
   333
fi
nkeynes@657
   334
AM_CONDITIONAL( AUDIO_PULSE, [test "$HAVE_PULSE" = 'yes'] )
nkeynes@657
   335
nkeynes@537
   336
dnl Check for esound
nkeynes@714
   337
if test "x$with_esd" != "xno"; then
nkeynes@714
   338
   PKG_CHECK_MODULES(ESOUND, [esound], [ 
nkeynes@714
   339
       HAVE_ESOUND='yes'
nkeynes@714
   340
       AUDIO_DRIVERS="$AUDIO_DRIVERS esd"
nkeynes@714
   341
       AC_DEFINE([HAVE_ESOUND],1,[Have esound support]) 
nkeynes@714
   342
   ], [
nkeynes@714
   343
       if test "x$with_esd" = "xyes"; then
nkeynes@714
   344
          AC_MSG_FAILURE( [ESounD audio package could not be found (but was required)] )
nkeynes@714
   345
       fi
nkeynes@714
   346
   ])
nkeynes@714
   347
fi
nkeynes@537
   348
AM_CONDITIONAL( AUDIO_ESOUND, [test "$HAVE_ESOUND" = 'yes'] )
nkeynes@537
   349
bhaal22@643
   350
dnl Check for alsa support
bhaal22@643
   351
PKG_CHECK_MODULES(ALSA, [alsa], [ 
bhaal22@643
   352
     HAVE_ALSA='yes'
nkeynes@702
   353
     AUDIO_DRIVERS="$AUDIO_DRIVERS alsa"
nkeynes@657
   354
     AC_DEFINE([HAVE_ALSA],1,[Have alsa support]) ], [true])
bhaal22@643
   355
AM_CONDITIONAL( AUDIO_ALSA, [test "$HAVE_ALSA" = 'yes'] )
bhaal22@643
   356
nkeynes@657
   357
nkeynes@709
   358
dnl Check for native cdrom support. There can be only one.
nkeynes@987
   359
AC_CHECK_HEADER([linux/cdrom.h], [
nkeynes@987
   360
     CDROM_DRIVER=linux
nkeynes@987
   361
     dnl Some kernel versions have non-c99 compliant headers - check here
nkeynes@987
   362
     AC_MSG_CHECKING([C99 compliant kernel headers])
nkeynes@987
   363
     old_CFLAGS="$CFLAGS"
nkeynes@987
   364
     CFLAGS="$CFLAGS $STDCFLAG"
nkeynes@987
   365
     AC_TRY_COMPILE([#include <linux/cdrom.h>], [], [AC_MSG_RESULT([Yes])], [
nkeynes@987
   366
        AC_MSG_RESULT([No])
nkeynes@987
   367
        STDCFLAG="-std=gnu99"])
nkeynes@987
   368
     CFLAGS="$old_CFLAGS"
nkeynes@987
   369
], [true])
nkeynes@720
   370
AC_CHECK_HEADER([IOKit/IOKitLib.h], [
nkeynes@720
   371
     CDROM_DRIVER=osx
nkeynes@720
   372
     LIBS="$LIBS -framework IOKit"],[true])
nkeynes@709
   373
AM_CONDITIONAL(CDROM_LINUX, [test "x$CDROM_DRIVER" = "xlinux"])
nkeynes@709
   374
AM_CONDITIONAL(CDROM_OSX, [test "x$CDROM_DRIVER" = "xosx"])
nkeynes@709
   375
AM_CONDITIONAL(CDROM_NONE, [test "x$CDROM_DRIVER" = "x"])
nkeynes@1097
   376
if test "x$CDROM_DRIVER" = "xlinux"; then
nkeynes@1097
   377
   AC_DEFINE([HAVE_LINUX_CDROM],1,[Using the linux native CDROM driver])
nkeynes@1097
   378
fi
nkeynes@489
   379
nkeynes@614
   380
AC_CHECK_HEADER([linux/joystick.h], [
nkeynes@614
   381
    HAVE_LINUX_JOYSTICK_H=yes
nkeynes@1024
   382
    AC_DEFINE([HAVE_LINUX_JOYSTICK], 1, [Have linux joystick support]) 
nkeynes@1024
   383
    INPUT_DRIVERS="$INPUT_DRIVERS joy_linux" ], 
nkeynes@614
   384
  [ echo "Linux Joystick support not found, building without it."] )
nkeynes@614
   385
AM_CONDITIONAL(JOY_LINUX, [test "$HAVE_LINUX_JOYSTICK_H" = "yes"])
nkeynes@614
   386
nkeynes@1015
   387
dnl Check for LIRC
nkeynes@1015
   388
if test "x$with_lirc" != "xno"; then
nkeynes@1015
   389
    AC_CHECK_HEADER([lirc/lirc_client.h], [
nkeynes@1015
   390
        HAVE_LIRC_CLIENT_H=yes
nkeynes@1024
   391
        AC_DEFINE([HAVE_LIRC],1,[Have LIRC support]) 
nkeynes@1024
   392
        INPUT_DRIVERS="$INPUT_DRIVERS lirc"
nkeynes@1024
   393
      ],
nkeynes@1015
   394
      [ echo "LIRC support not found, building without it." ] )
nkeynes@1015
   395
fi
nkeynes@1015
   396
AM_CONDITIONAL(INPUT_LIRC, [test "$HAVE_LIRC_CLIENT_H" = "yes"])
nkeynes@489
   397
nkeynes@537
   398
dnl Check for cross-compiler availability - needed for system tests
nkeynes@521
   399
AC_PATH_PROG(SHCC, [sh-elf-gcc])
nkeynes@521
   400
AC_PATH_PROG(SHLD, [sh-elf-ld])
nkeynes@521
   401
AC_PATH_PROG(SHOBJCOPY, [sh-elf-objcopy])
nkeynes@521
   402
AC_PATH_PROG(ARMCC, [arm-elf-gcc])
nkeynes@521
   403
AC_PATH_PROG(ARMLD, [arm-elf-ld])
nkeynes@521
   404
AC_PATH_PROG(ARMOBJCOPY, [arm-elf-objcopy])
nkeynes@521
   405
nkeynes@521
   406
if test "x$SHCC" = "x" -o "x$SHLD" = "x" -o "x$SHOBJCOPY" = "x"; then
nkeynes@521
   407
  BUILD_SH="no"
nkeynes@521
   408
  echo "Warning: SH4 cross-compiler not found, system tests will be disabled."
nkeynes@521
   409
else
nkeynes@521
   410
  BUILD_SH="yes"
nkeynes@521
   411
fi
nkeynes@521
   412
if test "x$ARMCC" = "x" -o "x$ARMLD" = "x" -o "x$ARMOBJCOPY" = "x"; then
nkeynes@521
   413
  BUILD_ARM="no"
nkeynes@521
   414
  echo "Warning: ARM cross-compiler not found, AICA tests will be disabled."
nkeynes@521
   415
else
nkeynes@521
   416
  BUILD_ARM="yes"
nkeynes@521
   417
fi
nkeynes@521
   418
AM_CONDITIONAL(BUILD_SYSTEST, [test "$BUILD_SH" = "yes"])
nkeynes@521
   419
AM_CONDITIONAL(BUILD_ARMTEST, [test "$BUILD_ARM" = "yes"])
nkeynes@521
   420
nkeynes@987
   421
CFLAGS="$CFLAGS $STDCFLAG"
nkeynes@537
   422
nkeynes@537
   423
dnl ----------------------- All done, finish up -----------------------
nkeynes@503
   424
GETTEXT_PACKAGE=lxdream
nkeynes@1054
   425
LXDREAM_LIBS="$LIBS"
nkeynes@1054
   426
LIBS=""
nkeynes@1054
   427
AC_SUBST(LXDREAM_LIBS)
nkeynes@1
   428
AC_SUBST(GETTEXT_PACKAGE)
nkeynes@529
   429
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[translation domain])
nkeynes@1
   430
nkeynes@1
   431
dnl Add the languages which your application supports here.
nkeynes@664
   432
ALL_LINGUAS="de es it pt_BR"
nkeynes@1
   433
AM_GLIB_GNU_GETTEXT
nkeynes@1
   434
nkeynes@1
   435
AC_OUTPUT([
nkeynes@1
   436
Makefile
nkeynes@1
   437
src/Makefile
nkeynes@1
   438
po/Makefile.in
nkeynes@521
   439
test/Makefile
nkeynes@778
   440
Info.plist
nkeynes@1
   441
])
nkeynes@746
   442
AS_MKDIR_P(test/sh4)
nkeynes@1
   443
nkeynes@702
   444
dnl ------------------------- Print out a summary ----------------------
nkeynes@702
   445
nkeynes@702
   446
echo
nkeynes@702
   447
echo "Configuration complete"
nkeynes@702
   448
echo
nkeynes@702
   449
nkeynes@702
   450
if test "x$HAVE_GTK" = x; then
nkeynes@702
   451
  if test "x$HAVE_COCOA" = x; then
nkeynes@702
   452
     echo "  User interface: none"
nkeynes@702
   453
  else
nkeynes@702
   454
     echo "  User interface: Cocoa"
nkeynes@702
   455
  fi
nkeynes@702
   456
else
nkeynes@702
   457
  echo "  User interface: GTK"
nkeynes@702
   458
fi
nkeynes@702
   459
nkeynes@702
   460
if test "x$SH4_TRANSLATOR" = "x"; then
nkeynes@702
   461
  echo "  SH4 translator: None (emulation core only)"
nkeynes@702
   462
else
nkeynes@702
   463
  echo "  SH4 translator: $SH4_TRANSLATOR"
nkeynes@702
   464
fi
nkeynes@702
   465
nkeynes@702
   466
if test "x$VIDEO_DRIVERS" = "x"; then
nkeynes@702
   467
   echo "  Video drivers: none (no supported GL found)"
nkeynes@702
   468
else
nkeynes@702
   469
   echo "  Video drivers: $VIDEO_DRIVERS"
nkeynes@702
   470
fi
nkeynes@702
   471
nkeynes@702
   472
if test "x$AUDIO_DRIVERS" = "x"; then
nkeynes@702
   473
   echo "  Audio drivers: none (no supported output devices found)"
nkeynes@702
   474
else
nkeynes@702
   475
   echo "  Audio drivers: $AUDIO_DRIVERS"
nkeynes@702
   476
fi
nkeynes@702
   477
nkeynes@1024
   478
if test "x$INPUT_DRIVERS" = "x"; then
nkeynes@1031
   479
   echo "  Input drivers: none (no supported input devices found)"
nkeynes@1024
   480
else
nkeynes@1024
   481
   echo "  Input drivers: $INPUT_DRIVERS"
nkeynes@1024
   482
fi
nkeynes@1024
   483
nkeynes@709
   484
if test "x$CDROM_DRIVER" = "x"; then
nkeynes@709
   485
   echo "  CD-ROM driver: none (no supported cd-rom devices found)"
nkeynes@709
   486
else
nkeynes@1015
   487
   echo "  CD-ROM driver:  $CDROM_DRIVER"
nkeynes@709
   488
fi
nkeynes@1015
   489
.