view admin/build-configs @ 80390:59863894d837

Replace MenuHandle and GetMenuHandle with MenuRef and GetMenuRef, respectively. Replace WindowPtr with WindowRef. Replace ControlHandle with ControlRef. [!TARGET_API_MAC_CARBON]: Include Quickdraw.h instead of QuickDraw.h. (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU. [TARGET_API_MAC_CARBON] (menu_target_item_handler): Don't call next handler. Return immediately unless popup is activated. [TARGET_API_MAC_CARBON] (install_menu_target_item_handler): Remove argument. Install handler to application. (set_frame_menubar): Don't change deep_p. (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y. (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P) (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID) [HAVE_DIALOGS]: New macros. [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog): Use them. (fill_menu) [TARGET_API_MAC_CARBON]: Use SetMenuItemHierarchicalMenu. (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString. (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]: Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p in #if 0 as it is not compatible with y-or-n-p-with-timeout. (timer_check) [TARGET_API_MAC_CARBON]: Add extern. [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls. (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function. [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind. Run timers during dialog popup. (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated. (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: New variable. [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog event loop should be quit. [TARGET_API_MAC_CARBON] (create_and_show_dialog): Quit dialog event loop if quit_dialog_event_loop is set.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Sat, 29 Mar 2008 00:46:21 +0000
parents cde444d03b82
children 606f2d163a64 e6db9ee945b8
line wrap: on
line source

#! /usr/bin/perl

# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
#   Free Software Foundation, Inc.
#
# This file is part of GNU Emacs.
#
# GNU Emacs is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Emacs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Emacs; see the file COPYING.  If not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.

# Build Emacs in several different configurations.

require 5;
use Getopt::Long;
use File::Basename;
use Cwd;

@configs =
  (
   ["--without-x", 		  "--optim"],
   ["--without-x-toolkit", 	  "--optim"],
   ["--without-toolkit-scroll-bars", "--optim"],
   ["--with-x-toolkit=lucid", 	  "--optim"],
   ["--with-x-toolkit=motif", 	  "--optim"],
   ["--with-x-toolkit=motif", 	  "--enable-checking"],
   ["--with-x-toolkit=motif", 	  "--gcc3"],
   ["--with-x-toolkit=motif", 	  ""],
  );

$log = "/tmp/$$.out";
print "Using log file $log\n";
unlink $log;

$root = $ENV{"EMACS_ROOT"};
$root = "/gd/gnu/emacs" unless $root;

$rc = GetOptions ("help" => \$help);
if ($rc == 0 || $help)
  {
    print <<USAGE;
build-configs

Build Emacs in different configurations.

--help			show this help

USAGE
    exit 1;
  }

# Chdir to the top-level directory of the tree.  If not in a tree
# containing Emacs, use the default.

while (! -f "src/emacs.c" && cwd () ne "/")
  {
    chdir "..";
  }

chdir $root if cwd () eq "/";
print "Build in ", cwd (), "\n";

foreach $config (@configs)
  {
    my $configure_options = @$config[0];
    my $make_options = @$config[1];
    my $rc;

    print "$configure_options, $make_options\n";
    unlink "config.cache";

    $rc = system ("$root/configure $configure_options >>$log 2>&1");
    if ($rc != 0)
      {
	print "configure failed\n";
	exit 1;
      }

    $rc = system ("make-emacs --all $make_options >>$log 2>&1");
    if ($rc != 0)
      {
	print "Make failed\n";
	exit 1;
      }
  }

# Local Variables:
# mode: cperl
# End:

# arch-tag: 20a4452d-610a-4e54-9abc-ffe79f5c0d30