Bugzilla #5219 <https://bugs.freedesktop.org/show_bug.cgi?id=5219> Make
sure all optional sources are included in EXTRA_DIST, even if they
    aren't used on the platform the distballs are made on.
			
			
This commit is contained in:
		
							parent
							
								
									f259fd680c
								
							
						
					
					
						commit
						9439297b7b
					
				| 
						 | 
					@ -1,3 +1,10 @@
 | 
				
			||||||
 | 
					2005-12-06  Alan Coopersmith  <alan.coopersmith@sun.com>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						* os/Makefile.am: 
 | 
				
			||||||
 | 
						Bugzilla #5219 <https://bugs.freedesktop.org/show_bug.cgi?id=5219>
 | 
				
			||||||
 | 
						Make sure all optional sources are included in EXTRA_DIST,
 | 
				
			||||||
 | 
						even if they aren't used on the platform the distballs are made on.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2005-12-03  Alan Coopersmith  <alan.coopersmith@sun.com>
 | 
					2005-12-03  Alan Coopersmith  <alan.coopersmith@sun.com>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	* xorg/Makefile.am:
 | 
						* xorg/Makefile.am:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,22 +7,10 @@ K5AUTH_SOURCES = k5auth.c
 | 
				
			||||||
SECURERPC_SOURCES = rpcauth.c
 | 
					SECURERPC_SOURCES = rpcauth.c
 | 
				
			||||||
INTERNALMALLOC_SOURCES = xalloc.c
 | 
					INTERNALMALLOC_SOURCES = xalloc.c
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if XCSECURITY
 | 
					 | 
				
			||||||
XCSECURITY_SOURCES = secauth.c
 | 
					XCSECURITY_SOURCES = secauth.c
 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if XDMCP
 | 
					 | 
				
			||||||
XDMCP_SOURCES = xdmcp.c
 | 
					XDMCP_SOURCES = xdmcp.c
 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if LBX
 | 
					 | 
				
			||||||
LBX_SOURCES = lbxio.c
 | 
					LBX_SOURCES = lbxio.c
 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if NEED_STRLCAT
 | 
					 | 
				
			||||||
STRLCAT_SOURCES = strlcat.c strlcpy.c
 | 
					STRLCAT_SOURCES = strlcat.c strlcpy.c
 | 
				
			||||||
endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
XORG_SOURCES = log.c
 | 
					XORG_SOURCES = log.c
 | 
				
			||||||
 | 
					
 | 
				
			||||||
libos_la_SOURCES = 	\
 | 
					libos_la_SOURCES = 	\
 | 
				
			||||||
| 
						 | 
					@ -39,11 +27,23 @@ libos_la_SOURCES = 	\
 | 
				
			||||||
	xdmauth.c	\
 | 
						xdmauth.c	\
 | 
				
			||||||
	xstrans.c	\
 | 
						xstrans.c	\
 | 
				
			||||||
	xprintf.c	\
 | 
						xprintf.c	\
 | 
				
			||||||
	$(XCSECURITY_SOURCES) \
 | 
						$(XORG_SOURCES)
 | 
				
			||||||
	$(XDMCP_SOURCES) \
 | 
					
 | 
				
			||||||
	$(XORG_SOURCES) \
 | 
					if XCSECURITY
 | 
				
			||||||
	$(LBX_SOURCES) \
 | 
					libos_la_SOURCES += $(XCSECURITY_SOURCES)
 | 
				
			||||||
	$(STRLCAT_SOURCES)
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if XDMCP
 | 
				
			||||||
 | 
					libos_la_SOURCES += $(XDMCP_SOURCES)
 | 
				
			||||||
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if LBX
 | 
				
			||||||
 | 
					libos_la_SOURCES += $(LBX_SOURCES)
 | 
				
			||||||
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if NEED_STRLCAT
 | 
				
			||||||
 | 
					libos_la_SOURCES += $(STRLCAT_SOURCES)
 | 
				
			||||||
 | 
					endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
libcwrapper_la_SOURCES = \
 | 
					libcwrapper_la_SOURCES = \
 | 
				
			||||||
	$(top_srcdir)/hw/xfree86/os-support/shared/libc_wrapper.c
 | 
						$(top_srcdir)/hw/xfree86/os-support/shared/libc_wrapper.c
 | 
				
			||||||
| 
						 | 
					@ -52,4 +52,5 @@ libcwrapper_la_CFLAGS = \
 | 
				
			||||||
	-I$(top_srcdir)/hw/xfree86/os-support \
 | 
						-I$(top_srcdir)/hw/xfree86/os-support \
 | 
				
			||||||
	$(AM_CFLAGS)
 | 
						$(AM_CFLAGS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXTRA_DIST = $(K5AUTH_SOURCES) $(SECURERPC_SOURCES) $(INTERNALMALLOC_SOURCES)
 | 
					EXTRA_DIST = $(K5AUTH_SOURCES) $(SECURERPC_SOURCES) $(INTERNALMALLOC_SOURCES) \
 | 
				
			||||||
 | 
					     $(XCSECURITY_SOURCES) $(XDMCP_SOURCES) $(LBX_SOURCES) $(STRLCAT_SOURCES)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue