mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-31 06:48:26 -04:00
[sl] syslinux support (EXPERIMENTAL)
* MS platforms only (*BREAKS* MinGW)
This commit is contained in:
parent
130afd8294
commit
acf7d072b0
43 changed files with 3063 additions and 57 deletions
13
configure.ac
13
configure.ac
|
@ -43,10 +43,21 @@ AC_ARG_WITH([freedos],
|
|||
[],
|
||||
[with_freedos=yes])
|
||||
if test "x$with_freedos" != "xno" ; then
|
||||
AM_RCFLAGS="-DWITH_FREEDOS"
|
||||
AM_RCFLAGS="${AM_RCFLAGS} -DWITH_FREEDOS"
|
||||
EXESUFFIX="f"
|
||||
fi
|
||||
|
||||
AC_ARG_WITH([syslinux],
|
||||
[AS_HELP_STRING([--with-syslinux],
|
||||
[embed SysLinux support (default=yes)])],
|
||||
[],
|
||||
[with_freedos=yes])
|
||||
if test "x$with_syslinux" != "xno" ; then
|
||||
AM_RCFLAGS="${AM_RCFLAGS} -DWITH_SYSLINUX"
|
||||
EXESUFFIX="f"
|
||||
fi
|
||||
|
||||
|
||||
# Debug symbols
|
||||
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [keep debug symbols for gdb (default=yes)]),
|
||||
[debug_enabled=$enableval],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue