From: Vincent Bernat Date: Sun, 31 Jan 2016 15:05:00 +0000 (+0100) Subject: osx: workaround issues with SIP on El Capitan X-Git-Tag: 0.9.1~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=87bb9a1b95a0d59775f8f59fae5287c5087ab0b0;p=thirdparty%2Flldpd.git osx: workaround issues with SIP on El Capitan We cannot install in /usr anymore. Install in /usr/local instead (hoping we won't conflict with HomeBrew). --- diff --git a/NEWS b/NEWS index 848add03..558871af 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +lldpd (0.9.1) + * Change: + + Rework packaging for OS X to make it work with El Capitan. To + simplify a bit, it is not possible anymore to build fat + binaries. Latest version of OS X supporting 32bit was 10.6. + lldpd (0.9.0) * Change: + Don't rely on libnl3 for netlink. Reuse the previous code and diff --git a/README.md b/README.md index b3fe604f..ff61e784 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ simpler alternatives: version of OS X: mkdir build && cd build - ../configure --prefix=/usr --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent \ + ../configure --prefix=/usr/local --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent \ --without-json --without-snmp make -C osx pkg @@ -81,7 +81,7 @@ simpler alternatives: SDK=/Developer/SDKs/MacOSX10.6.sdk mkdir build && cd build - ../configure --prefix=/usr --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent \ + ../configure --prefix=/usr/local --localstatedir=/var --sysconfdir=/private/etc --with-embedded-libevent \ --without-json --without-snmp \ CFLAGS="-mmacosx-version-min=10.6 -isysroot $SDK" \ LDFLAGS="-mmacosx-version-min=10.6 -isysroot $SDK"