search for: 40a09d1

Displaying 2 results from an estimated 2 matches for "40a09d1".

Did you mean: 403a09f1
2012 Jun 29
1
[syslinux:elflink] elflink: fix dependency problem in cmenu/ Makefile
...dependency problem in cmenu/Makefile > > Instead of adding library dependencies implicitly, make them explicit > and use --as-needed to avoid bogus DT_NEEDED entries from being > generated. This is fine, but... > diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile > index 40a09d1..c6e0cae 100644 > --- a/com32/cmenu/Makefile > +++ b/com32/cmenu/Makefile > @@ -17,26 +17,15 @@ > > NOGPL := 1 > > -# This must be defined before com32.mk is included > -LIBS = libmenu/libmenu.c32 > - > topdir = ../.. > MAKEDIR = $(topdir)/mk > include...
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...(__com32.cs_bounce); - inregs.es = SEG(__com32.cs_bounce); + inregs.esi.w[0] = OFFS(buf); + inregs.es = SEG(buf); __com32.cs_intcall(0x22, &inregs, &inregs); +fail: + lfree(buf); return lba; } diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 00825b4..40a09d1 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -26,13 +26,26 @@ include $(MAKEDIR)/elf.mk CFLAGS += -I./libmenu +LDFLAGS_complex.o = $(com32)/cmenu/libmenu/libmenu.c32 \ + $(com32)/libutil/libutil_com.c32 \ + $(com32)/lib/libcom32.c32 +LDFLAGS_display.o = $(com32)/...