Configure Failing in MSYS

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:---------------------------
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on line

c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message no
matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling me
I need to have the DXSDK environment variable set. I don’t have the DX SDK
installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker

Just a guess, but do you perhaps have a really out of date MinGW and MSys? I just built SDL2 recently with on a relatively stock MinGW installation. By stock, I mean a fresh install via the installer ( http://sourceforge.net/projects/mingw/files/latest/download?source=files ). Alternatively, you can do some updates from Msys with mingw-get (“mingw-get update” to make sure you have latest lists [also a good reference for the packages available], “mingw-get upgrade gcc” to upgrade gcc, “mingw-get install mintty” to get mintty, etc). That’s all I ever do anymore: A fresh MinGW+MSys install, and a TortoiseHG install on a new machine, and I have everything I need to get/build SDL.

That said, a build from a week ago had broken haptic library code, so I’ve been configuring with --disable-haptic ever since.------------------------
| Mike Kasprzak | Sykhronics Entertainment (http://www.sykhronics.com) | Blog (http://www.toonormal.com) | Twitter (http://www.twitter.com/mikekasprzak) | Ludum Dare (http://ludumdare.com) |

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message no
matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling
me I need to have the DXSDK environment variable set. I don’t have the DX
SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

Seems to work fine using configure too for me, for what it’s worth.
Obviously you have to use a separate subdir.

eg.
mkdir build
cd build
…/configure

This is on both Windows 7 64-bit and 32-bit. Sorry I don’t have an XP box
around to test it on though I’m afraid.~
Doug.

On Sat, Nov 24, 2012 at 6:36 PM, Doug <@Doug1> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message
no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling
me I need to have the DXSDK environment variable set. I don’t have the DX
SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

**
Just a guess, but do you perhaps have a really out of date MinGW and MSys?
I just built SDL2 recently with on a relatively stock MinGW installation.

I’m using the MinGW package from nuwen.net (something I’ve used for quite a
while), which includes gcc 4.7.1. I see there’s now a newer release with
4.7.2. At any rate, it’s not old. My MSYS installation is also recent. I
just bought this system in August and installed this stuff shortly after.
I’ll see about trying a different set up, though. Not something I had
considered.

Mike ParkerOn Sat, Nov 24, 2012 at 11:54 AM, PoV wrote:

Well, the thing is, I really wouldn’t want to turn DirectX off. I get
DirectX when I compile with via configure & make, so I would expect to work
with CMake as well.On Sat, Nov 24, 2012 at 7:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker <@Michael_Parker>wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message
no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling
me I need to have the DXSDK environment variable set. I don’t have the DX
SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker

This is exactly what I did when I got the error. At any rate, it appears to
have been a problem with the configuration in the nuwen package. I
installed fresh via mingw-get and was able to compile. I’m still curious to
know what caused the error, but I’ll take that over to nuwen.net. Thanks
for the help.On Sat, Nov 24, 2012 at 7:40 PM, Doug <douglas.linder at gmail.com> wrote:

Seems to work fine using configure too for me, for what it’s worth.
Obviously you have to use a separate subdir.

eg.
mkdir build
cd build
…/configure

This is on both Windows 7 64-bit and 32-bit. Sorry I don’t have an XP box
around to test it on though I’m afraid.

~
Doug.

On Sat, Nov 24, 2012 at 6:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker <@Michael_Parker>wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message
no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling
me I need to have the DXSDK environment variable set. I don’t have the DX
SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker

OK. I’ve given this a try from the command line again and encountering the
same errors I had the last time (which originally prompted me to use
cmake-gui).

cd sdl
mkdir cmbuild
cd cmbuild

Mike at Mike-PC /c/dev/c/libs/sdl/cmbuild
$ cmake … -G"MSYS Makefiles" -DDIRECTX=NO
CMake Error at CMakeLists.txt:2 (message):
Prevented in-tree built. Please create a build directory outside of the
SDL source code and call cmake from there

I go up outside of the SDL source tree, create a sibling directory and try
again. Same error.

I’ve got it compiling again with configure/make, but if there’s anything
else I can do to determine if this is a problem on my end or with the cmake
script, I’ll be happy to help.On Sat, Nov 24, 2012 at 7:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker <@Michael_Parker>wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot,
I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command
line at all. It tells me to
build from a different directory, but when I do, I get the same message
no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling
me I need to have the DXSDK environment variable set. I don’t have the DX
SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker

Just a quick question, in cmake, when you select the compilers and make,
are you using the build tools with the “mingw32-” prefix? If not, try
those. I think I had a similar problem a while back, and that fixed it for
me.

-AlexOn Sat, Nov 24, 2012 at 7:31 AM, Michael Parker wrote:

This is exactly what I did when I got the error. At any rate, it appears
to have been a problem with the configuration in the nuwen package. I
installed fresh via mingw-get and was able to compile. I’m still curious to
know what caused the error, but I’ll take that over to nuwen.net. Thanks
for the help.

On Sat, Nov 24, 2012 at 7:40 PM, Doug <douglas.linder at gmail.com> wrote:

Seems to work fine using configure too for me, for what it’s worth.
Obviously you have to use a separate subdir.

eg.
mkdir build
cd build
…/configure

This is on both Windows 7 64-bit and 32-bit. Sorry I don’t have an XP box
around to test it on though I’m afraid.

~
Doug.

On Sat, Nov 24, 2012 at 6:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker wrote:

Running configure both from Mercurial and from the latest SDL2
snapshot, I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo
$(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo
$(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on

line
c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the
command line at all. It tells me to
build from a different directory, but when I do, I get the same message
no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out
telling me I need to have the DXSDK environment variable set. I don’t have
the DX SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via
configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

Gave it a go and it still fails wanting the DXSDK_DIR.=====================================

CMake Error at cmake/macros.cmake:28 (message):

*** ERROR: DIRECTX requires the $DXSDK_DIR environment variable to be set

Call Stack (most recent call first):

CMakeLists.txt:736 (message_error)

=====================================

On Sun, Nov 25, 2012 at 3:27 AM, Alex Barry <alex.barry at gmail.com> wrote:

Just a quick question, in cmake, when you select the compilers and make, are you using the build tools with the “mingw32-” prefix? If not, try those. I think I had a similar problem a while back, and that fixed it for me.

-Alex

On Sat, Nov 24, 2012 at 7:31 AM, Michael Parker <@Michael_Parker> wrote:

This is exactly what I did when I got the error. At any rate, it appears to have been a problem with the configuration in the nuwen package. I installed fresh via mingw-get and was able to compile. I’m still curious to know what caused the error, but I’ll take that over to nuwen.net. Thanks for the help.

On Sat, Nov 24, 2012 at 7:40 PM, Doug <douglas.linder at gmail.com> wrote:

Seems to work fine using configure too for me, for what it’s worth.
Obviously you have to use a separate subdir.

eg.
mkdir build
cd build
…/configure

This is on both Windows 7 64-bit and 32-bit. Sorry I don’t have an XP box around to test it on though I’m afraid.

~
Doug.

On Sat, Nov 24, 2012 at 6:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker <@Michael_Parker> wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot, I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo $(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo $(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on line

c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command line at all. It tells me to
build from a different directory, but when I do, I get the same message no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling me I need to have the DXSDK environment variable set. I don’t have the DX SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker

This was with cmake-gui, btw, as I still can’t get it going at all
from the command line.On Sun, Nov 25, 2012 at 5:31 PM, Michael Parker <@Michael_Parker> wrote:

Gave it a go and it still fails wanting the DXSDK_DIR.

=====================================

CMake Error at cmake/macros.cmake:28 (message):

*** ERROR: DIRECTX requires the $DXSDK_DIR environment variable to be set

Call Stack (most recent call first):

CMakeLists.txt:736 (message_error)

=====================================

On Sun, Nov 25, 2012 at 3:27 AM, Alex Barry <alex.barry at gmail.com> wrote:

Just a quick question, in cmake, when you select the compilers and make, are you using the build tools with the “mingw32-” prefix? If not, try those. I think I had a similar problem a while back, and that fixed it for me.

-Alex

On Sat, Nov 24, 2012 at 7:31 AM, Michael Parker <@Michael_Parker> wrote:

This is exactly what I did when I got the error. At any rate, it appears to have been a problem with the configuration in the nuwen package. I installed fresh via mingw-get and was able to compile. I’m still curious to know what caused the error, but I’ll take that over to nuwen.net. Thanks for the help.

On Sat, Nov 24, 2012 at 7:40 PM, Doug <douglas.linder at gmail.com> wrote:

Seems to work fine using configure too for me, for what it’s worth.
Obviously you have to use a separate subdir.

eg.
mkdir build
cd build
…/configure

This is on both Windows 7 64-bit and 32-bit. Sorry I don’t have an XP box around to test it on though I’m afraid.

~
Doug.

On Sat, Nov 24, 2012 at 6:36 PM, Doug <douglas.linder at gmail.com> wrote:

This works fine for me:

hg clone http://hg.libsdl.org/SDL
cd SDL
mkdir build
cd build
cmake … -G “MSYS Makefiles” -DDIRECTX=NO
make

I’m rather surprised turning DIRECTX off doesn’t work for you.
Can you post the exact cmake output when you use the -DDIRECTX=NO option?

~
Doug.

On Fri, Nov 23, 2012 at 11:25 PM, Michael Parker <@Michael_Parker> wrote:

Running configure both from Mercurial and from the latest SDL2 snapshot, I’m getting this failure in MSYS:


c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: C' configure: creating ./config.status c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command:C’
config.status: creating Makefile
gawk: ./conf3144-27181/subs.awk:9: S[“OBJECTS”]="$(objects)/SDL.lo $(objects)/SD
L_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_fatal.lo $(objects)/SDL_hints
.lo $(objects)/SDL_log.lo $(objects)/"
gawk: ./conf3144-27181/subs.awk:9:

                                  ^ backslash not last character on line

c:\mingw\bin\sed.exe: couldn’t write 82 items to stdout: No error
config.status: error: could not create Makefile
c:\mingw\bin\sed.exe: -e expression #1, char 1: unknown command: `C’


I also tried to build with cmake. I was unable to build from the command line at all. It tells me to
build from a different directory, but when I do, I get the same message no matter where I try to run
cmake from.

Running cmake-gui gets the process going, but then it errors out telling me I need to have the DXSDK environment variable set. I don’t have the DX SDK installed, but I do have the appropriate MinGW libraries.

FWIW, I had no problems whatsoever building the previous snapshot via configure & make.


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Mike Parker


Mike Parker