openbsd-ports/x11/icewm/patches/patch-src_Makefile_in
naddy 3e34ec6de7 Update to 1.2.20; from Peter Williams <peterbw@gmail.com>.
Notable changes:
- fix crash/build failure when taskbar disabled
- fix build/link with some gcc/g++ versions
- disable SupportsSemitransparency by default, this makes icewmbg
  exit after setting the image and reduces memory usage
2005-03-23 21:43:31 +00:00

27 lines
1.0 KiB
Plaintext

$OpenBSD: patch-src_Makefile_in,v 1.5 2005/03/23 21:43:31 naddy Exp $
--- src/Makefile.in.orig Sun Jan 9 22:48:23 2005
+++ src/Makefile.in Wed Mar 23 22:26:53 2005
@@ -31,7 +31,7 @@ DEFS = @DEFS@ \
-DICEWMBGEXE='"icewmbg$(EXEEXT)"' \
-DICESMEXE='"icewm-session$(EXEEXT)"' \
-DICEHELPEXE='"icehelp$(EXEEXT)"' \
- -DICEHELPIDX='"$(DOCDIR)/icewm-$(VERSION)/icewm.html"'
+ -DICEHELPIDX='"$(DOCDIR)/icewm/icewm.html"'
CXXFLAGS = @CXXFLAGS@ $(DEBUG) $(DEFS) \
@CORE_CFLAGS@ @IMAGE_CFLAGS@ @AUDIO_CFLAGS@ # `fc-config --cflags`
@@ -205,11 +205,11 @@ clean:
%.o: %.cc
@echo " CXX " $@
- @$(CXX) $(CXXFLAGS) $(GCCDEP) -c $<
+ $(CXX) $(CXXFLAGS) $(GCCDEP) -c $<
genpref $(BINARIES):
@echo " LD " $@
- @$(LD) -o $@$(EXEEXT) $($@_OBJS) $(LFLAGS) $($@_LFLAGS) $(LIBS) $($@_LIBS)
+ $(LD) -o $@$(EXEEXT) $($@_OBJS) $(LFLAGS) $($@_LFLAGS) $(LIBS) $($@_LIBS)
################################################################################