diff options
author | mat <mat@FreeBSD.org> | 2017-09-22 18:48:57 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 05:34:57 +0800 |
commit | 97e4c3f95baf4fa33be764b223805fa773215237 (patch) | |
tree | eaf8370065b015c3c937aa94ca819eb33659d891 /databases | |
parent | bca4e8a018e5b2b51798b99f972517abf45f37b1 (diff) | |
download | freebsd-ports-gnome-97e4c3f95baf4fa33be764b223805fa773215237.tar.gz freebsd-ports-gnome-97e4c3f95baf4fa33be764b223805fa773215237.tar.zst freebsd-ports-gnome-97e4c3f95baf4fa33be764b223805fa773215237.zip |
Cleanup after removal of libexecinfo from ports.
PR: 220271
Submitted by: mat (review), Yasuhiro KIMURA (PR)
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11488
Diffstat (limited to 'databases')
-rw-r--r-- | databases/libmemcached/Makefile | 2 | ||||
-rw-r--r-- | databases/mariadb100-server/Makefile | 1 | ||||
-rw-r--r-- | databases/mariadb101-server/Makefile | 1 | ||||
-rw-r--r-- | databases/mariadb102-server/Makefile | 1 | ||||
-rw-r--r-- | databases/mariadb55-server/Makefile | 1 | ||||
-rw-r--r-- | databases/redis-devel/Makefile | 3 | ||||
-rw-r--r-- | databases/redis/Makefile | 3 | ||||
-rw-r--r-- | databases/twemproxy/Makefile | 3 | ||||
-rw-r--r-- | databases/virtuoso/Makefile | 4 |
9 files changed, 6 insertions, 13 deletions
diff --git a/databases/libmemcached/Makefile b/databases/libmemcached/Makefile index 45ce603e74e3..274ac131943f 100644 --- a/databases/libmemcached/Makefile +++ b/databases/libmemcached/Makefile @@ -23,7 +23,7 @@ CONFIGURE_ARGS= --without-memcached \ --without-sphinx-build \ --enable-libmemcachedprotocol -LIBS+= -L${LOCALBASE}/lib -lexecinfo +LIBS+= -lexecinfo CXXFLAGS+= -D__STDC_CONSTANT_MACROS -pthread OPTIONS_DEFINE= DEBUG DTRACE MEMASLAP SASL diff --git a/databases/mariadb100-server/Makefile b/databases/mariadb100-server/Makefile index 0b60e3b4bd4d..22521698bfeb 100644 --- a/databases/mariadb100-server/Makefile +++ b/databases/mariadb100-server/Makefile @@ -59,7 +59,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mariadb" \ -DWITH_LIBEDIT=0 \ -DWITH_SSL=${OPENSSLBASE} \ -DWITH_LIBWRAP=1 \ - -DEXECINFO_ROOT=${LOCALBASE} \ -DCOMPILATION_COMMENT="FreeBSD Ports" DATADIR= ${PREFIX}/share/mysql diff --git a/databases/mariadb101-server/Makefile b/databases/mariadb101-server/Makefile index 2354ba4c5d7d..e6166eb4cfe0 100644 --- a/databases/mariadb101-server/Makefile +++ b/databases/mariadb101-server/Makefile @@ -90,7 +90,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ -DWITH_LIBWRAP=1 \ -DWITH_SSL=${OPENSSLBASE} \ -DKRB5_CONFIG=${KRB5CONFIG} \ - -DEXECINFO_ROOT=${LOCALBASE} \ -DCOMPILATION_COMMENT="FreeBSD Ports" DATADIR= ${PREFIX}/share/mysql diff --git a/databases/mariadb102-server/Makefile b/databases/mariadb102-server/Makefile index b4916af78180..afc4c55d6730 100644 --- a/databases/mariadb102-server/Makefile +++ b/databases/mariadb102-server/Makefile @@ -93,7 +93,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ -DCURSES_CURSES_LIBRARY="/usr/lib/libcurses.so" \ -DCURSES_FORM_LIBRARY="/usr/lib/libform.so" \ -DCURSES_CURSES_LIBRARY="/usr/lib/libncurses.so" \ - -DEXECINFO_ROOT="${LOCALBASE}" \ -DICONV_LIBRARIES="${ICONV_LIB_PATH}" \ -DKRB5_CONFIG="${KRB5CONFIG}" \ -DCURSES_NCURSES_LIBRARY="${NCURSESLIB}/libncurses.so" \ diff --git a/databases/mariadb55-server/Makefile b/databases/mariadb55-server/Makefile index 6404076fa5ee..28580286c70f 100644 --- a/databases/mariadb55-server/Makefile +++ b/databases/mariadb55-server/Makefile @@ -46,7 +46,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ -DWITH_UNIT_TESTS=0 \ -DWITH_LIBWRAP=1 \ -DWITH_SSL=yes \ - -DEXECINFO_ROOT=${LOCALBASE} \ -DCOMPILATION_COMMENT="FreeBSD Ports" DATADIR= ${PREFIX}/share/mysql diff --git a/databases/redis-devel/Makefile b/databases/redis-devel/Makefile index d834628b9d8f..ebb9130c596a 100644 --- a/databases/redis-devel/Makefile +++ b/databases/redis-devel/Makefile @@ -58,8 +58,7 @@ LDFLAGS+= -Wl,-E USES+= tcl:build .endif -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lpthread -lm -lexecinfo +LDFLAGS+= -lpthread -lm -lexecinfo CONFLICTS?= redis-3.* diff --git a/databases/redis/Makefile b/databases/redis/Makefile index a7780d672da7..826a8a31a7f5 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -47,8 +47,7 @@ LDFLAGS+= -Wl,-E USES+= tcl:build .endif -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lpthread -lm -lexecinfo +LDFLAGS+= -lpthread -lm -lexecinfo CONFLICTS?= redis-devel-3.* diff --git a/databases/twemproxy/Makefile b/databases/twemproxy/Makefile index 19eb8477db7e..e753a0bccc69 100644 --- a/databases/twemproxy/Makefile +++ b/databases/twemproxy/Makefile @@ -16,8 +16,7 @@ GH_ACCOUNT= twitter USES= autoreconf libtool -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo +LDFLAGS+= -lexecinfo PLIST_FILES= sbin/nutcracker \ man/man8/nutcracker.8.gz \ diff --git a/databases/virtuoso/Makefile b/databases/virtuoso/Makefile index 2d2f41cd246c..813fb58d6ece 100644 --- a/databases/virtuoso/Makefile +++ b/databases/virtuoso/Makefile @@ -41,8 +41,8 @@ CONFIGURE_ARGS= --with-readline\ --with-layout=freebsd\ --datadir="${PREFIX}"\ --localstatedir="${PREFIX}" -CPPFLAGS+= -std=gnu89 ${IODBC_CPPFLAGS} -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo +CPPFLAGS+= -std=gnu89 ${IODBC_CPPFLAGS} +LDFLAGS+= -lexecinfo MAKE_ENV= PATH=${LOCALBASE}/bin:${PATH}\ ISQL=isql-vt USE_RC_SUBR= virtuoso |