Implement EnumPrinterDataEx{A|W}.
[wine.git] / tools / winemaker
blob2bc118597136ebd971b2a4274a5bbaf31b7794ea
1 #!/usr/bin/perl -w
3 # Copyright 2000 Francois Gouget for CodeWeavers
4 # fgouget@codeweavers.com
6 my $version="0.5.6";
8 use Cwd;
9 use File::Basename;
10 use File::Copy;
14 #####
16 # Options
18 #####
20 # The following constants define what we do with the case of filenames
23 # Never rename a file to lowercase
24 my $OPT_LOWER_NONE=0;
27 # Rename all files to lowercase
28 my $OPT_LOWER_ALL=1;
31 # Rename only files that are all uppercase to lowercase
32 my $OPT_LOWER_UPPERCASE=2;
35 # The following constants define whether to ask questions or not
38 # No (synonym of never)
39 my $OPT_ASK_NO=0;
42 # Yes (always)
43 my $OPT_ASK_YES=1;
46 # Skip the questions till the end of this scope
47 my $OPT_ASK_SKIP=-1;
50 # General options
53 # This is the directory in which winemaker will operate.
54 my $opt_work_dir;
57 # Make a backup of the files
58 my $opt_backup;
61 # Defines which files to rename
62 my $opt_lower;
65 # If we don't find the file referenced by an include, lower it
66 my $opt_lower_include;
69 # Options for the 'Source' method
72 # Specifies that we have only one target so that all sources relate
73 # to this target. By default this variable is left undefined which
74 # means winemaker should try to find out by itself what the targets
75 # are. If not undefined then this contains the name of the default
76 # target (without the extension).
77 my $opt_single_target;
80 # If '$opt_single_target' has been specified then this is the type of
81 # that target. Otherwise it specifies whether the default target type
82 # is guiexe or cuiexe.
83 my $opt_target_type;
86 # Contains the default set of flags to be used when creating a new target.
87 my $opt_flags;
90 # If true then winemaker should ask questions to the user as it goes
91 # along.
92 my $opt_is_interactive;
93 my $opt_ask_project_options;
94 my $opt_ask_target_options;
97 # If false then winemaker should not generate any file, i.e.
98 # no makefiles, but also no .spec files, no configure.in, etc.
99 my $opt_no_generated_files;
102 # Specifies not to print the banner if set.
103 my $opt_no_banner;
107 #####
109 # Target modelization
111 #####
113 # The description of a target is stored in an array. The constants
114 # below identify what is stored at each index of the array.
117 # This is the name of the target.
118 my $T_NAME=0;
121 # Defines the type of target we want to build. See the TT_xxx
122 # constants below
123 my $T_TYPE=1;
126 # Defines the target's enty point, i.e. the function that is called
127 # on startup.
128 my $T_INIT=2;
131 # This is a bitfield containing flags refining the way the target
132 # should be handled. See the TF_xxx constants below
133 my $T_FLAGS=3;
136 # This is a reference to an array containing the list of the
137 # resp. C, C++, RC, other (.h, .hxx, etc.) source files.
138 my $T_SOURCES_C=4;
139 my $T_SOURCES_CXX=5;
140 my $T_SOURCES_RC=6;
141 my $T_SOURCES_MISC=7;
144 # This is a reference to an array containing the list of macro
145 # definitions
146 my $T_DEFINES=8;
149 # This is a reference to an array containing the list of directory
150 # names that constitute the include path
151 my $T_INCLUDE_PATH=9;
154 # Same as T_INCLUDE_PATH but for the library search path
155 my $T_LIBRARY_PATH=10;
158 # The list of Windows libraries to import
159 my $T_IMPORTS=11;
162 # The list of Unix libraries to link with
163 my $T_LIBRARIES=12;
166 # The list of dependencies between targets
167 my $T_DEPENDS=13;
170 # The following constants define the recognized types of target
173 # This is not a real target. This type of target is used to collect
174 # the sources that don't seem to belong to any other target. Thus no
175 # real target is generated for them, we just put the sources of the
176 # fake target in the global source list.
177 my $TT_SETTINGS=0;
180 # For executables in the windows subsystem
181 my $TT_GUIEXE=1;
184 # For executables in the console subsystem
185 my $TT_CUIEXE=2;
188 # For dynamically linked libraries
189 my $TT_DLL=3;
192 # The following constants further refine how the target should be handled
195 # This target needs a wrapper
196 my $TF_WRAP=1;
199 # This target is a wrapper
200 my $TF_WRAPPER=2;
203 # This target is an MFC-based target
204 my $TF_MFC=4;
207 # Initialize a target:
208 # - set the target type to TT_SETTINGS, i.e. no real target will
209 # be generated.
210 sub target_init
212 my $target=$_[0];
214 @$target[$T_TYPE]=$TT_SETTINGS;
215 # leaving $T_INIT undefined
216 @$target[$T_FLAGS]=$opt_flags;
217 @$target[$T_SOURCES_C]=[];
218 @$target[$T_SOURCES_CXX]=[];
219 @$target[$T_SOURCES_RC]=[];
220 @$target[$T_SOURCES_MISC]=[];
221 @$target[$T_DEFINES]=[];
222 @$target[$T_INCLUDE_PATH]=[];
223 @$target[$T_LIBRARY_PATH]=[];
224 @$target[$T_IMPORTS]=[];
225 @$target[$T_LIBRARIES]=[];
226 @$target[$T_DEPENDS]=[];
229 sub get_default_init
231 my $type=$_[0];
232 if ($type == $TT_GUIEXE) {
233 return "WinMain";
234 } elsif ($type == $TT_CUIEXE) {
235 return "main";
236 } elsif ($type == $TT_DLL) {
237 return "DllMain";
243 #####
245 # Project modelization
247 #####
249 # First we have the notion of project. A project is described by an
250 # array (since we don't have structs in perl). The constants below
251 # identify what is stored at each index of the array.
254 # This is the path in which this project is located. In other
255 # words, this is the path to the Makefile.
256 my $P_PATH=0;
259 # This index contains a reference to an array containing the project-wide
260 # settings. The structure of that arrray is actually identical to that of
261 # a regular target since it can also contain extra sources.
262 my $P_SETTINGS=1;
265 # This index contains a reference to an array of targets for this
266 # project. Each target describes how an executable or library is to
267 # be built. For each target this description takes the same form as
268 # that of the project: an array. So this entry is an array of arrays.
269 my $P_TARGETS=2;
272 # Initialize a project:
273 # - set the project's path
274 # - initialize the target list
275 # - create a default target (will be removed later if unnecessary)
276 sub project_init
278 my $project=$_[0];
279 my $path=$_[1];
281 my $project_settings=[];
282 target_init($project_settings);
284 @$project[$P_PATH]=$path;
285 @$project[$P_SETTINGS]=$project_settings;
286 @$project[$P_TARGETS]=[];
291 #####
293 # Global variables
295 #####
297 my %warnings;
299 my %templates;
302 # Contains the list of all projects. This list tells us what are
303 # the subprojects of the main Makefile and where we have to generate
304 # Makefiles.
305 my @projects=();
308 # This is the main project, i.e. the one in the "." directory.
309 # It may well be empty in which case the main Makefile will only
310 # call out subprojects.
311 my @main_project;
314 # Contains the defaults for the include path, etc.
315 # We store the defaults as if this were a target except that we only
316 # exploit the defines, include path, library path, library list and misc
317 # sources fields.
318 my @global_settings;
321 # If one of the projects requires the MFc then we set this global variable
322 # to true so that configure asks the user to provide a path tothe MFC
323 my $needs_mfc=0;
327 #####
329 # Utility functions
331 #####
334 # Cleans up a name to make it an acceptable Makefile
335 # variable name.
336 sub canonize
338 my $name=$_[0];
340 $name =~ tr/a-zA-Z0-9_/_/c;
341 return $name;
345 # Returns true is the specified pathname is absolute.
346 # Note: pathnames that start with a variable '$' or
347 # '~' are considered absolute.
348 sub is_absolute
350 my $path=$_[0];
352 return ($path =~ /^[\/~\$]/);
356 # Performs a binary search looking for the specified item
357 sub bsearch
359 my $array=$_[0];
360 my $item=$_[1];
361 my $last=@{$array}-1;
362 my $first=0;
364 while ($first<=$last) {
365 my $index=int(($first+$last)/2);
366 my $cmp=@$array[$index] cmp $item;
367 if ($cmp<0) {
368 $first=$index+1;
369 } elsif ($cmp>0) {
370 $last=$index-1;
371 } else {
372 return $index;
379 #####
381 # 'Source'-based Project analysis
383 #####
386 # Allows the user to specify makefile and target specific options
387 # - target: the structure in which to store the results
388 # - options: the string containing the options
389 sub source_set_options
391 my $target=$_[0];
392 my $options=$_[1];
394 #FIXME: we must deal with escaping of stuff and all
395 foreach $option (split / /,$options) {
396 if (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-D/) {
397 push @{@$target[$T_DEFINES]},$option;
398 } elsif (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-I/) {
399 push @{@$target[$T_INCLUDE_PATH]},$option;
400 } elsif ($option =~ /^-L/) {
401 push @{@$target[$T_LIBRARY_PATH]},$option;
402 } elsif ($option =~ /^-i/) {
403 push @{@$target[$T_IMPORTS]},$';
404 } elsif ($option =~ /^-l/) {
405 push @{@$target[$T_LIBRARIES]},$';
406 } elsif (@$target[$T_TYPE] != $TT_DLL and
407 $option =~ /^--wrap/) {
408 print STDERR "warning: --wrap no longer supported, ignoring\n";
409 #@$target[$T_FLAGS]|=$TF_WRAP;
410 } elsif (@$target[$T_TYPE] != $TT_DLL and
411 $option =~ /^--nowrap/) {
412 @$target[$T_FLAGS]&=~$TF_WRAP;
413 } elsif ($option =~ /^--mfc/) {
414 @$target[$T_FLAGS]|=$TF_MFC;
415 #if (@$target[$T_TYPE] != $TT_DLL) {
416 # @$target[$T_FLAGS]|=$TF_WRAP;
418 } elsif ($option =~ /^--nomfc/) {
419 @$target[$T_FLAGS]&=~$TF_MFC;
420 #@$target[$T_FLAGS]&=~($TF_MFC|$TF_WRAP);
421 } else {
422 print STDERR "error: unknown option \"$option\"\n";
423 return 0;
426 return 1;
430 # Scans the specified directory to:
431 # - see if we should create a Makefile in this directory. We normally do
432 # so if we find a project file and sources
433 # - get a list of targets for this directory
434 # - get the list of source files
435 sub source_scan_directory
437 # a reference to the parent's project
438 my $parent_project=$_[0];
439 # the full relative path to the current directory, including a
440 # trailing '/', or an empty string if this is the top level directory
441 my $path=$_[1];
442 # the name of this directory, including a trailing '/', or an empty
443 # string if this is the top level directory
444 my $dirname=$_[2];
446 # reference to the project for this directory. May not be used
447 my $project;
448 # list of targets found in the 'current' directory
449 my %targets;
450 # list of sources found in the current directory
451 my @sources_c=();
452 my @sources_cxx=();
453 my @sources_rc=();
454 my @sources_misc=();
455 # true if this directory contains a Windows project
456 my $has_win_project=0;
457 # If we don't find any executable/library then we might make up targets
458 # from the list of .dsp/.mak files we find since they usually have the
459 # same name as their target.
460 my @dsp_files=();
461 my @mak_files=();
463 if (defined $opt_single_target or $dirname eq "") {
464 # Either there is a single target and thus a single project,
465 # or we are in the top level directory for which a project
466 # already exists
467 $project=$parent_project;
468 } else {
469 $project=[];
470 project_init($project,$path);
472 my $project_settings=@$project[$P_SETTINGS];
474 # First find out what this directory contains:
475 # collect all sources, targets and subdirectories
476 my $directory=get_directory_contents($path);
477 foreach $dentry (@$directory) {
478 if ($dentry =~ /^\./) {
479 next;
481 my $fullentry="$path$dentry";
482 if (-d "$fullentry") {
483 if ($dentry =~ /^(Release|Debug)/i) {
484 # These directories are often used to store the object files and the
485 # resulting executable/library. They should not contain anything else.
486 my @candidates=grep /\.(exe|dll)$/i, @{get_directory_contents("$fullentry")};
487 foreach $candidate (@candidates) {
488 if ($candidate =~ s/\.exe$//i) {
489 $targets{$candidate}=1;
490 } elsif ($candidate =~ s/^(.*)\.dll$/lib$1.so/i) {
491 $targets{$candidate}=1;
494 } elsif ($dentry =~ /^include/i) {
495 # This directory must contain headers we're going to need
496 push @{@$project_settings[$T_INCLUDE_PATH]},"-I$dentry";
497 } else {
498 # Recursively scan this directory. Any source file that cannot be
499 # attributed to a project in one of the subdirectories will be attributed
500 # to this project.
501 source_scan_directory($project,"$fullentry/","$dentry/");
503 } elsif (-f "$fullentry") {
504 if ($dentry =~ s/\.exe$//i) {
505 $targets{$dentry}=1;
506 } elsif ($dentry =~ s/^(.*)\.dll$/lib$1.so/i) {
507 $targets{$dentry}=1;
508 } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.spec\.c$/) {
509 push @sources_c,"$dentry";
510 } elsif ($dentry =~ /\.(cpp|cxx)$/i) {
511 if ($dentry =~ /^stdafx.cpp$/i) {
512 push @sources_misc,"$dentry";
513 @$project_settings[$T_FLAGS]|=$TF_MFC;
514 } else {
515 push @sources_cxx,"$dentry";
517 } elsif ($dentry =~ /\.rc$/i) {
518 push @sources_rc,"$dentry";
519 } elsif ($dentry =~ /\.(h|hxx|inl|rc2|dlg)$/i) {
520 push @sources_misc,"$dentry";
521 if ($dentry =~ /^stdafx.h$/i) {
522 @$project_settings[$T_FLAGS]|=$TF_MFC;
524 } elsif ($dentry =~ /\.dsp$/i) {
525 push @dsp_files,"$dentry";
526 $has_win_project=1;
527 } elsif ($dentry =~ /\.mak$/i) {
528 push @mak_files,"$dentry";
529 $has_win_project=1;
530 } elsif ($dentry =~ /^makefile/i) {
531 $has_win_project=1;
535 closedir(DIRECTORY);
537 # If we have a single target then all we have to do is assign
538 # all the sources to it and we're done
539 # FIXME: does this play well with the --interactive mode?
540 if ($opt_single_target) {
541 my $target=@{@$project[$P_TARGETS]}[0];
542 push @{@$target[$T_SOURCES_C]},map "$path$_",@sources_c;
543 push @{@$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx;
544 push @{@$target[$T_SOURCES_RC]},map "$path$_",@sources_rc;
545 push @{@$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc;
546 return;
549 my $source_count=@sources_c+@sources_cxx+@sources_rc+
550 @{@$project_settings[$T_SOURCES_C]}+
551 @{@$project_settings[$T_SOURCES_CXX]}+
552 @{@$project_settings[$T_SOURCES_RC]};
553 if ($source_count == 0) {
554 # A project without real sources is not a project, get out!
555 if ($project!=$parent_project) {
556 $parent_settings=@$parent_project[$P_SETTINGS];
557 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
558 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
560 return;
562 #print "targets=",%targets,"\n";
563 #print "target_count=$target_count\n";
564 #print "has_win_project=$has_win_project\n";
565 #print "dirname=$dirname\n";
567 my $target_count;
568 if (($has_win_project != 0) or ($dirname eq "")) {
569 # Deal with cases where we could not find any executable/library, and
570 # thus have no target, although we did find some sort of windows project.
571 $target_count=keys %targets;
572 if ($target_count == 0) {
573 # Try to come up with a target list based on .dsp/.mak files
574 my $prj_list;
575 if (@dsp_files > 0) {
576 $prj_list=\@dsp_files;
577 } else {
578 $prj_list=\@mak_files;
580 foreach $filename (@$prj_list) {
581 $filename =~ s/\.(dsp|mak)$//i;
582 if ($opt_target_type == $TT_DLL) {
583 $filename = "lib$filename.so";
585 $targets{$filename}=1;
587 $target_count=keys %targets;
588 if ($target_count == 0) {
589 # Still nothing, try the name of the directory
590 my $name;
591 if ($dirname eq "") {
592 # Bad luck, this is the top level directory!
593 $name=(split /\//, cwd)[-1];
594 } else {
595 $name=$dirname;
596 # Remove the trailing '/'. Also eliminate whatever is after the last
597 # '.' as it is likely to be meaningless (.orig, .new, ...)
598 $name =~ s+(/|\.[^.]*)$++;
599 if ($name eq "src") {
600 # 'src' is probably a subdirectory of the real project directory.
601 # Try again with the parent (if any).
602 my $parent=$path;
603 if ($parent =~ s+([^/]*)/[^/]*/$+$1+) {
604 $name=$parent;
605 } else {
606 $name=(split /\//, cwd)[-1];
610 $name =~ s+(/|\.[^.]*)$++;
611 if ($opt_target_type == $TT_DLL) {
612 $name = "lib$name.so";
614 $targets{$name}=1;
618 # Ask confirmation to the user if he wishes so
619 if ($opt_is_interactive == $OPT_ASK_YES) {
620 my $target_list=join " ",keys %targets;
621 print "\n*** In ",($path?$path:"./"),"\n";
622 print "* winemaker found the following list of (potential) targets\n";
623 print "* $target_list\n";
624 print "* Type enter to use it as is, your own comma-separated list of\n";
625 print "* targets, 'none' to assign the source files to a parent directory,\n";
626 print "* or 'ignore' to ignore everything in this directory tree.\n";
627 print "* Target list:\n";
628 $target_list=<STDIN>;
629 chomp $target_list;
630 if ($target_list eq "") {
631 # Keep the target list as is, i.e. do nothing
632 } elsif ($target_list eq "none") {
633 # Empty the target list
634 undef %targets;
635 } elsif ($target_list eq "ignore") {
636 # Ignore this subtree altogether
637 return;
638 } else {
639 undef %targets;
640 foreach $target (split /,/,$target_list) {
641 $target =~ s+^\s*++;
642 $target =~ s+\s*$++;
643 # Also accept .exe and .dll as a courtesy
644 $target =~ s+(.*)\.dll$+lib$1.so+;
645 $target =~ s+\.exe$++;
646 $targets{$target}=1;
652 # If we have no project at this level, then transfer all
653 # the sources to the parent project
654 $target_count=keys %targets;
655 if ($target_count == 0) {
656 if ($project!=$parent_project) {
657 my $parent_settings=@$parent_project[$P_SETTINGS];
658 push @{@$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c;
659 push @{@$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx;
660 push @{@$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc;
661 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
662 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
664 return;
667 # Otherwise add this project to the project list, except for
668 # the main project which is already in the list.
669 if ($dirname ne "") {
670 push @projects,$project;
673 # Ask for project-wide options
674 if ($opt_ask_project_options == $OPT_ASK_YES) {
675 my $flag_desc="";
676 if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
677 $flag_desc="mfc";
679 if ((@$project_settings[$T_FLAGS] & $TF_WRAP)!=0) {
680 if ($flag_desc ne "") {
681 $flag_desc.=", ";
683 $flag_desc.="wrapped";
685 print "* Type any project-wide options (-D/-I/-L/-i/-l/--mfc/--wrap),\n";
686 if (defined $flag_desc) {
687 print "* (currently $flag_desc)\n";
689 print "* or 'skip' to skip the target specific options,\n";
690 print "* or 'never' to not be asked this question again:\n";
691 while (1) {
692 my $options=<STDIN>;
693 chomp $options;
694 if ($options eq "skip") {
695 $opt_ask_target_options=$OPT_ASK_SKIP;
696 last;
697 } elsif ($options eq "never") {
698 $opt_ask_project_options=$OPT_ASK_NO;
699 last;
700 } elsif (source_set_options($project_settings,$options)) {
701 last;
703 print "Please re-enter the options:\n";
707 # - Create the targets
708 # - Check if we have both libraries and programs
709 # - Match each target with source files (sort in reverse
710 # alphabetical order to get the longest matches first)
711 my @local_imports=();
712 my @local_depends=();
713 my @exe_list=();
714 foreach $target_name (sort { $b cmp $a } keys %targets) {
715 # Create the target...
716 my $basename;
717 my $target=[];
718 target_init($target);
719 @$target[$T_NAME]=$target_name;
720 @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS];
721 if ($target_name =~ /^lib(.*)\.so$/) {
722 @$target[$T_TYPE]=$TT_DLL;
723 @$target[$T_INIT]=get_default_init($TT_DLL);
724 @$target[$T_FLAGS]&=~$TF_WRAP;
725 $basename=$1;
726 push @local_depends,$target_name;
727 push @local_imports,$basename;
728 } else {
729 @$target[$T_TYPE]=$opt_target_type;
730 @$target[$T_INIT]=get_default_init($opt_target_type);
731 $basename=$target_name;
732 push @exe_list,$target;
734 # This is the default link list of Visual Studio, except odbccp32
735 # which we don't have in Wine. Also I add ntdll which seems
736 # necessary for Winelib.
737 my @std_imports=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll ntdll.dll odbc32.dll ole32 oleaut32.dll shell32.dll user32.dll winspool.drv);
738 @$target[$T_IMPORTS]=\@std_imports;
739 push @{@$project[$P_TARGETS]},$target;
741 # Ask for target-specific options
742 if ($opt_ask_target_options == $OPT_ASK_YES) {
743 my $flag_desc="";
744 if ((@$target[$T_FLAGS] & $TF_MFC)!=0) {
745 $flag_desc=" (mfc";
747 if ((@$target[$T_FLAGS] & $TF_WRAP)!=0) {
748 if ($flag_desc ne "") {
749 $flag_desc.=", ";
750 } else {
751 $flag_desc=" (";
753 $flag_desc.="wrapped";
755 if ($flag_desc ne "") {
756 $flag_desc.=")";
758 print "* Specify any link option (-L/-i/-l/--mfc/--wrap) specific to the target\n";
759 print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n";
760 while (1) {
761 my $options=<STDIN>;
762 chomp $options;
763 if ($options eq "never") {
764 $opt_ask_target_options=$OPT_ASK_NO;
765 last;
766 } elsif (source_set_options($target,$options)) {
767 last;
769 print "Please re-enter the options:\n";
772 if (@$target[$T_FLAGS] & $TF_MFC) {
773 @$project_settings[$T_FLAGS]|=$TF_MFC;
774 push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
775 push @{@$target[$T_IMPORTS]},"mfc.dll";
776 # FIXME: Link with the MFC in the Unix sense, until we
777 # start exporting the functions properly.
778 push @{@$target[$T_LIBRARIES]},"mfc";
781 # Match sources...
782 if ($target_count == 1) {
783 push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c;
784 @$project_settings[$T_SOURCES_C]=[];
785 @sources_c=();
787 push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx;
788 @$project_settings[$T_SOURCES_CXX]=[];
789 @sources_cxx=();
791 push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc;
792 @$project_settings[$T_SOURCES_RC]=[];
793 @sources_rc=();
795 push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc;
796 # No need for sorting these sources
797 @$project_settings[$T_SOURCES_MISC]=[];
798 @sources_misc=();
799 } else {
800 foreach $source (@sources_c) {
801 if ($source =~ /^$basename/i) {
802 push @{@$target[$T_SOURCES_C]},$source;
803 $source="";
806 foreach $source (@sources_cxx) {
807 if ($source =~ /^$basename/i) {
808 push @{@$target[$T_SOURCES_CXX]},$source;
809 $source="";
812 foreach $source (@sources_rc) {
813 if ($source =~ /^$basename/i) {
814 push @{@$target[$T_SOURCES_RC]},$source;
815 $source="";
818 foreach $source (@sources_misc) {
819 if ($source =~ /^$basename/i) {
820 push @{@$target[$T_SOURCES_MISC]},$source;
821 $source="";
825 @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}];
826 @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}];
827 @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}];
828 @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}];
830 if ($opt_ask_target_options == $OPT_ASK_SKIP) {
831 $opt_ask_target_options=$OPT_ASK_YES;
834 if (@$project_settings[$T_FLAGS] & $TF_MFC) {
835 push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
837 # The sources that did not match, if any, go to the extra
838 # source list of the project settings
839 foreach $source (@sources_c) {
840 if ($source ne "") {
841 push @{@$project_settings[$T_SOURCES_C]},$source;
844 @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}];
845 foreach $source (@sources_cxx) {
846 if ($source ne "") {
847 push @{@$project_settings[$T_SOURCES_CXX]},$source;
850 @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}];
851 foreach $source (@sources_rc) {
852 if ($source ne "") {
853 push @{@$project_settings[$T_SOURCES_RC]},$source;
856 @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}];
857 foreach $source (@sources_misc) {
858 if ($source ne "") {
859 push @{@$project_settings[$T_SOURCES_MISC]},$source;
862 @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}];
864 # Finally if we are building both libraries and programs in
865 # this directory, then the programs should be linked with all
866 # the libraries
867 if (@local_imports > 0 and @exe_list > 0) {
868 foreach $target (@exe_list) {
869 push @{@$target[$T_LIBRARY_PATH]},"-L.";
870 push @{@$target[$T_IMPORTS]},map { "$_.dll" } @local_imports;
871 # Also link in the Unix sense since none of the functions
872 # will be exported.
873 push @{@$target[$T_LIBRARIES]},@local_imports;
874 push @{@$target[$T_DEPENDS]},@local_depends;
880 # Scan the source directories in search of things to build
881 sub source_scan
883 # If there's a single target then this is going to be the default target
884 if (defined $opt_single_target) {
885 # Create the main target
886 my $main_target=[];
887 target_init($main_target);
888 if ($opt_target_type == $TT_DLL) {
889 @$main_target[$T_NAME]="lib$opt_single_target.so";
890 } else {
891 @$main_target[$T_NAME]="$opt_single_target";
893 @$main_target[$T_TYPE]=$opt_target_type;
895 # Add it to the list
896 push @{$main_project[$P_TARGETS]},$main_target;
899 # The main directory is always going to be there
900 push @projects,\@main_project;
902 # Now scan the directory tree looking for source files and, maybe, targets
903 print "Scanning the source directories...\n";
904 source_scan_directory(\@main_project,"","");
906 @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects;
911 #####
913 # 'vc.dsp'-based Project analysis
915 #####
917 #sub analyze_vc_dsp
924 #####
926 # Creating the wrapper targets
928 #####
930 sub postprocess_targets
932 foreach $project (@projects) {
933 foreach $target (@{@$project[$P_TARGETS]}) {
934 if ((@$target[$T_FLAGS] & $TF_WRAP) != 0) {
935 my $wrapper=[];
936 target_init($wrapper);
937 @$wrapper[$T_NAME]=@$target[$T_NAME];
938 @$wrapper[$T_TYPE]=@$target[$T_TYPE];
939 @$wrapper[$T_INIT]=get_default_init(@$target[$T_TYPE]);
940 @$wrapper[$T_FLAGS]=$TF_WRAPPER | (@$target[$T_FLAGS] & $TF_MFC);
941 push @{@$wrapper[$T_SOURCES_C]},"@$wrapper[$T_NAME]_wrapper.c";
943 my $index=bsearch(@$target[$T_SOURCES_C],"@$wrapper[$T_NAME]_wrapper.c");
944 if (defined $index) {
945 splice(@{@$target[$T_SOURCES_C]},$index,1);
947 @$target[$T_NAME]="lib@$target[$T_NAME].so";
948 @$target[$T_TYPE]=$TT_DLL;
950 push @{@$project[$P_TARGETS]},$wrapper;
952 if ((@$target[$T_FLAGS] & $TF_MFC) != 0) {
953 @{@$project[$P_SETTINGS]}[$T_FLAGS]|=$TF_MFC;
954 $needs_mfc=1;
962 #####
964 # Source search
966 #####
969 # Performs a directory traversal and renames the files so that:
970 # - they have the case desired by the user
971 # - their extension is of the appropriate case
972 # - they don't contain annoying characters like ' ', '$', '#', ...
973 sub fix_file_and_directory_names
975 my $dirname=$_[0];
977 if (opendir(DIRECTORY, "$dirname")) {
978 foreach $dentry (readdir DIRECTORY) {
979 if ($dentry =~ /^\./ or $dentry eq "CVS") {
980 next;
982 # Set $warn to 1 if the user should be warned of the renaming
983 my $warn=0;
985 # autoconf and make don't support these characters well
986 my $new_name=$dentry;
987 $new_name =~ s/[ \$]/_/g;
989 # Only all lowercase extensions are supported (because of the
990 # transformations ':.c=.o') .
991 if (-f "$dirname/$new_name") {
992 if ($new_name =~ /\.C$/) {
993 $new_name =~ s/\.C$/.c/;
995 if ($new_name =~ /\.cpp$/i) {
996 $new_name =~ s/\.cpp$/.cpp/i;
998 if ($new_name =~ s/\.cxx$/.cpp/i) {
999 $warn=1;
1001 if ($new_name =~ /\.rc$/i) {
1002 $new_name =~ s/\.rc$/.rc/i;
1004 # And this last one is to avoid confusion then running make
1005 if ($new_name =~ s/^makefile$/makefile.win/) {
1006 $warn=1;
1010 # Adjust the case to the user's preferences
1011 if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or
1012 ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/)
1014 $new_name=lc $new_name;
1017 # And finally, perform the renaming
1018 if ($new_name ne $dentry) {
1019 if ($warn) {
1020 print STDERR "warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n";
1022 if (!rename("$dirname/$dentry","$dirname/$new_name")) {
1023 print STDERR "error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n";
1024 print STDERR " $!\n";
1025 $new_name=$dentry;
1028 if (-d "$dirname/$new_name") {
1029 fix_file_and_directory_names("$dirname/$new_name");
1032 closedir(DIRECTORY);
1038 #####
1040 # Source fixup
1042 #####
1045 # This maps a directory name to a reference to an array listing
1046 # its contents (files and directories)
1047 my %directories;
1050 # Retrieves the contents of the specified directory.
1051 # We either get it from the directories hashtable which acts as a
1052 # cache, or use opendir, readdir, closedir and store the result
1053 # in the hashtable.
1054 sub get_directory_contents
1056 my $dirname=$_[0];
1057 my $directory;
1059 #print "getting the contents of $dirname\n";
1061 # check for a cached version
1062 $dirname =~ s+/$++;
1063 if ($dirname eq "") {
1064 $dirname=cwd;
1066 $directory=$directories{$dirname};
1067 if (defined $directory) {
1068 #print "->@$directory\n";
1069 return $directory;
1072 # Read this directory
1073 if (opendir(DIRECTORY, "$dirname")) {
1074 my @files=readdir DIRECTORY;
1075 closedir(DIRECTORY);
1076 $directory=\@files;
1077 } else {
1078 # Return an empty list
1079 #print "error: cannot open $dirname\n";
1080 my @files;
1081 $directory=\@files;
1083 #print "->@$directory\n";
1084 $directories{$dirname}=$directory;
1085 return $directory;
1089 # Try to find a file for the specified filename. The attempt is
1090 # case-insensitive which is why it's not trivial. If a match is
1091 # found then we return the pathname with the correct case.
1092 sub search_from
1094 my $dirname=$_[0];
1095 my $path=$_[1];
1096 my $real_path="";
1098 if ($dirname eq "" or $dirname eq ".") {
1099 $dirname=cwd;
1100 } elsif ($dirname =~ m+^[^/]+) {
1101 $dirname=cwd . "/" . $dirname;
1103 if ($dirname !~ m+/$+) {
1104 $dirname.="/";
1107 foreach $component (@$path) {
1108 #print " looking for $component in \"$dirname\"\n";
1109 if ($component eq ".") {
1110 # Pass it as is
1111 $real_path.="./";
1112 } elsif ($component eq "..") {
1113 # Go up one level
1114 $dirname=dirname($dirname) . "/";
1115 $real_path.="../";
1116 } else {
1117 my $directory=get_directory_contents $dirname;
1118 my $found;
1119 foreach $dentry (@$directory) {
1120 if ($dentry =~ /^$component$/i) {
1121 $dirname.="$dentry/";
1122 $real_path.="$dentry/";
1123 $found=1;
1124 last;
1127 if (!defined $found) {
1128 # Give up
1129 #print " could not find $component in $dirname\n";
1130 return;
1134 $real_path=~ s+/$++;
1135 #print " -> found $real_path\n";
1136 return $real_path;
1140 # Performs a case-insensitive search for the specified file in the
1141 # include path.
1142 # $line is the line number that should be referenced when an error occurs
1143 # $filename is the file we are looking for
1144 # $dirname is the directory of the file containing the '#include' directive
1145 # if '"' was used, it is an empty string otherwise
1146 # $project and $target specify part of the include path
1147 sub get_real_include_name
1149 my $line=$_[0];
1150 my $filename=$_[1];
1151 my $dirname=$_[2];
1152 my $project=$_[3];
1153 my $target=$_[4];
1155 if ($filename =~ /^([a-zA-Z]:)?[\/]/ or $filename =~ /^[a-zA-Z]:[\/]?/) {
1156 # This is not a relative path, we cannot make any check
1157 my $warning="path:$filename";
1158 if (!defined $warnings{$warning}) {
1159 $warnings{$warning}="1";
1160 print STDERR "warning: cannot check the case of absolute pathnames:\n";
1161 print STDERR "$line: $filename\n";
1163 } else {
1164 # Here's how we proceed:
1165 # - split the filename we look for into its components
1166 # - then for each directory in the include path
1167 # - trace the directory components starting from that directory
1168 # - if we fail to find a match at any point then continue with
1169 # the next directory in the include path
1170 # - otherwise, rejoice, our quest is over.
1171 my @file_components=split /[\/\\]+/, $filename;
1172 #print " Searching for $filename from @$project[$P_PATH]\n";
1174 my $real_filename;
1175 if ($dirname ne "") {
1176 # This is an 'include ""' -> look in dirname first.
1177 #print " in $dirname (include \"\")\n";
1178 $real_filename=search_from($dirname,\@file_components);
1179 if (defined $real_filename) {
1180 return $real_filename;
1183 my $project_settings=@$project[$P_SETTINGS];
1184 foreach $include (@{@$target[$T_INCLUDE_PATH]}, @{@$project_settings[$T_INCLUDE_PATH]}) {
1185 my $dirname=$include;
1186 $dirname=~ s+^-I++;
1187 if (!is_absolute($dirname)) {
1188 $dirname="@$project[$P_PATH]$dirname";
1189 } else {
1190 $dirname=~ s+^\$\(TOPSRCDIR\)/++;
1192 #print " in $dirname\n";
1193 $real_filename=search_from("$dirname",\@file_components);
1194 if (defined $real_filename) {
1195 return $real_filename;
1198 my $dotdotpath=@$project[$P_PATH];
1199 $dotdotpath =~ s/[^\/]+/../g;
1200 foreach $include (@{$global_settings[$T_INCLUDE_PATH]}) {
1201 my $dirname=$include;
1202 $dirname=~ s+^-I++;
1203 $dirname=~ s+^\$\(TOPSRCDIR\)\/++;
1204 #print " in $dirname (global setting)\n";
1205 $real_filename=search_from("$dirname",\@file_components);
1206 if (defined $real_filename) {
1207 return $real_filename;
1211 $filename =~ s+\\\\+/+g; # in include ""
1212 $filename =~ s+\\+/+g; # in include <> !
1213 if ($opt_lower_include) {
1214 return lc "$filename";
1216 return $filename;
1220 # 'Parses' a source file and fixes constructs that would not work with
1221 # Winelib. The parsing is rather simple and not all non-portable features
1222 # are corrected. The most important feature that is corrected is the case
1223 # and path separator of '#include' directives. This requires that each
1224 # source file be associated to a project & target so that the proper
1225 # include path is used.
1226 # Also note that the include path is relative to the directory in which the
1227 # compiler is run, i.e. that of the project, not to that of the file.
1228 sub fix_file
1230 my $filename=$_[0];
1231 my $project=$_[1];
1232 my $target=$_[2];
1233 $filename="@$project[$P_PATH]$filename";
1234 if (! -e $filename) {
1235 return;
1238 my $is_rc=($filename =~ /\.(rc2?|dlg)$/i);
1239 my $dirname=dirname($filename);
1240 my $is_mfc=0;
1241 if (defined $target and (@$target[$T_FLAGS] & $TF_MFC)) {
1242 $is_mfc=1;
1245 print " $filename\n";
1246 #FIXME:assuming that because there is a .bak file, this is what we want is
1247 #probably flawed. Or is it???
1248 if (! -e "$filename.bak") {
1249 if (!copy("$filename","$filename.bak")) {
1250 print STDERR "error: unable to make a backup of $filename:\n";
1251 print STDERR " $!\n";
1252 return;
1255 if (!open(FILEI,"$filename.bak")) {
1256 print STDERR "error: unable to open $filename.bak for reading:\n";
1257 print STDERR " $!\n";
1258 return;
1260 if (!open(FILEO,">$filename")) {
1261 print STDERR "error: unable to open $filename for writing:\n";
1262 print STDERR " $!\n";
1263 return;
1265 my $line=0;
1266 my $modified=0;
1267 my $rc_block_depth=0;
1268 my $rc_textinclude_state=0;
1269 while (<FILEI>) {
1270 $line++;
1271 s/\r\n$/\n/;
1272 if (!/\n$/) {
1273 # Make sure all files are '\n' terminated
1274 $_ .= "\n";
1276 if ($is_rc and !$is_mfc and /^(\s*\#\s*include\s*)\"afxres\.h\"/) {
1277 # VC6 automatically includes 'afxres.h', an MFC specific header, in
1278 # the RC files it generates (even in non-MFC projects). So we replace
1279 # it with 'winres.h' its very close standard cousin so that non MFC
1280 # projects can compile in Wine without the MFC sources.
1281 my $warning="mfc:afxres.h";
1282 if (!defined $warnings{$warning}) {
1283 $warnings{$warning}="1";
1284 print STDERR "warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winres.h'\n";
1285 print STDERR "warning: the above warning is issued only once\n";
1287 print FILEO "/* winemaker: $1\"afxres.h\" */\n";
1288 print FILEO "$1\"winres.h\"$'";
1289 $modified=1;
1290 } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) {
1291 my $from_file=($2 eq "<"?"":$dirname);
1292 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1293 print FILEO "$1$2$real_include_name$4$'";
1294 $modified|=($real_include_name ne $3);
1295 } elsif (/^(\s*\#\s*pragma\s*pack\s*\((\s*push\s*,?)?\s*)(\w*)(\s*\))/) {
1296 my $pragma_header=$1;
1297 my $size=$3;
1298 my $pragma_trailer=$4;
1299 #print "$pragma_header$size$pragma_trailer$'";
1300 #print "pragma push: size=$size\n";
1301 print FILEO "/* winemaker: $pragma_header$size$pragma_trailer */\n";
1302 $line++;
1303 if ($size eq "pop") {
1304 print FILEO "#include <poppack.h>$'";
1305 } elsif ($size eq "1") {
1306 print FILEO "#include <pshpack1.h>$'";
1307 } elsif ($size eq "2") {
1308 print FILEO "#include <pshpack2.h>$'";
1309 } elsif ($size eq "8") {
1310 print FILEO "#include <pshpack8.h>$'";
1311 } elsif ($size eq "4" or $size eq "") {
1312 print FILEO "#include <pshpack4.h>$'";
1313 } else {
1314 my $warning="pack:$size";
1315 if (!defined $warnings{$warning}) {
1316 $warnings{$warning}="1";
1317 print STDERR "warning: assuming that the value of $size is 4 in\n";
1318 print STDERR "$line: $pragma_header$size$pragma_trailer\n";
1319 print STDERR "warning: the above warning is issued only once\n";
1321 print FILEO "#include <pshpack4.h>$'";
1322 $modified=1;
1324 } elsif ($is_rc) {
1325 if ($rc_block_depth == 0 and /^(\w+\s+(BITMAP|CURSOR|FONT|FONTDIR|ICON|MESSAGETABLE|TEXT)\s+((DISCARDABLE|FIXED|IMPURE|LOADONCALL|MOVEABLE|PRELOAD|PURE|RTF)\s+)*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1326 my $from_file=($5 eq "<"?"":$dirname);
1327 my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target);
1328 print FILEO "$1$5$real_include_name$7$'";
1329 $modified|=($real_include_name ne $6);
1330 } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1331 my $from_file=($2 eq "<"?"":$dirname);
1332 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1333 print FILEO "$1$2$real_include_name$4$'";
1334 $modified|=($real_include_name ne $3);
1335 } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) {
1336 $rc_textinclude_state=1;
1337 print FILEO;
1338 } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) {
1339 print FILEO "$1winres.h$2$'";
1340 $modified=1;
1341 } elsif (/^\s*BEGIN(\W.*)?$/) {
1342 $rc_textinclude_state|=2;
1343 $rc_block_depth++;
1344 print FILEO;
1345 } elsif (/^\s*END(\W.*)?$/) {
1346 $rc_textinclude_state=0;
1347 if ($rc_block_depth>0) {
1348 $rc_block_depth--;
1350 print FILEO;
1351 } else {
1352 print FILEO;
1354 } else {
1355 print FILEO;
1358 close(FILEI);
1359 close(FILEO);
1360 if ($opt_backup == 0 or $modified == 0) {
1361 if (!unlink("$filename.bak")) {
1362 print STDERR "error: unable to delete $filename.bak:\n";
1363 print STDERR " $!\n";
1369 # Analyzes each source file in turn to find and correct issues
1370 # that would cause it not to compile.
1371 sub fix_source
1373 print "Fixing the source files...\n";
1374 foreach $project (@projects) {
1375 foreach $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) {
1376 if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1377 next;
1379 foreach $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) {
1380 fix_file($source,$project,$target);
1388 #####
1390 # File generation
1392 #####
1395 # Generates a target's .spec file
1396 sub generate_spec_file
1398 my $path=$_[0];
1399 my $target=$_[1];
1400 my $project_settings=$_[2];
1402 my $basename=@$target[$T_NAME];
1403 $basename =~ s+\.so$++;
1404 if (@$target[$T_FLAGS] & $TF_WRAP) {
1405 $basename =~ s+^lib++;
1406 } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1407 $basename.="_wrapper";
1410 if (!open(FILEO,">$path$basename.spec")) {
1411 print STDERR "error: could not open \"$path$basename.spec\" for writing\n";
1412 print STDERR " $!\n";
1413 return;
1416 my $module=$basename;
1417 $module =~ s+^lib++;
1418 $module=canonize($module);
1419 print FILEO "name $module\n";
1420 print FILEO "type win32\n";
1421 if (@$target[$T_TYPE] == $TT_GUIEXE) {
1422 print FILEO "mode guiexe\n";
1423 } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1424 print FILEO "mode cuiexe\n";
1425 } else {
1426 print FILEO "mode dll\n";
1428 if (defined @$target[$T_INIT] and ((@$target[$T_FLAGS] & $TF_WRAP) == 0)) {
1429 print FILEO "init @$target[$T_INIT]\n";
1431 if (@{@$target[$T_SOURCES_RC]} > 0) {
1432 if (@{@$target[$T_SOURCES_RC]} > 1) {
1433 print STDERR "warning: the target $basename has more than one RC file. Modify the Makefile.in to remove redundant RC files, and fix the spec file\n";
1435 my $rcname=@{@$target[$T_SOURCES_RC]}[0];
1436 $rcname =~ s+\.rc$++i;
1437 print FILEO "rsrc $rcname.res\n";
1439 print FILEO "\n";
1440 my %imports;
1441 foreach $library (@{$global_settings[$T_IMPORTS]}) {
1442 if (!defined $imports{$library}) {
1443 print FILEO "import $library\n";
1444 $imports{$library}=1;
1447 if (defined $project_settings) {
1448 foreach $library (@{@$project_settings[$T_IMPORTS]}) {
1449 if (!defined $imports{$library}) {
1450 print FILEO "import $library\n";
1451 $imports{$library}=1;
1455 foreach $library (@{@$target[$T_IMPORTS]}) {
1456 if (!defined $imports{$library}) {
1457 print FILEO "import $library\n";
1458 $imports{$library}=1;
1462 # Don't forget to export the 'Main' function for wrapped executables,
1463 # except for MFC ones!
1464 if (@$target[$T_FLAGS] == $TF_WRAP) {
1465 if (@$target[$T_TYPE] == $TT_GUIEXE) {
1466 print FILEO "\n@ stdcall @$target[$T_INIT](long long ptr long) @$target[$T_INIT]\n";
1467 } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1468 print FILEO "\n@ stdcall @$target[$T_INIT](long ptr ptr) @$target[$T_INIT]\n";
1469 } else {
1470 print FILEO "\n@ stdcall @$target[$T_INIT](ptr long ptr) @$target[$T_INIT]\n";
1474 close(FILEO);
1478 # Generates a target's wrapper file
1479 sub generate_wrapper_file
1481 my $path=$_[0];
1482 my $target=$_[1];
1484 if (!defined $templates{"wrapper.c"}) {
1485 print STDERR "winemaker: internal error: No template called 'wrapper.c'\n";
1486 return;
1489 if (!open(FILEO,">$path@$target[$T_NAME]_wrapper.c")) {
1490 print STDERR "error: unable to open \"$path$basename.c\" for writing:\n";
1491 print STDERR " $!\n";
1492 return;
1494 my $app_name="\"@$target[$T_NAME]\"";
1495 my $app_type=(@$target[$T_TYPE]==$TT_GUIEXE?"GUIEXE":"CUIEXE");
1496 my $app_init=(@$target[$T_TYPE]==$TT_GUIEXE?"\"WinMain\"":"\"main\"");
1497 my $app_mfc=(@$target[$T_FLAGS] & $TF_MFC?"\"mfc\"":NULL);
1498 foreach $line (@{$templates{"wrapper.c"}}) {
1499 $line =~ s/\#\#WINEMAKER_APP_NAME\#\#/$app_name/;
1500 $line =~ s/\#\#WINEMAKER_APP_TYPE\#\#/$app_type/;
1501 $line =~ s/\#\#WINEMAKER_APP_INIT\#\#/$app_init/;
1502 $line =~ s/\#\#WINEMAKER_APP_MFC\#\#/$app_mfc/;
1503 print FILEO $line;
1505 close(FILEO);
1509 # A convenience function to generate all the lists (defines,
1510 # C sources, C++ source, etc.) in the Makefile
1511 sub generate_list
1513 my $name=$_[0];
1514 my $last=$_[1];
1515 my $list=$_[2];
1516 my $data=$_[3];
1517 my $first=$name;
1519 if ($name) {
1520 printf FILEO "%-22s=",$name;
1522 if (defined $list) {
1523 foreach $item (@$list) {
1524 my $value;
1525 if (defined $data) {
1526 $value=&$data($item);
1527 } else {
1528 $value=$item;
1530 if ($value ne "") {
1531 if ($first) {
1532 print FILEO " $value";
1533 $first=0;
1534 } else {
1535 print FILEO " \\\n\t\t\t$value";
1540 if ($last) {
1541 print FILEO "\n";
1546 # Generates a project's Makefile.in and all the target files
1547 sub generate_project_files
1549 my $project=$_[0];
1550 my $project_settings=@$project[$P_SETTINGS];
1551 my @dll_list=();
1552 my @exe_list=();
1554 # Then sort the targets and separate the libraries from the programs
1555 foreach $target (sort { @$a[$T_NAME] cmp @$b[$T_NAME] } @{@$project[$P_TARGETS]}) {
1556 if (@$target[$T_TYPE] == $TT_DLL) {
1557 push @dll_list,$target;
1558 } else {
1559 push @exe_list,$target;
1562 @$project[$P_TARGETS]=[];
1563 push @{@$project[$P_TARGETS]}, @dll_list;
1564 push @{@$project[$P_TARGETS]}, @exe_list;
1566 if (!open(FILEO,">@$project[$P_PATH]Makefile.in")) {
1567 print STDERR "error: could not open \"@$project[$P_PATH]/Makefile.in\" for writing\n";
1568 print STDERR " $!\n";
1569 return;
1572 print FILEO "### Generated by Winemaker\n";
1573 print FILEO "\n\n";
1575 print FILEO "### Generic autoconf variables\n\n";
1576 generate_list("TOPSRCDIR",1,[ "\@top_srcdir\@" ]);
1577 generate_list("TOPOBJDIR",1,[ "." ]);
1578 generate_list("SRCDIR",1,[ "\@srcdir\@" ]);
1579 generate_list("VPATH",1,[ "\@srcdir\@" ]);
1580 print FILEO "\n";
1581 if (@$project[$P_PATH] eq "") {
1582 # This is the main project. It is also responsible for recursively
1583 # calling the other projects
1584 generate_list("SUBDIRS",1,\@projects,sub
1586 if ($_[0] != \@main_project) {
1587 my $subdir=@{$_[0]}[$P_PATH];
1588 $subdir =~ s+/$++;
1589 return $subdir;
1591 # Eliminating the main project by returning undefined!
1594 if (@{@$project[$P_TARGETS]} > 0) {
1595 generate_list("DLLS",1,\@dll_list,sub
1597 return @{$_[0]}[$T_NAME];
1599 generate_list("EXES",1,\@exe_list,sub
1601 return "@{$_[0]}[$T_NAME]";
1603 print FILEO "\n\n\n";
1605 print FILEO "### Global settings\n\n";
1606 # Make it so that the project-wide settings override the global settings
1607 generate_list("DEFINES",0,@$project_settings[$T_DEFINES],sub
1609 return "$_[0]";
1611 generate_list("",1,$global_settings[$T_DEFINES],sub
1613 return "$_[0]";
1615 generate_list("INCLUDE_PATH",$no_extra,@$project_settings[$T_INCLUDE_PATH],sub
1617 return "$_[0]";
1619 generate_list("",1,$global_settings[$T_INCLUDE_PATH],sub
1621 if ($_[0] !~ /^-I/) {
1622 return "$_[0]";
1624 if (is_absolute($')) {
1625 return "$_[0]";
1627 return "-I\$(TOPSRCDIR)/$'";
1629 generate_list("LIBRARY_PATH",$no_extra,@$project_settings[$T_LIBRARY_PATH],sub
1631 return "$_[0]";
1633 generate_list("",1,$global_settings[$T_LIBRARY_PATH],sub
1635 if ($_[0] !~ /^-L/) {
1636 return "$_[0]";
1638 if (is_absolute($')) {
1639 return "$_[0]";
1641 return "-L\$(TOPSRCDIR)/$'";
1643 generate_list("LIBRARIES",$no_extra,@$project_settings[$T_LIBRARIES],sub
1645 return "$_[0]";
1647 generate_list("",1,$global_settings[$T_LIBRARIES],sub
1649 return "$_[0]";
1651 print FILEO "\n\n";
1653 my $extra_source_count=@{@$project_settings[$T_SOURCES_C]}+
1654 @{@$project_settings[$T_SOURCES_CXX]}+
1655 @{@$project_settings[$T_SOURCES_RC]};
1656 my $no_extra=($extra_source_count == 0);
1657 if (!$no_extra) {
1658 print FILEO "### Extra source lists\n\n";
1659 generate_list("EXTRA_C_SRCS",1,@$project_settings[$T_SOURCES_C]);
1660 generate_list("EXTRA_CXX_SRCS",1,@$project_settings[$T_SOURCES_CXX]);
1661 generate_list("EXTRA_RC_SRCS",1,@$project_settings[$T_SOURCES_RC]);
1662 print FILEO "\n";
1663 generate_list("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:.cpp=.o)"]);
1664 print FILEO "\n\n\n";
1667 # Iterate over all the targets...
1668 foreach $target (@{@$project[$P_TARGETS]}) {
1669 print FILEO "### @$target[$T_NAME] sources and settings\n\n";
1670 my $canon=canonize("@$target[$T_NAME]");
1671 $canon =~ s+_so$++;
1672 generate_list("${canon}_C_SRCS",1,@$target[$T_SOURCES_C]);
1673 generate_list("${canon}_CXX_SRCS",1,@$target[$T_SOURCES_CXX]);
1674 generate_list("${canon}_RC_SRCS",1,@$target[$T_SOURCES_RC]);
1675 my $basename=@$target[$T_NAME];
1676 $basename =~ s+\.so$++;
1677 if (@$target[$T_FLAGS] & $TF_WRAP) {
1678 $basename =~ s+^lib++;
1679 } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1680 $basename.="_wrapper";
1682 generate_list("${canon}_SPEC_SRCS",1,[ "$basename.spec"]);
1683 generate_list("${canon}_LIBRARY_PATH",1,@$target[$T_LIBRARY_PATH],sub
1685 return "$_[0]";
1687 generate_list("${canon}_LIBRARIES",1,@$target[$T_LIBRARIES],sub
1689 return "$_[0]";
1691 generate_list("${canon}_DEPENDS",1,@$target[$T_DEPENDS],sub
1693 return "$_[0]";
1695 print FILEO "\n";
1696 generate_list("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:.cpp=.o)","\$(EXTRA_OBJS)"]);
1697 print FILEO "\n\n\n";
1699 print FILEO "### Global source lists\n\n";
1700 generate_list("C_SRCS",$no_extra,@$project[$P_TARGETS],sub
1702 my $canon=canonize(@{$_[0]}[$T_NAME]);
1703 $canon =~ s+_so$++;
1704 return "\$(${canon}_C_SRCS)";
1706 if (!$no_extra) {
1707 generate_list("",1,[ "\$(EXTRA_C_SRCS)" ]);
1709 generate_list("CXX_SRCS",$no_extra,@$project[$P_TARGETS],sub
1711 my $canon=canonize(@{$_[0]}[$T_NAME]);
1712 $canon =~ s+_so$++;
1713 return "\$(${canon}_CXX_SRCS)";
1715 if (!$no_extra) {
1716 generate_list("",1,[ "\$(EXTRA_CXX_SRCS)" ]);
1718 generate_list("RC_SRCS",$no_extra,@$project[$P_TARGETS],sub
1720 my $canon=canonize(@{$_[0]}[$T_NAME]);
1721 $canon =~ s+_so$++;
1722 return "\$(${canon}_RC_SRCS)";
1724 if (!$no_extra) {
1725 generate_list("",1,[ "\$(EXTRA_RC_SRCS)" ]);
1727 generate_list("SPEC_SRCS",1,@$project[$P_TARGETS],sub
1729 my $canon=canonize(@{$_[0]}[$T_NAME]);
1730 $canon =~ s+_so$++;
1731 return "\$(${canon}_SPEC_SRCS)";
1734 print FILEO "\n\n\n";
1736 print FILEO "### Generic autoconf targets\n\n";
1737 print FILEO "all: ";
1738 if (@$project[$P_PATH] eq "") {
1739 print FILEO "\$(SUBDIRS)";
1741 if (@{@$project[$P_TARGETS]} > 0) {
1742 print FILEO "\$(DLLS) \$(EXES:%=%.so)";
1744 print FILEO "\n\n";
1745 print FILEO "\@MAKE_RULES\@\n";
1746 print FILEO "\n";
1747 print FILEO "install::\n";
1748 if (@$project[$P_PATH] eq "") {
1749 # This is the main project. It is also responsible for recursively
1750 # calling the other projects
1751 print FILEO "\tfor i in \$(SUBDIRS); do (cd \$\$i; \$(MAKE) install) || exit 1; done\n";
1753 if (@{@$project[$P_TARGETS]} > 0) {
1754 print FILEO "\tfor i in \$(EXES); do \$(INSTALL_PROGRAM) \$\$i \$(bindir); done\n";
1755 print FILEO "\tfor i in \$(EXES:%=%.so) \$(DLLS); do \$(INSTALL_LIBRARY) \$\$i \$(libdir); done\n";
1757 print FILEO "\n";
1758 print FILEO "uninstall::\n";
1759 if (@$project[$P_PATH] eq "") {
1760 # This is the main project. It is also responsible for recursively
1761 # calling the other projects
1762 print FILEO "\tfor i in \$(SUBDIRS); do (cd \$\$i; \$(MAKE) uninstall) || exit 1; done\n";
1764 if (@{@$project[$P_TARGETS]} > 0) {
1765 print FILEO "\tfor i in \$(EXES); do \$(RM) \$(bindir)/\$\$i;done\n";
1766 print FILEO "\tfor i in \$(EXES:%=%.so) \$(DLLS); do \$(RM) \$(libdir)/\$\$i;done\n";
1768 print FILEO "\n\n\n";
1770 if (@{@$project[$P_TARGETS]} > 0) {
1771 print FILEO "### Target specific build rules\n\n";
1772 foreach $target (@{@$project[$P_TARGETS]}) {
1773 my $canon=canonize("@$target[$T_NAME]");
1774 $canon =~ s/_so$//;
1775 print FILEO "\$(${canon}_SPEC_SRCS:.spec=.tmp.o): \$(${canon}_OBJS)\n";
1776 print FILEO "\t\$(LDCOMBINE) \$(${canon}_OBJS) -o \$\@\n";
1777 print FILEO "\t-\$(STRIP) \$(STRIPFLAGS) \$\@\n";
1778 print FILEO "\n";
1779 print FILEO "\$(${canon}_SPEC_SRCS:.spec=.spec.c): \$(${canon}_SPEC_SRCS:.spec) \$(${canon}_SPEC_SRCS:.spec=.tmp.o) \$(${canon}_RC_SRCS:.rc=.res)\n";
1780 print FILEO "\t\$(WINEBUILD) -fPIC \$(${canon}_LIBRARY_PATH) \$(WINE_LIBRARY_PATH) -sym \$(${canon}_SPEC_SRCS:.spec=.tmp.o) -o \$\@ -spec \$(${canon}_SPEC_SRCS)\n";
1781 print FILEO "\n";
1782 my $t_name=@$target[$T_NAME];
1783 if (@$target[$T_TYPE]!=$TT_DLL) {
1784 $t_name.=".so";
1786 print FILEO "$t_name: \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_OBJS) \$(${canon}_DEPENDS) \n";
1787 print FILEO "\t\$(LDSHARED) \$(LDDLLFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_LIBRARY_PATH) \$(${canon}_LIBRARIES:%=-l%) \$(DLL_LINK) \$(LIBS)\n";
1788 if (@$target[$T_TYPE] ne $TT_DLL) {
1789 print FILEO "\ttest -e @$target[$T_NAME] || \$(LN_S) \$(WINE) @$target[$T_NAME]\n";
1791 print FILEO "\n\n";
1794 close(FILEO);
1796 foreach $target (@{@$project[$P_TARGETS]}) {
1797 generate_spec_file(@$project[$P_PATH],$target,$project_settings);
1798 if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1799 generate_wrapper_file(@$project[$P_PATH],$target);
1805 # Perform the replacements in the template configure files
1806 # Return 1 for success, 0 for failure
1807 sub generate_configure
1809 my $filename=$_[0];
1810 my $a_source_file=$_[1];
1812 if (!defined $templates{$filename}) {
1813 if ($filename ne "configure") {
1814 print STDERR "winemaker: internal error: No template called '$filename'\n";
1816 return 0;
1819 if (!open(FILEO,">$filename")) {
1820 print STDERR "error: unable to open \"$filename\" for writing:\n";
1821 print STDERR " $!\n";
1822 return 0;
1824 foreach $line (@{$templates{$filename}}) {
1825 if ($line =~ /^\#\#WINEMAKER_PROJECTS\#\#$/) {
1826 foreach $project (@projects) {
1827 print FILEO "@$project[$P_PATH]Makefile\n";
1829 } else {
1830 $line =~ s+\#\#WINEMAKER_SOURCE\#\#+$a_source_file+;
1831 $line =~ s+\#\#WINEMAKER_NEEDS_MFC\#\#+$needs_mfc+;
1832 print FILEO $line;
1835 close(FILEO);
1836 return 1;
1839 sub generate_generic
1841 my $filename=$_[0];
1843 if (!defined $templates{$filename}) {
1844 print STDERR "winemaker: internal error: No template called '$filename'\n";
1845 return;
1847 if (!open(FILEO,">$filename")) {
1848 print STDERR "error: unable to open \"$filename\" for writing:\n";
1849 print STDERR " $!\n";
1850 return;
1852 foreach $line (@{$templates{$filename}}) {
1853 print FILEO $line;
1855 close(FILEO);
1859 # Generates the global files:
1860 # configure
1861 # configure.in
1862 # Make.rules.in
1863 sub generate_global_files
1865 generate_generic("Make.rules.in");
1867 # Get the name of a source file for configure.in
1868 my $a_source_file;
1869 search_a_file: foreach $project (@projects) {
1870 foreach $target (@{@$project[$P_TARGETS]}, @$project[$P_SETTINGS]) {
1871 $a_source_file=@{@$target[$T_SOURCES_C]}[0];
1872 if (!defined $a_source_file) {
1873 $a_source_file=@{@$target[$T_SOURCES_CXX]}[0];
1875 if (!defined $a_source_file) {
1876 $a_source_file=@{@$target[$T_SOURCES_RC]}[0];
1878 if (defined $a_source_file) {
1879 $a_source_file="@$project[$P_PATH]$a_source_file";
1880 last search_a_file;
1884 if (!defined $a_source_file) {
1885 $a_source_file="Makefile.in";
1888 generate_configure("configure.in",$a_source_file);
1889 unlink("configure");
1890 if (generate_configure("configure",$a_source_file) == 0) {
1891 system("autoconf");
1893 # Add execute permission to configure for whoever has the right to read it
1894 my @st=stat("configure");
1895 if (@st) {
1896 my $mode=$st[2];
1897 $mode|=($mode & 0444) >>2;
1898 chmod($mode,"configure");
1899 } else {
1900 print "warning: could not generate the configure script. You need to run autoconf\n";
1906 sub generate_read_templates
1908 my $file;
1910 while (<DATA>) {
1911 if (/^--- ((\w\.?)+) ---$/) {
1912 my $filename=$1;
1913 if (defined $templates{$filename}) {
1914 print STDERR "winemaker: internal error: There is more than one template for $filename\n";
1915 undef $file;
1916 } else {
1917 $file=[];
1918 $templates{$filename}=$file;
1920 } elsif (defined $file) {
1921 push @$file, $_;
1927 # This is where we finally generate files. In fact this method does not
1928 # do anything itself but calls the methods that do the actual work.
1929 sub generate
1931 print "Generating project files...\n";
1932 generate_read_templates();
1933 generate_global_files();
1935 foreach $project (@projects) {
1936 my $path=@$project[$P_PATH];
1937 if ($path eq "") {
1938 $path=".";
1939 } else {
1940 $path =~ s+/$++;
1942 print " $path\n";
1943 generate_project_files($project);
1949 #####
1951 # Option defaults
1953 #####
1955 $opt_backup=1;
1956 $opt_lower=$OPT_LOWER_UPPERCASE;
1957 $opt_lower_include=1;
1959 # $opt_work_dir=<undefined>
1960 # $opt_single_target=<undefined>
1961 $opt_target_type=$TT_GUIEXE;
1962 $opt_flags=0;
1963 $opt_is_interactive=$OPT_ASK_NO;
1964 $opt_ask_project_options=$OPT_ASK_NO;
1965 $opt_ask_target_options=$OPT_ASK_NO;
1966 $opt_no_generated_files=0;
1967 $opt_no_banner=0;
1971 #####
1973 # Main
1975 #####
1977 sub print_banner
1979 print "Winemaker $version\n";
1980 print "Copyright 2000 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
1983 sub usage
1985 print_banner();
1986 print STDERR "Usage: winemaker [--nobanner] [--backup|--nobackup]\n";
1987 print STDERR " [--lower-none|--lower-all|--lower-uppercase]\n";
1988 print STDERR " [--lower-include|--nolower-include]\n";
1989 print STDERR " [--guiexe|--windows|--cuiexe|--console|--dll]\n";
1990 print STDERR " [--wrap|--nowrap] [--mfc|--nomfc]\n";
1991 print STDERR " [-Dmacro[=defn]] [-Idir] [-Ldir] [-idll] [-llibrary]\n";
1992 print STDERR " [--interactive] [--single-target name]\n";
1993 print STDERR " [--generated-files|--nogenerated-files]\n";
1994 print STDERR " work_directory\n";
1995 print STDERR "\nWinemaker is designed to recursively convert all the Windows sources found in\n";
1996 print STDERR "the specified directory so that they can be compiled with Winelib. During this\n";
1997 print STDERR "process it will modify and rename some of the files in that directory.\n";
1998 print STDERR "\tPlease read the manual page before use.\n";
1999 exit (2);
2003 project_init(\@main_project,"");
2005 while (@ARGV>0) {
2006 my $arg=shift @ARGV;
2007 # General options
2008 if ($arg eq "--nobanner") {
2009 $opt_no_banner=1;
2010 } elsif ($arg eq "--backup") {
2011 $opt_backup=1;
2012 } elsif ($arg eq "--nobackup") {
2013 $opt_backup=0;
2014 } elsif ($arg eq "--single-target") {
2015 $opt_single_target=shift @ARGV;
2016 } elsif ($arg eq "--lower-none") {
2017 $opt_lower=$OPT_LOWER_NONE;
2018 } elsif ($arg eq "--lower-all") {
2019 $opt_lower=$OPT_LOWER_ALL;
2020 } elsif ($arg eq "--lower-uppercase") {
2021 $opt_lower=$OPT_LOWER_UPPERCASE;
2022 } elsif ($arg eq "--lower-include") {
2023 $opt_lower_include=1;
2024 } elsif ($arg eq "--nolower-include") {
2025 $opt_lower_include=0;
2026 } elsif ($arg eq "--generated-files") {
2027 $opt_no_generated_files=0;
2028 } elsif ($arg eq "--nogenerated-files") {
2029 $opt_no_generated_files=1;
2031 } elsif ($arg =~ /^-D/) {
2032 push @{$global_settings[$T_DEFINES]},$arg;
2033 } elsif ($arg =~ /^-I/) {
2034 push @{$global_settings[$T_INCLUDE_PATH]},$arg;
2035 } elsif ($arg =~ /^-L/) {
2036 push @{$global_settings[$T_LIBRARY_PATH]},$arg;
2037 } elsif ($arg =~ /^-i/) {
2038 push @{$global_settings[$T_IMPORTS]},$';
2039 } elsif ($arg =~ /^-l/) {
2040 push @{$global_settings[$T_LIBRARIES]},$';
2042 # 'Source'-based method options
2043 } elsif ($arg eq "--dll") {
2044 $opt_target_type=$TT_DLL;
2045 } elsif ($arg eq "--guiexe" or $arg eq "--windows") {
2046 $opt_target_type=$TT_GUIEXE;
2047 } elsif ($arg eq "--cuiexe" or $arg eq "--console") {
2048 $opt_target_type=$TT_CUIEXE;
2049 } elsif ($arg eq "--interactive") {
2050 $opt_is_interactive=$OPT_ASK_YES;
2051 $opt_ask_project_options=$OPT_ASK_YES;
2052 $opt_ask_target_options=$OPT_ASK_YES;
2053 } elsif ($arg eq "--wrap") {
2054 print STDERR "warning: --wrap no longer supported, ignoring the option\n";
2055 #$opt_flags|=$TF_WRAP;
2056 } elsif ($arg eq "--nowrap") {
2057 $opt_flags&=~$TF_WRAP;
2058 } elsif ($arg eq "--mfc") {
2059 $opt_flags|=$TF_MFC;
2060 #$opt_flags|=$TF_MFC|$TF_WRAP;
2061 $needs_mfc=1;
2062 } elsif ($arg eq "--nomfc") {
2063 $opt_flags&=~($TF_MFC|$TF_WRAP);
2064 $needs_mfc=0;
2066 # Catch errors
2067 } else {
2068 if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") {
2069 if (!defined $opt_work_dir) {
2070 $opt_work_dir=$arg;
2071 } else {
2072 print STDERR "error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n";
2073 usage();
2075 } else {
2076 usage();
2081 if (!defined $opt_work_dir) {
2082 print STDERR "error: you must specify the directory containing the sources to be converted\n";
2083 usage();
2084 } elsif (!chdir $opt_work_dir) {
2085 print STDERR "error: could not chdir to the work directory\n";
2086 print STDERR " $!\n";
2087 usage();
2090 if ($opt_no_banner == 0) {
2091 print_banner();
2094 # Fix the file and directory names
2095 fix_file_and_directory_names(".");
2097 # Scan the sources to identify the projects and targets
2098 source_scan();
2100 # Create targets for wrappers, etc.
2101 postprocess_targets();
2103 # Fix the source files
2104 fix_source();
2106 # Generate the Makefile and the spec file
2107 if (! $opt_no_generated_files) {
2108 generate();
2112 __DATA__
2113 --- configure.in ---
2114 dnl Process this file with autoconf to produce a configure script.
2115 dnl Author: Michael Patra <micky@marie.physik.tu-berlin.de>
2116 dnl <patra@itp1.physik.tu-berlin.de>
2117 dnl Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
2119 AC_REVISION([configure.in 1.00])
2120 AC_INIT(##WINEMAKER_SOURCE##)
2122 NEEDS_MFC=##WINEMAKER_NEEDS_MFC##
2124 dnl **** Command-line arguments ****
2126 AC_SUBST(OPTIONS)
2128 dnl **** Check for some programs ****
2130 AC_PROG_MAKE_SET
2131 AC_PROG_CC
2132 AC_PROG_CXX
2133 AC_PROG_CPP
2134 AC_PATH_XTRA
2135 AC_PROG_RANLIB
2136 AC_PROG_LN_S
2137 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
2139 dnl **** Check for some libraries ****
2141 dnl Check for -lm for BeOS
2142 AC_CHECK_LIB(m,sqrt)
2143 dnl Check for -li386 for NetBSD and OpenBSD
2144 AC_CHECK_LIB(i386,i386_set_ldt)
2145 dnl Check for -lossaudio for NetBSD
2146 AC_CHECK_LIB(ossaudio,_oss_ioctl)
2147 dnl Check for -lw for Solaris
2148 AC_CHECK_LIB(w,iswalnum)
2149 dnl Check for -lnsl for Solaris
2150 AC_CHECK_FUNCS(gethostbyname,, AC_CHECK_LIB(nsl, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl", AC_CHECK_LIB(socket, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl", , -lnsl), -lsocket))
2151 dnl Check for -lsocket for Solaris
2152 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
2153 dnl Check for -lxpg4 for FreeBSD
2154 AC_CHECK_LIB(xpg4,setrunelocale)
2155 dnl Check for -lmmap for OS/2
2156 AC_CHECK_LIB(mmap,mmap)
2157 dnl Check for openpty
2158 AC_CHECK_FUNCS(openpty,,
2159 AC_CHECK_LIB(util,openpty,
2160 AC_DEFINE(HAVE_OPENPTY)
2161 LIBS="$LIBS -lutil"
2164 AC_CHECK_HEADERS(dlfcn.h,
2165 AC_CHECK_FUNCS(dlopen,
2166 AC_DEFINE(HAVE_DL_API),
2167 AC_CHECK_LIB(dl,dlopen,
2168 AC_DEFINE(HAVE_DL_API)
2169 LIBS="$LIBS -ldl",
2174 dnl **** Check which curses lib to use ***
2175 if test "$CURSES" = "yes"
2176 then
2177 AC_CHECK_HEADERS(ncurses.h)
2178 if test "$ac_cv_header_ncurses_h" = "yes"
2179 then
2180 AC_CHECK_LIB(ncurses,waddch)
2182 if test "$ac_cv_lib_ncurses_waddch" = "yes"
2183 then
2184 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
2185 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
2186 else
2187 AC_CHECK_HEADERS(curses.h)
2188 if test "$ac_cv_header_curses_h" = "yes"
2189 then
2190 AC_CHECK_LIB(curses,waddch)
2191 if test "$ac_cv_lib_curses_waddch" = "yes"
2192 then
2193 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
2194 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
2200 dnl **** If ln -s doesn't work, use cp instead ****
2201 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
2203 dnl **** Check for gcc strength-reduce bug ****
2205 if test "x${GCC}" = "xyes"
2206 then
2207 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
2208 AC_TRY_RUN([
2209 int main(void) {
2210 static int Array[[3]];
2211 unsigned int B = 3;
2212 int i;
2213 for(i=0; i<B; i++) Array[[i]] = i - 3;
2214 exit( Array[[1]] != -2 );
2216 ac_cv_c_gcc_strength_bug="no",
2217 ac_cv_c_gcc_strength_bug="yes",
2218 ac_cv_c_gcc_strength_bug="yes") )
2219 if test "$ac_cv_c_gcc_strength_bug" = "yes"
2220 then
2221 CFLAGS="$CFLAGS -fno-strength-reduce"
2225 dnl **** Check for underscore on external symbols ****
2227 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
2228 ac_cv_c_extern_prefix,
2229 [saved_libs=$LIBS
2230 LIBS="conftest_asm.s $LIBS"
2231 cat > conftest_asm.s <<EOF
2232 .globl _ac_test
2233 _ac_test:
2234 .long 0
2236 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
2237 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
2238 LIBS=$saved_libs])
2239 if test "$ac_cv_c_extern_prefix" = "yes"
2240 then
2241 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
2244 dnl **** Check for working dll ****
2246 LDSHARED=""
2247 LDDLLFLAGS=""
2248 AC_CACHE_CHECK("whether we can build a Linux dll",
2249 ac_cv_c_dll_linux,
2250 [saved_cflags=$CFLAGS
2251 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
2252 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
2253 CFLAGS=$saved_cflags
2255 if test "$ac_cv_c_dll_linux" = "yes"
2256 then
2257 LDSHARED="\$(CC) -shared -Wl,-rpath,\$(libdir)"
2258 LDDLLFLAGS="-Wl,-Bsymbolic"
2259 else
2260 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
2261 ac_cv_c_dll_unixware,
2262 [saved_cflags=$CFLAGS
2263 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
2264 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
2265 CFLAGS=$saved_cflags
2267 if test "$ac_cv_c_dll_unixware" = "yes"
2268 then
2269 LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,h,\$(libdir)/%)"#FIXME: why SONAME here?
2270 LDDLLFLAGS="-Wl,-B,symbolic"
2271 else
2272 AC_CACHE_CHECK("whether we can build a NetBSD dll",
2273 ac_cv_c_dll_netbsd,
2274 [saved_cflags=$CFLAGS
2275 CFLAGS="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
2276 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
2277 CFLAGS=$saved_cflags
2279 if test "$ac_cv_c_dll_netbsd" = "yes"
2280 then
2281 LDSHARED="\$(CC) -Wl,-Bshareable,-Bforcearchive"
2282 LDDLLFLAGS="" #FIXME
2286 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
2287 then
2288 AC_MSG_ERROR([Could not find how to build a dynamically linked library])
2291 CFLAGS="$CFLAGS -fPIC"
2292 DLL_LINK="\$(WINE_LIBRARY_PATH) \$(LIBRARY_PATH) \$(LIBRARIES:%=-l%) -lwine -lwine_unicode -lwine_uuid"
2294 AC_SUBST(DLL_LINK)
2295 AC_SUBST(LDSHARED)
2296 AC_SUBST(LDDLLFLAGS)
2298 dnl *** check for the need to define __i386__
2300 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
2301 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
2303 #endif],
2304 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
2305 if test "$ac_cv_cpp_def_i386" = "yes"
2306 then
2307 CFLAGS="$CFLAGS -D__i386__"
2310 dnl $GCC is set by autoconf
2311 GCC_NO_BUILTIN=""
2312 if test "$GCC" = "yes"
2313 then
2314 GCC_NO_BUILTIN="-fno-builtin"
2316 AC_SUBST(GCC_NO_BUILTIN)
2318 dnl **** Test Winelib-related features of the C++ compiler
2319 AC_LANG_CPLUSPLUS()
2320 if test "x${GCC}" = "xyes"
2321 then
2322 OLDCXXFLAGS="$CXXFLAGS";
2323 CXXFLAGS="-fpermissive";
2324 AC_CACHE_CHECK("for g++ -fpermissive option", has_gxx_permissive,
2325 AC_TRY_COMPILE(,[
2326 for (int i=0;i<2;i++);
2327 i=0;
2329 [has_gxx_permissive="yes"],
2330 [has_gxx_permissive="no"])
2332 CXXFLAGS="-fno-for-scope";
2333 AC_CACHE_CHECK("for g++ -fno-for-scope option", has_gxx_no_for_scope,
2334 AC_TRY_COMPILE(,[
2335 for (int i=0;i<2;i++);
2336 i=0;
2338 [has_gxx_no_for_scope="yes"],
2339 [has_gxx_no_for_scope="no"])
2341 CXXFLAGS="$OLDCXXFLAGS";
2342 if test "$has_gxx_permissive" = "yes"
2343 then
2344 CXXFLAGS="$CXXFLAGS -fpermissive"
2346 if test "$has_gxx_no_for_scope" = "yes"
2347 then
2348 CXXFLAGS="$CXXFLAGS -fno-for-scope"
2351 AC_LANG_C()
2353 dnl **** Test Winelib-related features of the C compiler
2354 dnl none for now
2356 dnl **** Macros for finding a headers/libraries in a collection of places
2358 dnl AC_PATH_HEADER(variable,header,action-if-not-found,default-locations)
2359 dnl Note that the above may set variable to an empty value if the header is
2360 dnl already in the include path
2361 AC_DEFUN(AC_PATH_HEADER,[
2362 AC_MSG_CHECKING([for $2])
2363 AC_CACHE_VAL(ac_cv_path_$1,
2365 ac_found=
2366 ac_dummy="ifelse([$4], , :/usr/local/include, [$4])"
2367 save_CPPFLAGS="$CPPFLAGS"
2368 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
2369 for ac_dir in $ac_dummy; do
2370 IFS="$ac_save_ifs"
2371 if test -z "$ac_dir"
2372 then
2373 CPPFLAGS="$save_CPPFLAGS"
2374 else
2375 CPPFLAGS="-I$ac_dir $save_CPPFLAGS"
2377 AC_TRY_COMPILE([#include <$2>],,ac_found=1;ac_cv_path_$1="$ac_dir";break)
2378 done
2379 CPPFLAGS="$save_CPPFLAGS"
2380 ifelse([$3],,,[if test -z "$ac_found"
2381 then
2386 $1="$ac_cv_path_$1"
2387 if test -n "$ac_found" -o -n "[$]$1"
2388 then
2389 AC_MSG_RESULT([$]$1)
2390 else
2391 AC_MSG_RESULT(no)
2393 AC_SUBST($1)
2396 dnl AC_PATH_LIBRARY(variable,libraries,extra libs,action-if-not-found,default-locations)
2397 AC_DEFUN(AC_PATH_LIBRARY,[
2398 AC_MSG_CHECKING([for $2])
2399 AC_CACHE_VAL(ac_cv_path_$1,
2401 ac_found=
2402 ac_dummy="ifelse([$5], , :/usr/local/lib, [$5])"
2403 save_LIBS="$LIBS"
2404 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
2405 for ac_dir in $ac_dummy; do
2406 IFS="$ac_save_ifs"
2407 if test -z "$ac_dir"
2408 then
2409 LIBS="$2 $3 $save_LIBS"
2410 else
2411 LIBS="-L$ac_dir $2 $3 $save_LIBS"
2413 AC_TRY_LINK(,,ac_found=1;ac_cv_path_$1="$ac_dir";break)
2414 done
2415 LIBS="$save_LIBS"
2416 ifelse([$4],,,[if test -z "$ac_found"
2417 then
2422 $1="$ac_cv_path_$1"
2423 if test -n "$ac_found" -o -n "[$]$1"
2424 then
2425 AC_MSG_RESULT([$]$1)
2426 else
2427 AC_MSG_RESULT(no)
2429 AC_SUBST($1)
2432 dnl **** Try to find where winelib is located ****
2434 WINE_INCLUDE_ROOT="";
2435 WINE_INCLUDE_PATH="";
2436 WINE_LIBRARY_ROOT="";
2437 WINE_LIBRARY_PATH="";
2438 WINE_TOOL_PATH="";
2439 WINE="";
2440 WINEBUILD="";
2441 WRC="";
2443 AC_ARG_WITH(wine,
2444 [ --with-wine=DIR the Wine package (or sources) is in DIR],
2445 [if test "$withval" != "no"; then
2446 WINE_ROOT="$withval";
2447 WINE_INCLUDES="";
2448 WINE_LIBRARIES="";
2449 WINE_TOOLS="";
2450 else
2451 WINE_ROOT="";
2452 fi])
2453 if test -n "$WINE_ROOT"
2454 then
2455 WINE_INCLUDE_ROOT="$WINE_ROOT/include:$WINE_ROOT/include/wine";
2456 WINE_LIBRARY_ROOT="$WINE_ROOT";
2457 WINE_TOOL_PATH="$WINE_ROOT:$WINE_ROOT/bin:$WINE_ROOT/tools/wrc:$WINE_ROOT/tools/winebuild:$PATH";
2460 AC_ARG_WITH(wine-includes,
2461 [ --with-wine-includes=DIR the Wine includes are in DIR],
2462 [if test "$withval" != "no"; then
2463 WINE_INCLUDES="$withval";
2464 else
2465 WINE_INCLUDES="";
2466 fi])
2467 if test -n "$WINE_INCLUDES"
2468 then
2469 WINE_INCLUDE_ROOT="$WINE_INCLUDES";
2472 AC_ARG_WITH(wine-libraries,
2473 [ --with-wine-libraries=DIR the Wine libraries are in DIR],
2474 [if test "$withval" != "no"; then
2475 WINE_LIBRARIES="$withval";
2476 else
2477 WINE_LIBRARIES="";
2478 fi])
2479 if test -n "$WINE_LIBRARIES"
2480 then
2481 WINE_LIBRARY_ROOT="$WINE_LIBRARIES";
2484 AC_ARG_WITH(wine-tools,
2485 [ --with-wine-tools=DIR the Wine tools are in DIR],
2486 [if test "$withval" != "no"; then
2487 WINE_TOOLS="$withval";
2488 else
2489 WINE_TOOLS="";
2490 fi])
2491 if test -n "$WINE_TOOLS"
2492 then
2493 WINE_TOOL_PATH="$WINE_TOOLS:$WINE_TOOLS/wrc:$WINE_TOOLS/winebuild";
2496 if test -z "$WINE_INCLUDE_ROOT"
2497 then
2498 WINE_INCLUDE_ROOT=":/usr/include/wine:/usr/local/include/wine:/opt/wine/include:/opt/wine/include/wine";
2500 AC_PATH_HEADER(WINE_INCLUDE_ROOT,windef.h,[
2501 AC_MSG_ERROR([Could not find the Wine includes])
2502 ],$WINE_INCLUDE_ROOT)
2503 if test -n "$WINE_INCLUDE_ROOT"
2504 then
2505 WINE_INCLUDE_PATH="-I$WINE_INCLUDE_ROOT"
2506 else
2507 WINE_INCLUDE_PATH=""
2510 if test -z "$WINE_LIBRARY_ROOT"
2511 then
2512 WINE_LIBRARY_ROOT=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib";
2513 else
2514 WINE_LIBRARY_ROOT="$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/lib";
2516 AC_PATH_LIBRARY(WINE_LIBRARY_ROOT,[-lwine],[-lutil],[
2517 AC_MSG_ERROR([Could not find the Wine libraries (libwine.so)])
2518 ],$WINE_LIBRARY_ROOT)
2519 if test -n "$WINE_LIBRARY_ROOT"
2520 then
2521 WINE_LIBRARY_PATH="-L$WINE_LIBRARY_ROOT"
2522 else
2523 WINE_LIBRARY_PATH=""
2525 AC_PATH_LIBRARY(LIBNTDLL_PATH,[-lntdll],[$WINE_LIBRARY_PATH -lwine -lwine_unicode -lncurses -ldl -lutil],[
2526 AC_MSG_ERROR([Could not find the Wine libraries (libntdll.so)])
2527 ],[$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/dlls])
2528 if test -n "$LIBNTDLL_PATH" -a "-L$LIBNTDLL_PATH" != "$WINE_LIBRARY_PATH"
2529 then
2530 WINE_LIBRARY_PATH="$WINE_LIBRARY_PATH -L$LIBNTDLL_PATH"
2533 if test -z "$WINE_TOOL_PATH"
2534 then
2535 WINE_TOOL_PATH="$PATH:/usr/local/bin:/opt/wine/bin";
2537 AC_PATH_PROG(WINE,wine,,$WINE_TOOL_PATH)
2538 if test -z "$WINE"
2539 then
2540 AC_MSG_ERROR([Could not find Wine's wine tool])
2542 AC_PATH_PROG(WINEBUILD,winebuild,,$WINE_TOOL_PATH)
2543 if test -z "$WINEBUILD"
2544 then
2545 AC_MSG_ERROR([Could not find Wine's winebuild tool])
2547 AC_PATH_PROG(WRC,wrc,,$WINE_TOOL_PATH)
2548 if test -z "$WRC"
2549 then
2550 AC_MSG_ERROR([Could not find Wine's wrc tool])
2553 AC_SUBST(WINE_INCLUDE_PATH)
2554 AC_SUBST(WINE_LIBRARY_PATH)
2556 dnl **** Try to find where the MFC are located ****
2557 AC_LANG_CPLUSPLUS()
2559 if test "x$NEEDS_MFC" = "x1"
2560 then
2561 ATL_INCLUDE_ROOT="";
2562 ATL_INCLUDE_PATH="";
2563 MFC_INCLUDE_ROOT="";
2564 MFC_INCLUDE_PATH="";
2565 MFC_LIBRARY_ROOT="";
2566 MFC_LIBRARY_PATH="";
2568 AC_ARG_WITH(mfc,
2569 [ --with-mfc=DIR the MFC package (or sources) is in DIR],
2570 [if test "$withval" != "no"; then
2571 MFC_ROOT="$withval";
2572 ATL_INCLUDES="";
2573 MFC_INCLUDES="";
2574 MFC_LIBRARIES="";
2575 else
2576 MFC_ROOT="";
2577 fi])
2578 if test -n "$MFC_ROOT"
2579 then
2580 ATL_INCLUDE_ROOT="$MFC_ROOT";
2581 MFC_INCLUDE_ROOT="$MFC_ROOT";
2582 MFC_LIBRARY_ROOT="$MFC_ROOT";
2585 AC_ARG_WITH(atl-includes,
2586 [ --with-atl-includes=DIR the ATL includes are in DIR],
2587 [if test "$withval" != "no"; then
2588 ATL_INCLUDES="$withval";
2589 else
2590 ATL_INCLUDES="";
2591 fi])
2592 if test -n "$ATL_INCLUDES"
2593 then
2594 ATL_INCLUDE_ROOT="$ATL_INCLUDES";
2597 AC_ARG_WITH(mfc-includes,
2598 [ --with-mfc-includes=DIR the MFC includes are in DIR],
2599 [if test "$withval" != "no"; then
2600 MFC_INCLUDES="$withval";
2601 else
2602 MFC_INCLUDES="";
2603 fi])
2604 if test -n "$MFC_INCLUDES"
2605 then
2606 MFC_INCLUDE_ROOT="$MFC_INCLUDES";
2609 AC_ARG_WITH(mfc-libraries,
2610 [ --with-mfc-libraries=DIR the MFC libraries are in DIR],
2611 [if test "$withval" != "no"; then
2612 MFC_LIBRARIES="$withval";
2613 else
2614 MFC_LIBRARIES="";
2615 fi])
2616 if test -n "$MFC_LIBRARIES"
2617 then
2618 MFC_LIBRARY_ROOT="$MFC_LIBRARIES";
2621 OLDCPPFLAGS="$CPPFLAGS"
2622 dnl FIXME: We should not have defines in any of the include paths
2623 CPPFLAGS="$WINE_INCLUDE_PATH -I$WINE_INCLUDE_ROOT/mixedcrt -D_DLL -D_MT $CPPFLAGS"
2624 ATL_INCLUDE_PATH="-I\$(WINE_INCLUDE_ROOT)/mixedcrt -D_DLL -D_MT"
2625 if test -z "$ATL_INCLUDE_ROOT"
2626 then
2627 ATL_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/atl:/usr/include/atl:/usr/local/include/atl:/opt/mfc/include/atl:/opt/atl/include"
2628 else
2629 ATL_INCLUDE_ROOT="$ATL_INCLUDE_ROOT:$ATL_INCLUDE_ROOT/atl:$ATL_INCLUDE_ROOT/atl/include"
2631 AC_PATH_HEADER(ATL_INCLUDE_ROOT,atldef.h,[
2632 AC_MSG_ERROR([Could not find the ATL includes])
2633 ],$ATL_INCLUDE_ROOT)
2634 if test -n "$ATL_INCLUDE_ROOT"
2635 then
2636 ATL_INCLUDE_PATH="$ATL_INCLUDE_PATH -I$ATL_INCLUDE_ROOT"
2639 MFC_INCLUDE_PATH="$ATL_INCLUDE_PATH"
2640 if test -z "$MFC_INCLUDE_ROOT"
2641 then
2642 MFC_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/mfc:/usr/include/mfc:/usr/local/include/mfc:/opt/mfc/include/mfc:/opt/mfc/include"
2643 else
2644 MFC_INCLUDE_ROOT="$MFC_INCLUDE_ROOT:$MFC_INCLUDE_ROOT/mfc:$MFC_INCLUDE_ROOT/mfc/include"
2646 AC_PATH_HEADER(MFC_INCLUDE_ROOT,afx.h,[
2647 AC_MSG_ERROR([Could not find the MFC includes])
2648 ],$MFC_INCLUDE_ROOT)
2649 if test -n "$MFC_INCLUDE_ROOT" -a "$ATL_INCLUDE_ROOT" != "$MFC_INCLUDE_ROOT"
2650 then
2651 MFC_INCLUDE_PATH="$MFC_INCLUDE_PATH -I$MFC_INCLUDE_ROOT"
2653 CPPFLAGS="$OLDCPPFLAGS"
2655 if test -z "$MFC_LIBRARY_ROOT"
2656 then
2657 MFC_LIBRARY_ROOT=":$WINE_LIBRARY_ROOT:/usr/lib/mfc:/usr/local/lib:/usr/local/lib/mfc:/opt/mfc/lib";
2658 else
2659 MFC_LIBRARY_ROOT="$MFC_LIBRARY_ROOT:$MFC_LIBRARY_ROOT/lib:$MFC_LIBRARY_ROOT/mfc/src";
2661 AC_PATH_LIBRARY(MFC_LIBRARY_ROOT,[-lmfc],[$WINE_LIBRARY_PATH -lwine -lwine_unicode],[
2662 AC_MSG_ERROR([Could not find the MFC library])
2663 ],$MFC_LIBRARY_ROOT)
2664 if test -n "$MFC_LIBRARY_ROOT" -a "$MFC_LIBRARY_ROOT" != "$WINE_LIBRARY_ROOT"
2665 then
2666 MFC_LIBRARY_PATH="-L$MFC_LIBRARY_ROOT"
2667 else
2668 MFC_LIBRARY_PATH=""
2671 AC_SUBST(ATL_INCLUDE_PATH)
2672 AC_SUBST(MFC_INCLUDE_PATH)
2673 AC_SUBST(MFC_LIBRARY_PATH)
2676 AC_LANG_C()
2678 dnl **** Generate output files ****
2680 MAKE_RULES=Make.rules
2681 AC_SUBST_FILE(MAKE_RULES)
2683 AC_OUTPUT([
2684 Make.rules
2685 ##WINEMAKER_PROJECTS##
2688 echo
2689 echo "Configure finished. Do 'make' to build the project."
2690 echo
2692 dnl Local Variables:
2693 dnl comment-start: "dnl "
2694 dnl comment-end: ""
2695 dnl comment-start-skip: "\\bdnl\\b\\s *"
2696 dnl compile-command: "autoconf"
2697 dnl End:
2698 --- Make.rules.in ---
2699 # Copyright 2000 Francois Gouget for CodeWeavers
2700 # fgouget@codeweavers.com
2702 # Global rules shared by all makefiles -*-Makefile-*-
2704 # Each individual makefile must define the following variables:
2705 # WINE_INCLUDE_ROOT: Wine's headers location
2706 # WINE_LIBRARY_ROOT: Wine's libraries location
2707 # TOPOBJDIR : top-level object directory
2708 # SRCDIR : source directory for this module
2710 # Each individual makefile may define the following additional variables:
2712 # SUBDIRS : subdirectories that contain a Makefile
2713 # DLLS : WineLib libraries to be built
2714 # EXES : WineLib executables to be built
2716 # CEXTRA : extra c flags (e.g. '-Wall')
2717 # CXXEXTRA : extra c++ flags (e.g. '-Wall')
2718 # WRCEXTRA : extra wrc flags (e.g. '-p _SysRes')
2719 # DEFINES : defines (e.g. -DSTRICT)
2720 # INCLUDE_PATH : additional include path
2721 # LIBRARY_PATH : additional library path
2722 # LIBRARIES : additional Unix libraries to link with
2724 # C_SRCS : C sources for the module
2725 # CXX_SRCS : C++ sources for the module
2726 # RC_SRCS : resource source files
2727 # SPEC_SRCS : interface definition files
2730 # Where is Winelib
2732 WINE_INCLUDE_ROOT = @WINE_INCLUDE_ROOT@
2733 WINE_INCLUDE_PATH = @WINE_INCLUDE_PATH@
2734 WINE_LIBRARY_ROOT = @WINE_LIBRARY_ROOT@
2735 WINE_LIBRARY_PATH = @WINE_LIBRARY_PATH@
2737 # Where are the MFC
2739 ATL_INCLUDE_ROOT = @ATL_INCLUDE_ROOT@
2740 ATL_INCLUDE_PATH = @ATL_INCLUDE_PATH@
2741 MFC_INCLUDE_ROOT = @MFC_INCLUDE_ROOT@
2742 MFC_INCLUDE_PATH = @MFC_INCLUDE_PATH@
2743 MFC_LIBRARY_ROOT = @MFC_LIBRARY_ROOT@
2744 MFC_LIBRARY_PATH = @MFC_LIBRARY_PATH@
2746 # First some useful definitions
2748 SHELL = /bin/sh
2749 CC = @CC@
2750 CPP = @CPP@
2751 WRC = @WRC@
2752 CFLAGS = @CFLAGS@
2753 CXXFLAGS = @CXXFLAGS@
2754 WRCFLAGS = -r -L
2755 OPTIONS = @OPTIONS@ -D_REENTRANT -DWINELIB
2756 X_CFLAGS = @X_CFLAGS@
2757 X_LIBS = @X_LIBS@
2758 XLIB = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
2759 DLL_LINK = @DLL_LINK@
2760 LIBS = @LIBS@ $(LIBRARY_PATH)
2761 YACC = @YACC@
2762 LEX = @LEX@
2763 LEXLIB = @LEXLIB@
2764 LN_S = @LN_S@
2765 ALLFLAGS = $(DEFINES) -I$(SRCDIR) $(WINE_INCLUDE_PATH) $(INCLUDE_PATH)
2766 ALLCFLAGS = $(CFLAGS) $(CEXTRA) $(OPTIONS) $(X_CFLAGS) $(ALLFLAGS)
2767 ALLCXXFLAGS=$(CXXFLAGS) $(CXXEXTRA) $(OPTIONS) $(X_CFLAGS) $(ALLFLAGS)
2768 ALLWRCFLAGS=$(WRCFLAGS) $(WRCEXTRA) $(OPTIONS) $(ALLFLAGS)
2769 LDCOMBINE = ld -r
2770 LDSHARED = @LDSHARED@
2771 LDDLLFLAGS= @LDDLLFLAGS@
2772 STRIP = strip
2773 STRIPFLAGS= --strip-unneeded
2774 RM = rm -f
2775 MV = mv
2776 MKDIR = mkdir -p
2777 WINE = @WINE@
2778 WINEBUILD = @WINEBUILD@
2779 @SET_MAKE@
2781 # Installation infos
2783 INSTALL = @INSTALL@
2784 INSTALL_PROGRAM = @INSTALL_PROGRAM@
2785 INSTALL_DATA = @INSTALL_DATA@
2786 prefix = @prefix@
2787 exec_prefix = @exec_prefix@
2788 bindir = @bindir@
2789 libdir = @libdir@
2790 infodir = @infodir@
2791 mandir = @mandir@
2792 prog_manext = 1
2793 conf_manext = 5
2795 OBJS = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \
2796 $(SPEC_SRCS:.spec=.spec.o)
2797 CLEAN_FILES = *.spec.c y.tab.c y.tab.h lex.yy.c \
2798 core *.orig *.rej \
2799 \\\#*\\\# *~ *% .\\\#*
2801 # Implicit rules
2803 .SUFFIXES: .cpp .rc .res .tmp.o .spec .spec.c .spec.o
2805 .c.o:
2806 $(CC) -c $(ALLCFLAGS) -o $@ $<
2808 .cpp.o:
2809 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
2811 .cxx.o:
2812 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
2814 .rc.res:
2815 $(WRC) $(ALLWRCFLAGS) -o $@ $<
2817 .PHONY: all install uninstall clean distclean depend dummy
2819 # 'all' target first in case the enclosing Makefile didn't define any target
2821 all: Makefile
2823 # Rules for makefile
2825 Makefile: Makefile.in $(TOPSRCDIR)/configure
2826 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
2827 @exit 1
2829 # Rules for cleaning
2831 $(SUBDIRS:%=%/__clean__): dummy
2832 cd `dirname $@` && $(MAKE) clean
2834 $(EXTRASUBDIRS:%=%/__clean__): dummy
2835 -cd `dirname $@` && $(RM) $(CLEAN_FILES)
2837 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
2838 $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(SPEC_SRCS:.spec=.tmp.o) $(EXES) $(EXES:%=%.so) $(DLLS)
2840 # Rules for installing
2842 $(SUBDIRS:%=%/__install__): dummy
2843 cd `dirname $@` && $(MAKE) install
2845 $(SUBDIRS:%=%/__uninstall__): dummy
2846 cd `dirname $@` && $(MAKE) uninstall
2848 # Misc. rules
2850 $(SUBDIRS): dummy
2851 @cd $@ && $(MAKE)
2853 dummy:
2855 # End of global rules
2856 --- wrapper.c ---
2858 * Copyright 2000 Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
2861 #include <dlfcn.h>
2862 #include <windows.h>
2867 * Describe the wrapped application
2871 * This is either CUIEXE for a console based application or
2872 * GUIEXE for a regular windows application.
2874 #define APP_TYPE ##WINEMAKER_APP_TYPE##
2877 * This is the application library's base name, i.e. 'hello' if the
2878 * library is called 'libhello.so'.
2880 static char* appName = ##WINEMAKER_APP_NAME##;
2883 * This is the name of the application's Windows module. If left NULL
2884 * then appName is used.
2886 static char* appModule = NULL;
2889 * This is the application's entry point. This is usually "WinMain" for a
2890 * GUIEXE and 'main' for a CUIEXE application.
2892 static char* appInit = ##WINEMAKER_APP_INIT##;
2895 * This is either non-NULL for MFC-based applications and is the name of the
2896 * MFC's module. This is the module in which we will take the 'WinMain'
2897 * function.
2899 static char* mfcModule = ##WINEMAKER_APP_MFC##;
2904 * Implement the main.
2907 #if APP_TYPE == GUIEXE
2908 typedef int WINAPI (*WinMainFunc)(HINSTANCE hInstance, HINSTANCE hPrevInstance,
2909 PSTR szCmdLine, int iCmdShow);
2910 #else
2911 typedef int WINAPI (*MainFunc)(int argc, char** argv, char** envp);
2912 #endif
2914 #if APP_TYPE == GUIEXE
2915 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
2916 PSTR szCmdLine, int iCmdShow)
2917 #else
2918 int WINAPI Main(int argc, char** argv, char** envp)
2919 #endif
2921 void* appLibrary;
2922 HINSTANCE hApp,hMFC,hMain;
2923 void* appMain;
2924 char* libName;
2925 int retcode;
2927 /* Load the application's library */
2928 libName=(char*)malloc(strlen(appName)+5+3+1);
2929 /* FIXME: we should get the wrapper's path and use that as the base for
2930 * the library
2932 sprintf(libName,"./lib%s.so",appName);
2933 appLibrary=dlopen(libName,RTLD_NOW);
2934 if (appLibrary==NULL) {
2935 sprintf(libName,"lib%s.so",appName);
2936 appLibrary=dlopen(libName,RTLD_NOW);
2938 if (appLibrary==NULL) {
2939 char format[]="Could not load the %s library:\r\n%s";
2940 char* error;
2941 char* msg;
2943 error=dlerror();
2944 msg=(char*)malloc(strlen(format)+strlen(libName)+strlen(error));
2945 sprintf(msg,format,libName,error);
2946 MessageBox(NULL,msg,"dlopen error",MB_OK);
2947 free(msg);
2948 return 1;
2951 /* Then if this application is MFC based, load the MFC module */
2952 /* FIXME: I'm not sure this is really necessary */
2953 if (mfcModule!=NULL) {
2954 hMFC=LoadLibrary(mfcModule);
2955 if (hMFC==NULL) {
2956 char format[]="Could not load the MFC module %s (%d)";
2957 char* msg;
2959 msg=(char*)malloc(strlen(format)+strlen(mfcModule)+11);
2960 sprintf(msg,format,mfcModule,GetLastError());
2961 MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
2962 free(msg);
2963 return 1;
2965 /* MFC is a special case: the WinMain is in the MFC library,
2966 * instead of the application's library.
2968 hMain=hMFC;
2969 } else {
2970 hMFC=NULL;
2973 /* Load the application's module */
2974 if (appModule==NULL) {
2975 appModule=appName;
2977 hApp=LoadLibrary(appModule);
2978 if (hApp==NULL) {
2979 char format[]="Could not load the application's module %s (%d)";
2980 char* msg;
2982 msg=(char*)malloc(strlen(format)+strlen(appModule)+11);
2983 sprintf(msg,format,appModule,GetLastError());
2984 MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
2985 free(msg);
2986 return 1;
2987 } else if (hMain==NULL) {
2988 hMain=hApp;
2991 /* Get the address of the application's entry point */
2992 appMain=(WinMainFunc*)GetProcAddress(hMain, appInit);
2993 if (appMain==NULL) {
2994 char format[]="Could not get the address of %s (%d)";
2995 char* msg;
2997 msg=(char*)malloc(strlen(format)+strlen(appInit)+11);
2998 sprintf(msg,format,appInit,GetLastError());
2999 MessageBox(NULL,msg,"GetProcAddress error",MB_OK);
3000 free(msg);
3001 return 1;
3004 /* And finally invoke the application's entry point */
3005 #if APP_TYPE == GUIEXE
3006 retcode=(*((WinMainFunc)appMain))(hApp,hPrevInstance,szCmdLine,iCmdShow);
3007 #else
3008 retcode=(*((MainFunc)appMain))(argc,argv,envp);
3009 #endif
3011 /* Cleanup and done */
3012 FreeLibrary(hApp);
3013 if (hMFC!=NULL) {
3014 FreeLibrary(hMFC);
3016 dlclose(appLibrary);
3017 free(libName);
3019 return retcode;