Search
lxdream.org :: lxdream/configure.in
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 704:2c1d6f8e69e7
prev702:d39fc81e9630
next709:18c39a8e504c
author nkeynes
date Wed Jun 25 00:39:02 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Tweak Cocoa status bar appearance. Looks about right now
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@503
     4
AM_INIT_AUTOMAKE(lxdream, 0.8.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@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@586
    22
AC_ARG_ENABLE( trace, 
nkeynes@586
    23
   AS_HELP_STRING( [--enable-trace], [Enable generation of IO traces (warning: hurts performance)]),
nkeynes@586
    24
   [if test "$enableval" == "yes"; then
nkeynes@586
    25
     AC_DEFINE(ENABLE_TRACE_IO, 1, [Enable IO tracing])
nkeynes@586
    26
    fi] )
nkeynes@586
    27
AC_ARG_ENABLE( watch,
nkeynes@586
    28
   AS_HELP_STRING( [--enable-watch], [Enable watchpoints in the debugger (warning: hurts performance)]),
nkeynes@586
    29
   [if test "$enableval" == "yes"; then
nkeynes@586
    30
     AC_DEFINE(ENABLE_WATCH, 1, [Enable watchpoints])
nkeynes@586
    31
   fi] )
nkeynes@671
    32
AC_ARG_ENABLE( sh4stats,
nkeynes@671
    33
   AS_HELP_STRING( [--enable-sh4stats], [Enable statistics on executed sh4 instructions]),
nkeynes@671
    34
   [if test "$enableval" == "yes"; then
nkeynes@671
    35
     AC_DEFINE(ENABLE_SH4STATS, 1, [Enable SH4 statistics])
nkeynes@671
    36
    fi] )
nkeynes@653
    37
AC_ARG_WITH( osmesa,
nkeynes@653
    38
   AS_HELP_STRING( [--with-osmesa], [Build with the osmesa GL library (software rendering)]),
nkeynes@653
    39
   [], [with_osmesa=no])
nkeynes@681
    40
AC_ARG_WITH( gtk,
nkeynes@681
    41
   AS_HELP_STRING( [--with-gtk], [Build with the GTK UI. Default on X11 systems]), [with_gtk=yes], [with_gtk=x11] )
nkeynes@653
    42
nkeynes@681
    43
dnl ------------ Check if we're building on Darwin --------------
nkeynes@660
    44
nkeynes@660
    45
dnl For starters, do we have a working objective-c compiler?
nkeynes@660
    46
lxdream_save_cppflags="$CPPFLAGS"
nkeynes@660
    47
CPPFLAGS="$CPPFLAGS -x objective-c"
nkeynes@660
    48
AC_TRY_COMPILE([@interface Foo @end],, [
nkeynes@660
    49
nkeynes@660
    50
   AC_CHECK_HEADER([Cocoa/Cocoa.h], [
nkeynes@660
    51
      HAVE_COCOA='yes'
nkeynes@660
    52
      APPLE_BUILD='yes'
nkeynes@660
    53
      LIBS="$LIBS -framework AppKit"
nkeynes@660
    54
      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@660
    55
      AC_DEFINE(HAVE_COCOA,[1],[Have Cocoa framework])
nkeynes@660
    56
      AC_DEFINE(APPLE_BUILD,[1],[Building on an apple platform. Things are different...])
nkeynes@704
    57
      if test "x$with_gtk" = "xx11"; then
nkeynes@704
    58
        with_gtk=no
nkeynes@704
    59
      fi
nkeynes@660
    60
   ])
nkeynes@660
    61
nkeynes@660
    62
], [CPPFLAGS="$lxdream_save_cppflags"] )
nkeynes@681
    63
AM_CONDITIONAL(GUI_COCOA, [test "$HAVE_COCOA" = 'yes' -a "$with_gtk" = "no"])
nkeynes@660
    64
nkeynes@537
    65
dnl ----------- Check for mandatory dependencies --------------
nkeynes@537
    66
dnl Check for libpng (required)
nkeynes@537
    67
PKG_CHECK_MODULES(LIBPNG, [libpng] )
nkeynes@529
    68
nkeynes@539
    69
dnl Implied by libpng, but check explicitly just in case
nkeynes@539
    70
AC_CHECK_LIB(z, uncompress, [], [
nkeynes@539
    71
    echo "Zlib (libz.so) could not be found, but is required."
nkeynes@539
    72
    exit 1])
nkeynes@539
    73
nkeynes@681
    74
if test "x$with_gtk" = "xno"; then
nkeynes@681
    75
   dnl Check for GLIB only
nkeynes@681
    76
   PKG_CHECK_MODULES(GLIB, glib-2.0)
nkeynes@681
    77
else
nkeynes@681
    78
   dnl Check for GTK
nkeynes@681
    79
   PKG_CHECK_MODULES(GTK, gtk+-2.0, [
nkeynes@681
    80
       HAVE_GTK='yes'
nkeynes@681
    81
       AC_DEFINE([HAVE_GTK],1,[Have GTK libraries])
nkeynes@681
    82
   ])
nkeynes@658
    83
nkeynes@681
    84
   dnl Which GTK port do we have?
nkeynes@681
    85
   LIBS="$LIBS $GTK_LIBS"
nkeynes@681
    86
   AC_CHECK_FUNC(gdk_x11_display_get_xdisplay, [ 
nkeynes@681
    87
      HAVE_GTK_X11='yes'
nkeynes@681
    88
      AC_DEFINE([HAVE_GTK_X11],1,[Building with GTK+X11]) ], [])
nkeynes@681
    89
   AC_CHECK_FUNC(gdk_quartz_window_get_nsview, [ 
nkeynes@681
    90
      HAVE_GTK_OSX='yes'
nkeynes@681
    91
      AC_DEFINE([HAVE_GTK_OSX],1,[Building with GTK+Cocoa]) ], [])
nkeynes@681
    92
fi
nkeynes@681
    93
nkeynes@658
    94
AM_CONDITIONAL(GUI_GTK, [test "$HAVE_GTK" = 'yes'])
nkeynes@658
    95
nkeynes@658
    96
dnl ------------------ Video driver support -------------------
nkeynes@658
    97
AS_IF([test "x$with_osmesa" != xno], [ 
nkeynes@658
    98
nkeynes@658
    99
dnl User requested OSMesa (ie pure software rendering)
nkeynes@658
   100
  AC_CHECK_LIB([OSMesa], [OSMesaCreateContext], [],
nkeynes@658
   101
    [AC_MSG_FAILURE( [--with-osmesa was given, but OSMesa library could not be found])])
nkeynes@658
   102
  AC_CHECK_HEADER([GL/osmesa.h], [],
nkeynes@658
   103
    [AC_MSG_FAILURE( [--with-osmesa was given, but osmesa.h could not be found])])
nkeynes@658
   104
  HAVE_OSMESA='yes'
nkeynes@702
   105
  VIDEO_DRIVERS="$VIDEO_DRIVERS osmesa"
nkeynes@658
   106
  AC_DEFINE([HAVE_OSMESA],1,[Building with the OSMesa video driver]) ], [
nkeynes@658
   107
nkeynes@658
   108
dnl Otherwise we want a real GL library (unless we're on darwin, in which case it's already
nkeynes@658
   109
dnl taken care of above).
nkeynes@658
   110
   if test "x$APPLE_BUILD" != 'xyes'; then
nkeynes@658
   111
      AC_CHECK_LIB(GL, glVertex3f, [], [
nkeynes@658
   112
          AC_MSG_FAILURE( ["The OpenGL library (libGL.so) could not be found, but is required."])])
nkeynes@658
   113
      AC_CHECK_HEADER([GL/gl.h], [], [
nkeynes@658
   114
          AC_MSG_FAILURE( ["The OpenGL header files (eg GL/gl.h) could not be found, but are required."])])
nkeynes@681
   115
   else
nkeynes@681
   116
      AC_CHECK_FUNC(NSOpenGLGetVersion, [
nkeynes@681
   117
         HAVE_NSGL='yes'
nkeynes@702
   118
         VIDEO_DRIVERS="$VIDEO_DRIVERS nsgl"
nkeynes@681
   119
         AC_DEFINE([HAVE_NSGL],1, [Have NSOpenGL support]) ] )
nkeynes@658
   120
   fi
nkeynes@658
   121
nkeynes@658
   122
dnl Now work out how to get from the UI to GL - this is usually the painful part.
nkeynes@658
   123
   if test "x$HAVE_GTK_X11" = "xyes"; then
nkeynes@658
   124
      if test "x$APPLE_BUILD" = "xyes"; then
nkeynes@658
   125
         LIBS="$LIBS -L/usr/X11/lib -lGL"
nkeynes@658
   126
      fi
nkeynes@658
   127
      AC_CHECK_FUNC(glXQueryVersion, [
nkeynes@658
   128
         HAVE_GLX='yes'
nkeynes@702
   129
         VIDEO_DRIVERS="$VIDEO_DRIVERS glx"
nkeynes@658
   130
         AC_DEFINE([HAVE_GLX], 1, [Have GLX support]) ] )
nkeynes@658
   131
   fi
nkeynes@658
   132
      
nkeynes@658
   133
])
nkeynes@658
   134
nkeynes@658
   135
nkeynes@537
   136
nkeynes@658
   137
AM_CONDITIONAL(VIDEO_OSMESA, [test "x$HAVE_OSMESA" = "xyes"])
nkeynes@658
   138
AM_CONDITIONAL(VIDEO_GLX, [test "x$HAVE_GLX" = "xyes"])
nkeynes@658
   139
AM_CONDITIONAL(VIDEO_NSGL, [test "x$HAVE_NSGL" = "xyes"])
nkeynes@658
   140
nkeynes@658
   141
dnl Check for optional (but highly desireable) OpenGL features
nkeynes@656
   142
AC_CHECK_FUNC(glGenFramebuffersEXT, [ AC_DEFINE([HAVE_OPENGL_FBO],1,[Have EXT_framebuffer_object support]) ], [])
nkeynes@656
   143
AC_CHECK_FUNC(glCreateShader, [ AC_DEFINE([HAVE_OPENGL_SHADER],1,[Have 2.0 shader support]) ], [])
nkeynes@656
   144
AC_CHECK_FUNC(glCreateShaderObjectARB, [ AC_DEFINE([HAVE_OPENGL_SHADER_ARB],1,[Have ARB shader support]) ], [])
nkeynes@687
   145
AC_CHECK_FUNC(glClampColorARB, [ AC_DEFINE([HAVE_OPENGL_CLAMP_COLOR],1,[Have Color Clamp]) ], [])
nkeynes@656
   146
nkeynes@521
   147
nkeynes@521
   148
dnl Check for a supported cpu target for translation purposes
nkeynes@521
   149
case $host_cpu in
nkeynes@675
   150
    i386|i486|i586|i686|x86_64)
