updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / pblazasm / pblazasm.patch
blob54430ca3674d4ba8ea1209456b6efd63f9b50a0f
1 --- Makefile.orig 2011-07-12 07:48:36.656784380 +0200
2 +++ Makefile 2011-07-12 07:49:16.283451761 +0200
3 @@ -12,7 +12,7 @@
4 #MP = "C:/Qt/2010.04/mingw/include"
5 #CC = "C:/Qt/2010.04/mingw/bin/gcc"
6 MP = "C:/tcc/inc"
7 -CC = "C:/tcc/tcc"
8 +CC = gcc
11 C_SRCS += \
12 @@ -23,7 +23,7 @@
13 ./pbSymbols.c \
14 ./getopt.c
16 -EXE = "./pBlazASM.exe"
17 +EXE = "./pBlazASM"
18 OBJS = $(C_SRCS:.c=.o)
19 LIBS =
20 INCS = -I$(MP) -I"../inc"
21 @@ -33,7 +33,7 @@
22 ## rules
24 # All Target
25 -all: test
26 +all: $(EXE)
28 test: $(EXE)
29 $(EXE) -l -m pBlazASM_Syntax.psm
30 --- pbParser.c.orig 2011-07-12 07:50:42.186787239 +0200
31 +++ pbParser.c 2011-07-12 07:50:44.376787312 +0200
32 @@ -28,9 +28,9 @@
33 #include "pbLexer.h"
34 #include "pbErrors.h"
36 -//#ifdef _MSC_VER //Microsoft Visual C doesn't have strcasemcp, but has stricmp instead
37 +#ifdef _MSC_VER //Microsoft Visual C doesn't have strcasemcp, but has stricmp instead
38 #define strcasecmp stricmp
39 -//#endif
40 +#endif
43 /**