mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[core] add enumeration debugging
* Alt-. to toggle * Also add configure option for test releases
This commit is contained in:
parent
d2576a9f5e
commit
f04167c51c
9 changed files with 92 additions and 13 deletions
|
@ -35,7 +35,7 @@ else
|
|||
LDFLAGS="-s"
|
||||
fi
|
||||
|
||||
# Alpha/Beta
|
||||
# Alpha/Beta/Test
|
||||
AC_ARG_ENABLE([alpha],[AS_HELP_STRING([--enable-alpha], [build an ALPHA release (default=no)])], [alpha_enabled=$enableval], [alpha_enabled='no'])
|
||||
if test "x$alpha_enabled" != "xno" ; then
|
||||
CFLAGS+=" -DALPHA"
|
||||
|
@ -46,6 +46,12 @@ if test "x$beta_enabled" != "xno" ; then
|
|||
CFLAGS+=" -DBETA"
|
||||
SUFFIX=_BETA
|
||||
fi
|
||||
AC_ARG_ENABLE([test],[AS_HELP_STRING([--enable-test=#], [build a TEST release (default=no)])], [test_enabled=$enableval], [test_enabled='no'])
|
||||
if test "x$test_enabled" != "xno" ; then
|
||||
if test "x$test_enabled" == "xyes" ; then $enableval="" ; fi
|
||||
CFLAGS+=" -DTEST=$enableval"
|
||||
SUFFIX=_TEST$enableval
|
||||
fi
|
||||
|
||||
AC_MSG_RESULT([enabling Large File Support (ISO support)])
|
||||
AM_CFLAGS="$AM_CFLAGS -D_FILE_OFFSET_BITS=64 -D_OFF_T_ -D_off_t=off64_t -Doff_t=off64_t -Doff32_t=long"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue