mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +02:00
haproxy: bump version.
* add a git recipe.
This commit is contained in:
69
net-proxy/haproxy/patches/haproxy-1.7.0.git.patchset
Normal file
69
net-proxy/haproxy/patches/haproxy-1.7.0.git.patchset
Normal file
@@ -0,0 +1,69 @@
|
||||
From 03f8a016d469e11ffc2b67dba9a78048255b5c8e Mon Sep 17 00:00:00 2001
|
||||
From: Jerome Duval <jerome.duval@gmail.com>
|
||||
Date: Mon, 19 Oct 2015 23:01:16 +0000
|
||||
Subject: [BUILD] add Haiku as supported target.
|
||||
|
||||
* also replace haproxy-systemd-wrapper with $(EXTRA) in install-bin.
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 4f0aa8a..3af735e 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -98,7 +98,7 @@ DOCDIR = $(PREFIX)/doc/haproxy
|
||||
# Use TARGET=<target_name> to optimize for a specifc target OS among the
|
||||
# following list (use the default "generic" if uncertain) :
|
||||
# generic, linux22, linux24, linux24e, linux26, solaris,
|
||||
-# freebsd, openbsd, netbsd, cygwin, custom, aix51, aix52
|
||||
+# freebsd, openbsd, netbsd, cygwin, haiku, custom, aix51, aix52
|
||||
TARGET =
|
||||
|
||||
#### TARGET CPU
|
||||
@@ -220,6 +220,12 @@ ifeq ($(TARGET),generic)
|
||||
USE_POLL = implicit
|
||||
USE_TPROXY = implicit
|
||||
else
|
||||
+ifeq ($(TARGET),haiku)
|
||||
+ # For Haiku
|
||||
+ TARGET_LDFLAGS = -lnetwork
|
||||
+ USE_POLL = implicit
|
||||
+ USE_TPROXY = implicit
|
||||
+else
|
||||
ifeq ($(TARGET),linux22)
|
||||
# This is for Linux 2.2
|
||||
USE_GETSOCKNAME = implicit
|
||||
@@ -347,6 +353,7 @@ endif # linux26
|
||||
endif # linux24e
|
||||
endif # linux24
|
||||
endif # linux22
|
||||
+endif # haiku
|
||||
endif # generic
|
||||
|
||||
|
||||
@@ -805,10 +812,9 @@ install-doc:
|
||||
install -m 644 doc/$$x.txt "$(DESTDIR)$(DOCDIR)" ; \
|
||||
done
|
||||
|
||||
-install-bin: haproxy haproxy-systemd-wrapper
|
||||
+install-bin: haproxy $(EXTRA)
|
||||
install -d "$(DESTDIR)$(SBINDIR)"
|
||||
- install haproxy "$(DESTDIR)$(SBINDIR)"
|
||||
- install haproxy-systemd-wrapper "$(DESTDIR)$(SBINDIR)"
|
||||
+ install haproxy $(EXTRA) "$(DESTDIR)$(SBINDIR)"
|
||||
|
||||
install: install-bin install-man install-doc
|
||||
|
||||
diff --git a/README b/README
|
||||
index d376fbf..76e6ed5 100644
|
||||
--- a/README
|
||||
+++ b/README
|
||||
@@ -48,6 +48,7 @@ and assign it to the TARGET variable :
|
||||
- aix51 for AIX 5.1
|
||||
- aix52 for AIX 5.2
|
||||
- cygwin for Cygwin
|
||||
+ - haiku for Haiku
|
||||
- generic for any other OS or version.
|
||||
- custom to manually adjust every setting
|
||||
|
||||
--
|
||||
2.2.2
|
||||
|
||||
Reference in New Issue
Block a user