Date: Sun, 10 Nov 2002 16:00:05 -0800 (PST) From: Thierry Thomas <thierry@pompo.net> To: freebsd-ports@FreeBSD.org Subject: Re: ports/45176: devel/allegro: `allegro-config --libs` reports uninstalled lib. Message-ID: <200211110000.gAB005oC098419@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/45176; it has been noted by GNATS. From: Thierry Thomas <thierry@pompo.net> To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/45176: devel/allegro: `allegro-config --libs` reports uninstalled lib. Date: Mon, 11 Nov 2002 00:52:32 +0100 Le 10/11/2002 à 00:59:01 +0100, Thierry Thomas <thierry@pompo.net> écrivait : > - echo $libdirs $allegro_ldflags -l${lib_type}-${version} -l${lib_type}_unsharable > + echo $libdirs $allegro_ldflags -l${lib_type}-${major} -l${lib_type}_unsharable Oops... There is no number! The correct patch would be: --- misc/allegro-config.in.orig Wed Jul 3 22:19:19 2002 +++ misc/allegro-config.in Sat Nov 9 22:27:50 2002 @@ -10,6 +10,7 @@ # This is heavily based on a similar script from GTK. version=4.0.2 prefix=@prefix@ exec_prefix=$prefix @@ -157,7 +158,7 @@ if test "$static_libs" = "yes"; then echo $libdirs $allegro_ldflags -l${lib_type} $allegro_libs else - echo $libdirs $allegro_ldflags -l${lib_type}-${version} -l${lib_type}_unsharable + echo $libdirs $allegro_ldflags -l${lib_type} -l${lib_type}_unsharable fi fi -- Th. Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200211110000.gAB005oC098419>