Date: Fri, 5 Apr 2019 22:16:33 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r497994 - in branches/2019Q2/devel/guichan: . files Message-ID: <201904052216.x35MGX9R077992@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Apr 5 22:16:33 2019 New Revision: 497994 URL: https://svnweb.freebsd.org/changeset/ports/497994 Log: MFH: r497993 devel/guichan: fix underlinking of external dependencies ld: error: /usr/local/lib/libguichan_allegro.so: undefined reference to destroy_font ld: error: /usr/local/lib/libguichan_opengl.so: undefined reference to glBindTexture ld: error: /usr/local/lib/libguichan_sdl.so: undefined reference to SDL_FillRect ld: error: /usr/local/lib/libguichan_sdl.so: undefined reference to IMG_Load Approved by: ports-secteam blanket Modified: branches/2019Q2/devel/guichan/Makefile branches/2019Q2/devel/guichan/files/patch-src__Makefile.in branches/2019Q2/devel/guichan/files/patch-src__allegro__Makefile.in branches/2019Q2/devel/guichan/files/patch-src__opengl__Makefile.in branches/2019Q2/devel/guichan/files/patch-src__sdl__Makefile.in Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/devel/guichan/Makefile ============================================================================== --- branches/2019Q2/devel/guichan/Makefile Fri Apr 5 22:16:01 2019 (r497993) +++ branches/2019Q2/devel/guichan/Makefile Fri Apr 5 22:16:33 2019 (r497994) @@ -3,7 +3,7 @@ PORTNAME= guichan PORTVERSION= 0.8.2 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel games MASTER_SITES= http://pkgs.fedoraproject.org/repo/pkgs/guichan/${DISTFILES}/af535d7f387e774e3197cef8023ea105/ Modified: branches/2019Q2/devel/guichan/files/patch-src__Makefile.in ============================================================================== --- branches/2019Q2/devel/guichan/files/patch-src__Makefile.in Fri Apr 5 22:16:01 2019 (r497993) +++ branches/2019Q2/devel/guichan/files/patch-src__Makefile.in Fri Apr 5 22:16:33 2019 (r497994) @@ -1,6 +1,6 @@ ---- ./src/Makefile.in.orig 2008-07-28 14:05:22.000000000 +0200 -+++ ./src/Makefile.in 2008-07-28 14:05:32.000000000 +0200 -@@ -217,7 +217,7 @@ +--- src/Makefile.in.orig 2009-10-05 18:37:12 UTC ++++ src/Makefile.in +@@ -273,7 +273,7 @@ SUBDIRS = widgets @GUICHAN_EXTRADIRS@ hge openlayer co INCLUDES = -I$(top_srcdir)/include lib_LTLIBRARIES = libguichan.la libguichan_la_LIBADD = widgets/libguichan_widgets.la Modified: branches/2019Q2/devel/guichan/files/patch-src__allegro__Makefile.in ============================================================================== --- branches/2019Q2/devel/guichan/files/patch-src__allegro__Makefile.in Fri Apr 5 22:16:01 2019 (r497993) +++ branches/2019Q2/devel/guichan/files/patch-src__allegro__Makefile.in Fri Apr 5 22:16:33 2019 (r497994) @@ -1,6 +1,15 @@ ---- ./src/allegro/Makefile.in.orig 2008-07-28 14:05:53.000000000 +0200 -+++ ./src/allegro/Makefile.in 2008-07-28 14:06:01.000000000 +0200 -@@ -203,7 +203,7 @@ +--- src/allegro/Makefile.in.orig 2009-10-05 18:37:13 UTC ++++ src/allegro/Makefile.in +@@ -68,7 +68,7 @@ am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(libdir)" + LTLIBRARIES = $(lib_LTLIBRARIES) +-libguichan_allegro_la_LIBADD = ++libguichan_allegro_la_LIBADD = -lalleg + am_libguichan_allegro_la_OBJECTS = allegro.lo allegrofont.lo \ + allegrographics.lo allegroimage.lo allegroimageloader.lo \ + allegroinput.lo +@@ -231,7 +231,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libguichan_allegro.la INCLUDES = -I$(top_srcdir)/include Modified: branches/2019Q2/devel/guichan/files/patch-src__opengl__Makefile.in ============================================================================== --- branches/2019Q2/devel/guichan/files/patch-src__opengl__Makefile.in Fri Apr 5 22:16:01 2019 (r497993) +++ branches/2019Q2/devel/guichan/files/patch-src__opengl__Makefile.in Fri Apr 5 22:16:33 2019 (r497994) @@ -1,6 +1,15 @@ ---- ./src/opengl/Makefile.in.orig 2008-07-28 14:08:06.000000000 +0200 -+++ ./src/opengl/Makefile.in 2008-07-28 14:08:14.000000000 +0200 -@@ -202,7 +202,7 @@ +--- src/opengl/Makefile.in.orig 2009-10-05 18:37:13 UTC ++++ src/opengl/Makefile.in +@@ -70,7 +70,7 @@ am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" + LTLIBRARIES = $(lib_LTLIBRARIES) +-libguichan_opengl_la_LIBADD = ++libguichan_opengl_la_LIBADD = -lGL + am_libguichan_opengl_la_OBJECTS = opengl.lo openglimage.lo \ + openglgraphics.lo + libguichan_opengl_la_OBJECTS = $(am_libguichan_opengl_la_OBJECTS) +@@ -233,7 +233,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libguichan_opengl.la INCLUDES = -I$(top_srcdir)/include Modified: branches/2019Q2/devel/guichan/files/patch-src__sdl__Makefile.in ============================================================================== --- branches/2019Q2/devel/guichan/files/patch-src__sdl__Makefile.in Fri Apr 5 22:16:01 2019 (r497993) +++ branches/2019Q2/devel/guichan/files/patch-src__sdl__Makefile.in Fri Apr 5 22:16:33 2019 (r497994) @@ -1,6 +1,15 @@ ---- ./src/sdl/Makefile.in.orig 2008-07-28 14:05:37.000000000 +0200 -+++ ./src/sdl/Makefile.in 2008-07-28 14:05:46.000000000 +0200 -@@ -204,7 +204,7 @@ +--- src/sdl/Makefile.in.orig 2009-10-05 18:37:13 UTC ++++ src/sdl/Makefile.in +@@ -72,7 +72,7 @@ am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" + LTLIBRARIES = $(lib_LTLIBRARIES) +-libguichan_sdl_la_LIBADD = ++libguichan_sdl_la_LIBADD = -lSDL -lSDL_image + am_libguichan_sdl_la_OBJECTS = sdl.lo sdlgraphics.lo sdlimage.lo \ + sdlimageloader.lo sdlinput.lo + libguichan_sdl_la_OBJECTS = $(am_libguichan_sdl_la_OBJECTS) +@@ -235,7 +235,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libguichan_sdl.la INCLUDES = -I$(top_srcdir)/include
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904052216.x35MGX9R077992>