diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2006-03-20 Adam Jackson <ajax@freedesktop.org> + + * src/Makefile.am: + Bug #6276: Fix build on Cygwin. (Yaakov Selkowitz) + 2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/src/Makefile.am b/src/Makefile.am index 3c03905..9ed5cfe 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,8 +5,8 @@ AM_CFLAGS = \ -I${top_srcdir}/include/X11/Xmu \ $(XMU_CFLAGS) -D_BSD_SOURCE -libXmu_la_LDFLAGS = -version-number 6:2:0 -libXmuu_la_LDFLAGS = -version-number 1:0:0 +libXmu_la_LDFLAGS = -version-number 6:2:0 -no-undefined +libXmuu_la_LDFLAGS = -version-number 1:0:0 -no-undefined libXmu_la_LIBADD = $(XMU_LIBS) libXmuu_la_LIBADD = $(XMUU_LIBS) |