mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* configure.ac: New option --enable-noexecstack.
* Makefile.am (ASFLAGS): Renamed to AM_CCASFLAGS and added the variable for non exectubale stack options. Adapted users.
This commit is contained in:
parent
9bf9389179
commit
f0e9a1ff4f
8 changed files with 49 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-03-11 Werner Koch <wk@g10code.com>
|
||||
|
||||
* Makefile.am (ASFLAGS): Renamed to AM_CCASFLAGS and added the
|
||||
variable for non exectubale stack options. Adapted users.
|
||||
|
||||
2004-12-20 Werner Koch <wk@g10code.com>
|
||||
|
||||
* mpicoder.c (mpi_read_from_buffer): Don't abort in case of an
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
|
||||
|
||||
INCLUDES = -I.. -I$(top_srcdir)/include
|
||||
AM_CFLAGS = @MPI_OPT_FLAGS@
|
||||
ASFLAGS = @MPI_SFLAGS@
|
||||
AM_CFLAGS = $(MPI_OPT_FLAGS)
|
||||
AM_CCASFLAGS = $(NOEXECSTACK_FLAGS) $(MPI_SFLAGS)
|
||||
|
||||
EXTRA_DIST = config.links
|
||||
DISTCLEANFILES = mpi-asm-defs.h \
|
||||
|
@ -73,7 +73,7 @@ libmpi_a_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@
|
|||
# work and add one to cpp .S files
|
||||
.S.o:
|
||||
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.s
|
||||
$(COMPILE) $(ASFLAGS) -c _$*.s
|
||||
$(COMPILE) $(AM_CCASFLAGS) -c _$*.s
|
||||
mv -f _$*.o $*.o
|
||||
|
||||
.S.lo:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue