
TempusC said:Get mxml-2.6+
./configure
make
Get benzin
make
Done.
gcc -fno-strict-aliasing -c -o main.o main.c
gcc -fno-strict-aliasing -c -o general.o general.c
gcc -fno-strict-aliasing -c -o memfile.o memfile.c
gcc -fno-strict-aliasing -c -o xml.o xml.c
xml.c:9:18: error: mxml.h: No such file or directory
In file included from xml.c:12:
xml.h:12: error: expected ‘)’ before ‘*’ token
xml.h:16: error: expected ‘)’ before ‘*’ token
xml.c:17: error: expected ‘)’ before ‘*’ token
xml.c:79: error: expected ‘)’ before ‘*’ token
make: *** [xml.o] Error 1
Jys072595 said:http://www.mediafire.com/?sharekey=47066c9...b20786b9a6e1ed0
Here, I uploaded the file. It should be the latest version.
giantpune said:judging from that compile error, you need to install mxml. or if it is included in benzin, copy it to the right directory.


Jacol Beyros said:do 'make install' after you make the mxml library. then make benzin again.
Ok, I did this but it seems I dont have the rights to do it...
CODE/usr/bin/install -c -d /usr/local/lib
install: chmod 755 /usr/local/lib: Operation not permitted
/usr/bin/install -c -m 755 libmxml.a /usr/local/lib
install: /usr/local/lib/libmxml.a: Permission denied
make: *** [install-libmxml.a] Error 71
I use this for win only tools like neroAacEnc.exe.MacGnG said:just run it in VMWARE, Virtual Box, or Parallels.
i run all the windoze Wii apps in vmware, its much easier to run it in a virtual machine.
IMHO opening the terminal and typing benzin is much easier than installing a crappy OS into VMWare, booting this OS, logging in, waiting for it to respond, opening cmd and typing benzin.
And even if you you only have a win binary you can place a script as benzin in /usr/local/bin with the following contents
CODE#!/bin/bash
/Applications/Darwine/Wine.bundle/Contents/bin/wine /path/to/benzin.exe $1 $2 $3 $4 $5 $6 $7 $8 $9
mousex said:I use this for win only tools like neroAacEnc.exe.MacGnG said:just run it in VMWARE, Virtual Box, or Parallels.
i run all the windoze Wii apps in vmware, its much easier to run it in a virtual machine.
IMHO opening the terminal and typing benzin is much easier than installing a crappy OS into VMWare, booting this OS, logging in, waiting for it to respond, opening cmd and typing benzin.
And even if you you only have a win binary you can place a script as benzin in /usr/local/bin with the following contents
CODE#!/bin/bash
/Applications/Darwine/Wine.bundle/Contents/bin/wine /path/to/benzin.exe $1 $2 $3 $4 $5 $6 $7 $8 $9
But the easiest for you would be installing macports do a "sudo port install mxml" and then just "make" in benzin folder.
EDIT: Godlike, you have to be root to install the library (e.g. "sudo make install").
brl2xml
for %%x in (*.brlyt) do start benzin r "%%x" "%%~nx".xmlyt
for %%x in (*.brlan) do start benzin r "%%x" "%%~nx".xmlan
pause
xml2brl
for %%x in (*.xmlyt) do start benzin m "%%x" "%%~nx".brlyt
for %%x in (*.xmlan) do start benzin m "%%x" "%%~nx".brlan
pause

#!bin/bash
ls *.brlan > anlist
for i in `anlist`; do benzin -r "$i" "$i".xmlan; done
ls *.brlyt > ytlist
for i in 'ytlist'; do benzin -r "$i" "$i".xmlan; done
#!bin/bash
ls *.xmlan > anlist
for i in 'anlist'; do benzin -r "$i" "$i".brlan; done
ls *.brlyt > ytlist
for i in 'ytlist'; do benzin -r "$i" "$i".brlyt; done