nkeynes@526
   151
	SH4_TRANSLATOR="x86"
nkeynes@528
   152
        AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86], [SH4 Translator to use (if any)] );;
nkeynes@521
   153
esac
nkeynes@526
   154
AM_CONDITIONAL(BUILD_SH4X86, [test "$SH4_TRANSLATOR" = "x86" -o "$SH4_TRANSLATOR" = "x86_64"])
nkeynes@586
   155
AM_CONDITIONAL(BUILD_X86_64, [test "$SH4_TRANSLATOR" = "x86_64"])
nkeynes@94
   156
nkeynes@537
   157
dnl ------------------ Optional driver support -------------------
nkeynes@697
   158
dnl Check for Apple CoreAudio
nkeynes@702
   159
AC_CHECK_HEADER([CoreAudio/CoreAudio.h], [
nkeynes@697
   160
     HAVE_CORE_AUDIO=yes
nkeynes@702
   161
     LIBS="$LIBS -framework CoreAudio"
nkeynes@702
   162
     AUDIO_DRIVERS="$AUDIO_DRIVERS osx"
nkeynes@697
   163
     AC_DEFINE([HAVE_CORE_AUDIO], 1, [Have Apple CoreAudio support]) ],[true ])
nkeynes@697
   164
AM_CONDITIONAL( AUDIO_OSX, [test "$HAVE_CORE_AUDIO" = 'yes'] )
nkeynes@697
   165
