Skip to content

Commit

Permalink
2.5.6dev
Browse files Browse the repository at this point in the history
  • Loading branch information
FrodeSolheim committed Aug 3, 2014
1 parent 2f5f497 commit eb0d810
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Version 2.5.6dev:
* Added slirp support (not tested yet, not enabled by default).
* Enabled A2065 (not tested yet, not enabled by default).
* FS-UAE now uses automake in addition to autoconf.
* New requirement: libmpeg2 / libmpeg2convert for CD32 FMV support.
* Some bugfixes based on static code analysis + code cleanup.

Version 2.5.5dev:

Expand Down
3 changes: 1 addition & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ AC_INIT([FS-UAE], [2.5.6dev],
AC_CONFIG_AUX_DIR([.])
AC_CANONICAL_SYSTEM
AC_CONFIG_SRCDIR([src/main.cpp])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])
# AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE([subdir-objects])
AM_INIT_AUTOMAKE([tar-ustar subdir-objects])

AC_SUBST([PACKAGE_SERIES], [devel])

Expand Down
1 change: 1 addition & 0 deletions src/cdummy.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 1 addition & 1 deletion src/cppdummy.cpp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#include "zfile.h"

4 changes: 4 additions & 0 deletions src/include/uae/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#include "config.h"
#endif

#ifndef __cplusplus
#include <stdbool.h>
#endif

/* Define uae_ integer types. Prefer long long int for uae_x64 since we can
* then use the %lld format specifier for both 32-bit and 64-bit instead of
* the ugly PRIx64 macros. */
Expand Down

0 comments on commit eb0d810

Please sign in to comment.