Ported some modifications from trunk, also set the version number.
This commit is contained in:
parent
cf7df1ad13
commit
71231d8c24
|
@ -1,7 +1,7 @@
|
|||
dnl --- Package name is first argument to AC_INIT
|
||||
dnl --- Release version is second argument to AC_INIT
|
||||
|
||||
AC_INIT(desmume, [svn])
|
||||
AC_INIT(desmume, [0.9.10])
|
||||
|
||||
dnl -- find host architecture for some os specific libraries
|
||||
AC_CANONICAL_HOST
|
||||
|
@ -13,7 +13,7 @@ case $host in
|
|||
esac
|
||||
AC_SUBST(desmume_arch)
|
||||
|
||||
AM_INIT_AUTOMAKE([1.10 subdir-objects])
|
||||
AM_INIT_AUTOMAKE([1.10 subdir-objects tar-pax])
|
||||
|
||||
dnl -- make sure we have a c++ compiler
|
||||
AC_PROG_CXX
|
||||
|
|
|
@ -31,7 +31,7 @@ static bool glx_init(void) { return true; }
|
|||
static GLXContext ctx;
|
||||
static GLXPbuffer pbuf;
|
||||
|
||||
void deinit_glx_3Demu(void)
|
||||
int deinit_glx_3Demu(void)
|
||||
{
|
||||
Display *dpy = glXGetCurrentDisplay();
|
||||
|
||||
|
|
|
@ -20,5 +20,5 @@
|
|||
|
||||
#ifdef HAVE_GL_GLX
|
||||
int init_glx_3Demu(void);
|
||||
void deinit_glx_3Demu(void);
|
||||
int deinit_glx_3Demu(void);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue