Magellan Linux

Contents of /trunk/cups/patches/cups-1.4.2-backend-https.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 904 - (show annotations) (download)
Wed Oct 21 21:04:49 2009 UTC (14 years, 7 months ago) by niro
File size: 941 byte(s)
-re-diffed

1 diff -Naur cups-1.4.1/backend/Makefile cups-1.4.1-magellan/backend/Makefile
2 --- cups-1.4.1/backend/Makefile 2009-03-03 20:39:21.000000000 +0100
3 +++ cups-1.4.1-magellan/backend/Makefile 2009-10-21 23:13:06.000000000 +0200
4 @@ -90,7 +90,9 @@
5 $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
6 done
7 $(RM) $(SERVERBIN)/backend/http
8 + $(RM) $(SERVERBIN)/backend/https
9 $(LN) ipp $(SERVERBIN)/backend/http
10 + $(LN) ipp $(SERVERBIN)/backend/https
11 if test "x$(DNSSD_BACKEND)" != x; then \
12 $(RM) $(SERVERBIN)/backend/mdns; \
13 $(LN) $(DNSSD_BACKEND) $(SERVERBIN)/backend/mdns; \
14 @@ -126,6 +128,7 @@
15 $(RM) $(SERVERBIN)/backend/$$file; \
16 done
17 $(RM) $(SERVERBIN)/backend/http
18 + $(RM) $(SERVERBIN)/backend/https
19 -$(RMDIR) $(SERVERBIN)/backend
20 -$(RMDIR) $(SERVERBIN)
21
22 @@ -191,7 +194,8 @@
23 echo Linking $@...
24 $(CC) $(LDFLAGS) -o ipp ipp.o libbackend.a $(LIBS)
25 $(RM) http
26 - $(LN) ipp http
27 + $(RM) https
28 + $(LN) ipp http https
29
30
31 #