1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-28 07:50:48 -08:00

Adapt to solaris

Copied from Perforce
 Change: 18178
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Tucker 1997-05-15 16:28:40 +01:00
parent 292c6cc592
commit 64b7c30578

View file

@ -10,13 +10,16 @@
1;
%plat_link = ();
$plat_link{"sol2.4_sparc"} = "-lm";
sub compiler_settings {
$cc_command = "gcc";
$cc_opts = "-ansi -pedantic -Wall -Wstrict-prototypes \\
-Winline -Waggregate-return -Wnested-externs -Wcast-qual \\
-Wshadow -Wmissing-prototypes -Wredundant-decls -Wcast-align \\
-O -g -ggdb3 -D$MMQA_VERSION";
$cc_link = "$obj_dir/platform.o";
$cc_link = "$obj_dir/platform.o $plat_link{$platform_class}";
$cc_include = "-I$testlib_dir -I$MPS_INCLUDE_DIR";
}