nkeynes@657
   166
dnl Check for pulseaudio
nkeynes@657
   167
PKG_CHECK_MODULES(PULSE, [libpulse-simple], [
nkeynes@657
   168
     HAVE_PULSE='yes'
nkeynes@702
   169
     AUDIO_DRIVERS="$AUDIO_DRIVERS pulse"
nkeynes@657
   170
     AC_DEFINE([HAVE_PULSE],1,[Have pulseaudio support]) ], [true])
nkeynes@657
   171
AM_CONDITIONAL( AUDIO_PULSE, [test "$HAVE_PULSE" = 'yes'] )
nkeynes@657
   172
nkeynes@537
   173
dnl Check for esound
nkeynes@537
   174
PKG_CHECK_MODULES(ESOUND, [esound], [ 
nkeynes@537
   175
     HAVE_ESOUND='yes'
nkeynes@702
   176
     AUDIO_DRIVERS="$AUDIO_DRIVERS esd"
nkeynes@657
   177
     AC_DEFINE([HAVE_ESOUND],1,[Have esound support]) ], [true])
nkeynes@537
   178
AM_CONDITIONAL( AUDIO_ESOUND, [test "$HAVE_ESOUND" = 'yes'] )
nkeynes@537
   179
bhaal22@643
   180
dnl Check for alsa support
bhaal22@643
   181
PKG_CHECK_MODULES(ALSA, [alsa], [ 
bhaal22@643
   182
     HAVE_ALSA='yes'
nkeynes@702
   183
     AUDIO_DRIVERS="$AUDIO_DRIVERS alsa"
nkeynes@657
   184
     AC_DEFINE([HAVE_ALSA],1,[Have alsa support]) ], [true])
bhaal22@643
   185
AM_CONDITIONAL( AUDIO_ALSA, [test "$HAVE_ALSA" = 'yes'] )
bhaal22@643
   186
nkeynes@657
   187
nkeynes@537
   188
dnl Check for linux cdrom device support
nkeynes@489
   189
AC_CHECK_HEADER([linux/cdrom.h], [HAVE_LINUX_CDROM_H=yes], [
nkeynes@489
   190
    echo "Linux CDROM support not found, building without it."]  )
nkeynes@489
   191
AM_CONDITIONAL(CDROM_LINUX, [test "$HAVE_LINUX_CDROM_H" = "yes"])
nkeynes@489
   192
nkeynes@614
   193
AC_CHECK_HEADER([linux/joystick.h], [
nkeynes@614
   194
    HAVE_LINUX_JOYSTICK_H=yes
nkeynes@614
   195
    AC_DEFINE([HAVE_LINUX_JOYSTICK], 1, [Have linux joystick support]) ], 
nkeynes@614
   196
  [ echo "Linux Joystick support not found, building without it."] )
nkeynes@614
   197
AM_CONDITIONAL(JOY_LINUX, [test "$HAVE_LINUX_JOYSTICK_H" = "yes"])
nkeynes@614
   198
nkeynes@537
   199
dnl Check for cross-compiler availability - needed for system tests
nkeynes@521
   200
AC_PATH_PROG(SHCC, [sh-elf-gcc])
nkeynes@521
   201
AC_PATH_PROG(SHLD, [sh-elf-ld])
nkeynes@521
   202
AC_PATH_PROG(SHOBJCOPY, [sh-elf-objcopy])
nkeynes@521
   203
AC_PATH_PROG(ARMCC, [arm-elf-gcc])
nkeynes@521
   204
AC_PATH_PROG(ARMLD, [arm-elf-ld])
nkeynes@521
   205
AC_PATH_PROG(ARMOBJCOPY, [arm-elf-objcopy])
nkeynes@521
   206
