diff options
author | Kevin E Martin <kem@kem.org> | 2005-12-03 04:41:52 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-12-03 04:41:52 +0000 |
commit | 914624d1fb3924c76e5dc358bb43b4dff800280c (patch) | |
tree | 768d3714fa87d4dc1e2932e11b8ebf18f6a43db3 | |
parent | 0f0572fd4b9de8747741ff81d668edfe23db0e15 (diff) |
Add check and cflags for malloc(0) returning NULL.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-12-02 Kevin E. Martin <kem-at-freedesktop-dot-org> + + * configure.ac: + * src/Makefile.am: + Add check and cflags for malloc(0) returning NULL. + 2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> * xxf86vm.pc.in: diff --git a/configure.ac b/configure.ac index 7eec63c..97c68f0 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,7 @@ AC_PROG_LIBTOOL # Checks for pkg-config packages PKG_CHECK_MODULES(XXF86VM, xproto x11 xextproto xext xf86vidmodeproto) +XORG_CHECK_MALLOC_ZERO XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION diff --git a/src/Makefile.am b/src/Makefile.am index 6630eeb..3487d5c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,6 +2,6 @@ lib_LTLIBRARIES = libXxf86vm.la libXxf86vm_la_SOURCES = XF86VMode.c -AM_CFLAGS = $(XXF86VM_CFLAGS) +AM_CFLAGS = $(XXF86VM_CFLAGS) $(MALLOC_ZERO_CFLAGS) libXxf86vm_la_LIBADD = $(XXF86VM_LIBS) libXxf86vm_la_LDFLAGS = -version-number 1:0:0 |