redefined ASE_XXX_COPIER_SIMPLE and ASE_XXX_COPIER_INLINE
originally, - #define ASE_XXX_COPIER_SIMPLE ase_xxx_copysimple - #define ASE_XXX_COPIER_INLINE ase_xxx_copyinline after changes. - #define ASE_XXX_COPIER_SIMPLE ((ase_xxx_copier_t)1) - #define ASE_XXX_COPIER_INLINE ((ase_xxx_copier_t)2) when compiled for win32 dll, the reference by the original definition resulted in different address values in difference modules.
This commit is contained in:
@ -5,11 +5,11 @@ bin_PROGRAMS = aseawk
|
||||
|
||||
aseawk_SOURCES = awk.c
|
||||
aseawk_LDFLAGS = -L../../lib/awk -L../../lib/utl
|
||||
aseawk_LDADD = -laseutl -laseawk $(LIBM)
|
||||
aseawk_LDADD = -laseawk $(LIBM)
|
||||
|
||||
if ENABLE_CXX
|
||||
bin_PROGRAMS += aseawk++
|
||||
aseawk___SOURCES = Awk.cpp
|
||||
aseawk___LDFLAGS = -L../../lib/awk -L../../lib/utl
|
||||
aseawk___LDADD = -laseutl -laseawk++ $(LIBM)
|
||||
aseawk___LDADD = -laseawk++ $(LIBM)
|
||||
endif
|
||||
|
@ -212,10 +212,10 @@ top_srcdir = @top_srcdir@
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/include
|
||||
aseawk_SOURCES = awk.c
|
||||
aseawk_LDFLAGS = -L../../lib/awk -L../../lib/utl
|
||||
aseawk_LDADD = -laseutl -laseawk $(LIBM)
|
||||
aseawk_LDADD = -laseawk $(LIBM)
|
||||
@ENABLE_CXX_TRUE@aseawk___SOURCES = Awk.cpp
|
||||
@ENABLE_CXX_TRUE@aseawk___LDFLAGS = -L../../lib/awk -L../../lib/utl
|
||||
@ENABLE_CXX_TRUE@aseawk___LDADD = -laseutl -laseawk++ $(LIBM)
|
||||
@ENABLE_CXX_TRUE@aseawk___LDADD = -laseawk++ $(LIBM)
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
|
Reference in New Issue
Block a user