Don't pass the perl C flags to winebuild.
This commit is contained in:
parent
a662fabaaa
commit
4b92255cec
|
@ -28,7 +28,7 @@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CPP = @CPP@
|
CPP = @CPP@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@ $(EXTRACFLAGS)
|
||||||
OPTIONS = @OPTIONS@ -D_REENTRANT
|
OPTIONS = @OPTIONS@ -D_REENTRANT
|
||||||
X_CFLAGS = @X_CFLAGS@
|
X_CFLAGS = @X_CFLAGS@
|
||||||
X_LIBS = @X_LIBS@
|
X_LIBS = @X_LIBS@
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
EXTRADEFS = `perl -MExtUtils::Embed -e ccflags`
|
|
||||||
EXTRALIBS = `perl -MExtUtils::Embed -e ldopts`
|
|
||||||
EXTRAINCL = `perl -MExtUtils::Embed -e perl_inc`
|
|
||||||
XSUBPPDIR = `perl -MConfig -e 'print $$Config::Config{privlibexp}'`/ExtUtils
|
|
||||||
TOPSRCDIR = @top_srcdir@
|
TOPSRCDIR = @top_srcdir@
|
||||||
TOPOBJDIR = ../..
|
TOPOBJDIR = ../..
|
||||||
SRCDIR = @srcdir@
|
SRCDIR = @srcdir@
|
||||||
|
@ -10,6 +6,11 @@ MODULE = winetest.exe
|
||||||
APPMODE = cui
|
APPMODE = cui
|
||||||
IMPORTS = kernel32
|
IMPORTS = kernel32
|
||||||
|
|
||||||
|
EXTRACFLAGS = `perl -MExtUtils::Embed -e ccflags`
|
||||||
|
EXTRALIBS = `perl -MExtUtils::Embed -e ldopts`
|
||||||
|
EXTRAINCL = `perl -MExtUtils::Embed -e perl_inc`
|
||||||
|
XSUBPPDIR = `perl -MConfig -e 'print $$Config::Config{privlibexp}'`/ExtUtils
|
||||||
|
|
||||||
C_SRCS = winetest.c
|
C_SRCS = winetest.c
|
||||||
|
|
||||||
EXTRA_SRCS = wtmain.c
|
EXTRA_SRCS = wtmain.c
|
||||||
|
|
Loading…
Reference in New Issue