diff options
author | Marc G. Fournier <scrappy@FreeBSD.org> | 1998-11-15 07:50:11 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@FreeBSD.org> | 1998-11-15 07:50:11 +0000 |
commit | cb90c669a31cb0905dd5dae59fd13684ad9aa0b0 (patch) | |
tree | 45f0f00b84286d9e6ff457486e6859279ef59392 /devel/mico/Makefile | |
parent | Made a mistake on creating patch-ak ... fixed here (diff) |
Fix 'ldconfig' as indicated in handbook
Get rid of --disable-shared flag for configure
Improve patch-ak such that the shared library compile options as listed in
handbook are included
Diffstat (limited to 'devel/mico/Makefile')
-rw-r--r-- | devel/mico/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/mico/Makefile b/devel/mico/Makefile index 3a8ae5232ae3..d92bad10de1e 100644 --- a/devel/mico/Makefile +++ b/devel/mico/Makefile @@ -3,7 +3,7 @@ # Date created: 11 July 1998 # Whom: Marc G. Fournier <scrappy@freebsd.org> # -# $Id: Makefile,v 1.22 1998/11/14 17:50:16 jseger Exp $ +# $Id: Makefile,v 1.23 1998/11/15 07:08:20 scrappy Exp $ # DISTNAME= mico-2.2.3 @@ -38,7 +38,7 @@ USE_GMAKE= yes WRKSRC= ${WRKDIR}/mico CONFIGURE_ARGS= --with-qt --with-gtk --with-tcl \ - --disable-optimize --disable-shared --disable-mini-stl + --disable-optimize --disable-mini-stl MAN1= idl.1 imr.1 nsadmin.1 MAN5= micorc.5 @@ -48,6 +48,6 @@ pre-configure: cd ${WRKSRC}; autoconf post-install: - ${LDCONFIG} -m ${PREFIX}/lib + ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m .include <bsd.port.post.mk> |