source: trunk/third/mozilla/configure.athena @ 18968

Revision 18968, 162 bytes checked in by rbasch, 21 years ago (diff)
Configure Mozilla for Athena: enable crypto support, turn off debugging code, and specify optimization levels.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3case $OS in
4linux)
5  optimize=-O2
6  ;;
7solaris)
8  optimize=-O3
9  ;;
10esac
11
12exec ./configure --enable-crypto --disable-debug --enable-optimize=$optimize
Note: See TracBrowser for help on using the repository browser.