diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-08 15:34:32 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-01-08 15:34:32 -0800 |
commit | b872b942bad2f681eb7091565aae3233098b6cf8 (patch) | |
tree | 06e7b04b8750114e98f4054c7dd963a9da8b523c | |
parent | 3f629503c424f04b2b3a578e1aaafd128c491439 (diff) |
Add X.Org's standard C warning flags to AM_CFLAGS
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0666377..8649eae 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,7 +23,7 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @XORG_CFLAGS@ -DMODULEDIR=\"@moduledir@\" +AM_CFLAGS = $(BASE_CFLAGS) $(XORG_CFLAGS) -DMODULEDIR=\"@moduledir@\" rendition_drv_la_LTLIBRARIES = rendition_drv.la rendition_drv_la_LDFLAGS = -module -avoid-version rendition_drv_ladir = @moduledir@/drivers |