nkeynes@521
   207
if test "x$SHCC" = "x" -o "x$SHLD" = "x" -o "x$SHOBJCOPY" = "x"; then
nkeynes@521
   208
  BUILD_SH="no"
nkeynes@521
   209
  echo "Warning: SH4 cross-compiler not found, system tests will be disabled."
nkeynes@521
   210
else
nkeynes@521
   211
  BUILD_SH="yes"
nkeynes@521
   212
fi
nkeynes@521
   213
if test "x$ARMCC" = "x" -o "x$ARMLD" = "x" -o "x$ARMOBJCOPY" = "x"; then
nkeynes@521
   214
  BUILD_ARM="no"
nkeynes@521
   215
  echo "Warning: ARM cross-compiler not found, AICA tests will be disabled."
nkeynes@521
   216
else
nkeynes@521
   217
  BUILD_ARM="yes"
nkeynes@521
   218
fi
nkeynes@521
   219
AM_CONDITIONAL(BUILD_SYSTEST, [test "$BUILD_SH" = "yes"])
nkeynes@521
   220
AM_CONDITIONAL(BUILD_ARMTEST, [test "$BUILD_ARM" = "yes"])
nkeynes@521
   221
nkeynes@537
   222
nkeynes@537
   223
dnl ----------------------- All done, finish up -----------------------
nkeynes@503
   224
GETTEXT_PACKAGE=lxdream
nkeynes@1
   225
AC_SUBST(GETTEXT_PACKAGE)
nkeynes@529
   226
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[translation domain])
nkeynes@1
   227
nkeynes@1
   228
dnl Add the languages which your application supports here.
nkeynes@664
   229
ALL_LINGUAS="de es it pt_BR"
nkeynes@1
   230
AM_GLIB_GNU_GETTEXT
nkeynes@1
   231
nkeynes@1
   232
AC_OUTPUT([
nkeynes@1
   233
Makefile
nkeynes@1
   234
src/Makefile
nkeynes@1
   235
po/Makefile.in
nkeynes@521
   236
test/Makefile
nkeynes@1
   237
])
nkeynes@1
   238
nkeynes@702
   239
dnl ------------------------- Print out a summary ----------------------
nkeynes@702
   240
nkeynes@702
   241
echo
nkeynes@702
   242
echo "Configuration complete"
nkeynes@702
   243
echo
nkeynes@702
   244
nkeynes@702
   245
if test "x$HAVE_GTK" = x; then
nkeynes@702
   246
  if test "x$HAVE_COCOA" = x; then
nkeynes@702
   247
     echo "  User interface: none"
nkeynes@702
   248
  else
nkeynes@702
   249
     echo "  User interface: Cocoa"
nkeynes@702
   250
  fi
nkeynes@702
   251
else
nkeynes@702
   252
  echo "  User interface: GTK"
nkeynes@702
   253
fi
nkeynes@702
   254
nkeynes@702
   255
if test "x$SH4_TRANSLATOR" = "x"; then
nkeynes@702
   256
  echo "  SH4 translator: None (emulation core only)"
nkeynes@702
   257
else
nkeynes@702
   258
  echo "  SH4 translator: $SH4_TRANSLATOR"
nkeynes@702
   259
fi
nkeynes@702
   260
nkeynes@702
   261
if test "x$VIDEO_DRIVERS" = "x"; then
nkeynes@702
   262
   echo "  Video drivers: none (no supported GL found)"
nkeynes@702
   263
else
nkeynes@702
   264
   echo "  Video drivers: $VIDEO_DRIVERS"
nkeynes@702
   265
fi
nkeynes@702
   266
nkeynes@702
   267
if test "x$AUDIO_DRIVERS" = "x"; then
nkeynes@702
   268
   echo "  Audio drivers: none (no supported output devices found)"
nkeynes@702
   269
else
nkeynes@702
   270
   echo "  Audio drivers: $AUDIO_DRIVERS"
nkeynes@702
   271
fi
nkeynes@702
   272
.