diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-08-04 18:45:46 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-08-04 18:45:46 +0000 |
commit | e62be6d2721e7f43c7bba6b8da4e5ec8c364697d (patch) | |
tree | efa4984dfdd94fcb7640c5c87bf733a592f121a5 /GL | |
parent | 13bec87f45509452c643e20745e12878584d606a (diff) |
- Check for vsnprintf
- Don't build the Xorg DDX on darwin
- Workaround for gcc defining __ppc__ but not __powerpc__
Diffstat (limited to 'GL')
-rw-r--r-- | GL/mesa/main/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/GL/mesa/main/Makefile.am b/GL/mesa/main/Makefile.am index a6b23a57e..f7a0af291 100644 --- a/GL/mesa/main/Makefile.am +++ b/GL/mesa/main/Makefile.am @@ -12,6 +12,10 @@ INCLUDES = -I@MESA_SOURCE@/include \ -I$(srcdir)/../tnl \ -I$(srcdir)/.. +if NEED_VSNPRINTF +VSNPRINTF_SOURCES = vsnprintf.c +endif + nodist_libmain_la_SOURCES = accum.c \ api_arrayelt.c \ api_loopback.c \ @@ -67,5 +71,5 @@ nodist_libmain_la_SOURCES = accum.c \ texstate.c \ texstore.c \ varray.c \ - vsnprintf.c \ + $(VSNPRINTF_SOURCES) \ vtxfmt.c |