diff options
author | edwin <edwin@FreeBSD.org> | 2004-10-13 11:04:57 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-10-13 11:04:57 +0800 |
commit | f07ce7eb5f9e3ab2be28c664a9456d9af6e561b8 (patch) | |
tree | ea4171524973f7edcf6438a20ad0b41ad49b116b /net | |
parent | 65832ac4f5c026361353b85d32bc1718c2cab1fd (diff) | |
download | freebsd-ports-gnome-f07ce7eb5f9e3ab2be28c664a9456d9af6e561b8.tar.gz freebsd-ports-gnome-f07ce7eb5f9e3ab2be28c664a9456d9af6e561b8.tar.zst freebsd-ports-gnome-f07ce7eb5f9e3ab2be28c664a9456d9af6e561b8.zip |
[maintainer] sysutils/linneighborhood: fix thread usage
Somehow, a hard coded -lc_r survived in a patch file.
Eleminating it, makes the port (finally) PTHREAD_* conform.
PR: ports/71612
Submitted by: Simon Barner <barner@in.tum.de>
Diffstat (limited to 'net')
-rw-r--r-- | net/linneighborhood/Makefile | 2 | ||||
-rw-r--r-- | net/linneighborhood/files/patch-Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/linneighborhood/Makefile b/net/linneighborhood/Makefile index 2b8c14ac2511..a8e09b242318 100644 --- a/net/linneighborhood/Makefile +++ b/net/linneighborhood/Makefile @@ -7,7 +7,7 @@ PORTNAME= LinNeighborhood PORTVERSION= 0.6.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MASTER_SITES= http://www.bnro.de/~schmidjo/download/ diff --git a/net/linneighborhood/files/patch-Makefile.in b/net/linneighborhood/files/patch-Makefile.in index 4f666cbaac08..fc87984de367 100644 --- a/net/linneighborhood/files/patch-Makefile.in +++ b/net/linneighborhood/files/patch-Makefile.in @@ -14,7 +14,7 @@ LinNeighborhood_LDADD = @GTK_LIBS@ INCLUDES = @GTK_CFLAGS@ -DLIBDIR=\"$(libdir)\" -DDATADIR=\"$(datadir)\" -LIBS = @GTK_LIBS@ -lpthread -+LIBS = @GTK_LIBS@ -lc_r -lutil ++LIBS = @GTK_LIBS@ -lutil EXTRA_DIST = picture mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs |