diff options
author | alane <alane@FreeBSD.org> | 2002-11-01 12:41:01 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-11-01 12:41:01 +0000 |
commit | 22468f4928c00827a0e0c0ee0e2de4f127686529 (patch) | |
tree | 52a502b9b8e445c64e38b4a3596bf0a2814187c6 /www/flock/files | |
parent | 2fea390f73b20336a187cc9de247e604024b9104 (diff) | |
download | FreeBSD-ports-22468f4928c00827a0e0c0ee0e2de4f127686529.zip FreeBSD-ports-22468f4928c00827a0e0c0ee0e2de4f127686529.tar.gz |
1. PORTREVISION -> 1.
2. Incorporated my uncommited mods with Trevor's changes.
3. Remade pkg-plist accordingly.
4. Use /usr/bin/perl if present, then /usr/local/bin/perl.
5. Add File::Spec to BUILD_DEPENDS if perl < 5.8.0.
Diffstat (limited to 'www/flock/files')
-rw-r--r-- | www/flock/files/mozconfig.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/www/flock/files/mozconfig.in b/www/flock/files/mozconfig.in index b931397..3c0b881 100644 --- a/www/flock/files/mozconfig.in +++ b/www/flock/files/mozconfig.in @@ -9,17 +9,19 @@ ac_add_options --disable-tests ac_add_options --disable-debug ac_add_options --disable-mailnews ac_add_options --disable-composer -#ac_add_options --enable-optimize=-O2 ###################################################################### # FBSD specific -export CFLAGS=@CFLAGS@ -export LIBS=@LIBS@ -export PERL=@LOCALBASE@/bin/perl5.8.0 +export CFLAGS="@CFLAGS@" +export LIBS="@LIBS@" +test -x /usr/bin/PERL && export PERL=/usr/bin/perl \ + || export PERL=/usr/local/bin/perl mk_add_options PERL=$PERL export GTK_CONFIG=@X11BASE@/bin/gtk12-config mk_add_options GTK_CONFIG=$GTK_CONFIG export GLIB_CONFIG=@LOCALBASE@/bin/glib12-config mk_add_options GLIB_CONFIG=$GLIB_CONFIG +# Configure options for installation +ac_add_options --prefix=@PREFIX@ ###################################################################### # Use ports for these libraries ac_add_options --with-system-jpeg=@LOCALBASE@ @@ -29,7 +31,7 @@ ac_add_options --with-system-mng=@LOCALBASE@ ###################################################################### # enable features ac_add_options --with-pthreads -# ac_add_options --enable-xft +ac_add_options --enable-xft ac_add_options --enable-crypto ac_add_options --enable-xinerama ac_add_options --enable-reorder |