Display thread id instead of %fs in relay trace.
[wine.git] / tools / winemaker
blob58a9157134b6a2ca85c4c825fe576ec760b7d221
1 #!/usr/bin/perl -w
3 # Copyright 2000 Francois Gouget for CodeWeavers
4 # fgouget@codeweavers.com
6 my $version="0.5.7";
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 @$target[$T_FLAGS]|=$TF_WRAP;
409 } elsif (@$target[$T_TYPE] != $TT_DLL and
410 $option =~ /^--nowrap/) {
411 @$target[$T_FLAGS]&=~$TF_WRAP;
412 } elsif ($option =~ /^--mfc/) {
413 @$target[$T_FLAGS]|=$TF_MFC;
414 if (@$target[$T_TYPE] != $TT_DLL) {
415 @$target[$T_FLAGS]|=$TF_WRAP;
417 } elsif ($option =~ /^--nomfc/) {
418 @$target[$T_FLAGS]&=~$TF_MFC;
419 @$target[$T_FLAGS]&=~($TF_MFC|$TF_WRAP);
420 } else {
421 print STDERR "error: unknown option \"$option\"\n";
422 return 0;
425 return 1;
429 # Scans the specified directory to:
430 # - see if we should create a Makefile in this directory. We normally do
431 # so if we find a project file and sources
432 # - get a list of targets for this directory
433 # - get the list of source files
434 sub source_scan_directory
436 # a reference to the parent's project
437 my $parent_project=$_[0];
438 # the full relative path to the current directory, including a
439 # trailing '/', or an empty string if this is the top level directory
440 my $path=$_[1];
441 # the name of this directory, including a trailing '/', or an empty
442 # string if this is the top level directory
443 my $dirname=$_[2];
444 # if set then no targets will be looked for and the sources will all
445 # end up in the parent_project's 'misc' bucket
446 my $no_target=$_[3];
448 # reference to the project for this directory. May not be used
449 my $project;
450 # list of targets found in the 'current' directory
451 my %targets;
452 # list of sources found in the current directory
453 my @sources_c=();
454 my @sources_cxx=();
455 my @sources_rc=();
456 my @sources_misc=();
457 # true if this directory contains a Windows project
458 my $has_win_project=0;
459 # If we don't find any executable/library then we might make up targets
460 # from the list of .dsp/.mak files we find since they usually have the
461 # same name as their target.
462 my @dsp_files=();
463 my @mak_files=();
465 if (defined $opt_single_target or $dirname eq "") {
466 # Either there is a single target and thus a single project,
467 # or we are in the top level directory for which a project
468 # already exists
469 $project=$parent_project;
470 } else {
471 $project=[];
472 project_init($project,$path);
474 my $project_settings=@$project[$P_SETTINGS];
476 # First find out what this directory contains:
477 # collect all sources, targets and subdirectories
478 my $directory=get_directory_contents($path);
479 foreach $dentry (@$directory) {
480 if ($dentry =~ /^\./) {
481 next;
483 my $fullentry="$path$dentry";
484 if (-d "$fullentry") {
485 if ($dentry =~ /^(Release|Debug)/i) {
486 # These directories are often used to store the object files and the
487 # resulting executable/library. They should not contain anything else.
488 my @candidates=grep /\.(exe|dll)$/i, @{get_directory_contents("$fullentry")};
489 foreach $candidate (@candidates) {
490 if ($candidate =~ s/\.exe$//i) {
491 $targets{$candidate}=1;
492 } elsif ($candidate =~ s/^(.*)\.dll$/lib$1.so/i) {
493 $targets{$candidate}=1;
496 } elsif ($dentry =~ /^include/i) {
497 # This directory must contain headers we're going to need
498 push @{@$project_settings[$T_INCLUDE_PATH]},"-I$dentry";
499 source_scan_directory($project,"$fullentry/","$dentry/",1);
500 } else {
501 # Recursively scan this directory. Any source file that cannot be
502 # attributed to a project in one of the subdirectories will be
503 # attributed to this project.
504 source_scan_directory($project,"$fullentry/","$dentry/",$no_target);
506 } elsif (-f "$fullentry") {
507 if ($dentry =~ s/\.exe$//i) {
508 $targets{$dentry}=1;
509 } elsif ($dentry =~ s/^(.*)\.dll$/lib$1.so/i) {
510 $targets{$dentry}=1;
511 } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.spec\.c$/) {
512 push @sources_c,"$dentry";
513 } elsif ($dentry =~ /\.(cpp|cxx)$/i) {
514 if ($dentry =~ /^stdafx.cpp$/i) {
515 push @sources_misc,"$dentry";
516 @$project_settings[$T_FLAGS]|=$TF_MFC;
517 } else {
518 push @sources_cxx,"$dentry";
520 } elsif ($dentry =~ /\.rc$/i) {
521 push @sources_rc,"$dentry";
522 } elsif ($dentry =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
523 push @sources_misc,"$dentry";
524 if ($dentry =~ /^stdafx.h$/i) {
525 @$project_settings[$T_FLAGS]|=$TF_MFC;
527 } elsif ($dentry =~ /\.dsp$/i) {
528 push @dsp_files,"$dentry";
529 $has_win_project=1;
530 } elsif ($dentry =~ /\.mak$/i) {
531 push @mak_files,"$dentry";
532 $has_win_project=1;
533 } elsif ($dentry =~ /^makefile/i) {
534 $has_win_project=1;
538 closedir(DIRECTORY);
540 # If we have a single target then all we have to do is assign
541 # all the sources to it and we're done
542 # FIXME: does this play well with the --interactive mode?
543 if ($opt_single_target) {
544 my $target=@{@$project[$P_TARGETS]}[0];
545 push @{@$target[$T_SOURCES_C]},map "$path$_",@sources_c;
546 push @{@$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx;
547 push @{@$target[$T_SOURCES_RC]},map "$path$_",@sources_rc;
548 push @{@$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc;
549 return;
551 if ($no_target) {
552 my $parent_settings=@$parent_project[$P_SETTINGS];
553 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_c;
554 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_cxx;
555 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_rc;
556 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
557 return;
560 my $source_count=@sources_c+@sources_cxx+@sources_rc+
561 @{@$project_settings[$T_SOURCES_C]}+
562 @{@$project_settings[$T_SOURCES_CXX]}+
563 @{@$project_settings[$T_SOURCES_RC]};
564 if ($source_count == 0) {
565 # A project without real sources is not a project, get out!
566 if ($project!=$parent_project) {
567 my $parent_settings=@$parent_project[$P_SETTINGS];
568 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
569 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
571 return;
573 #print "targets=",%targets,"\n";
574 #print "target_count=$target_count\n";
575 #print "has_win_project=$has_win_project\n";
576 #print "dirname=$dirname\n";
578 my $target_count;
579 if (($has_win_project != 0) or ($dirname eq "")) {
580 # Deal with cases where we could not find any executable/library, and
581 # thus have no target, although we did find some sort of windows project.
582 $target_count=keys %targets;
583 if ($target_count == 0) {
584 # Try to come up with a target list based on .dsp/.mak files
585 my $prj_list;
586 if (@dsp_files > 0) {
587 $prj_list=\@dsp_files;
588 } else {
589 $prj_list=\@mak_files;
591 foreach $filename (@$prj_list) {
592 $filename =~ s/\.(dsp|mak)$//i;
593 if ($opt_target_type == $TT_DLL) {
594 $filename = "lib$filename.so";
596 $targets{$filename}=1;
598 $target_count=keys %targets;
599 if ($target_count == 0) {
600 # Still nothing, try the name of the directory
601 my $name;
602 if ($dirname eq "") {
603 # Bad luck, this is the top level directory!
604 $name=(split /\//, cwd)[-1];
605 } else {
606 $name=$dirname;
607 # Remove the trailing '/'. Also eliminate whatever is after the last
608 # '.' as it is likely to be meaningless (.orig, .new, ...)
609 $name =~ s+(/|\.[^.]*)$++;
610 if ($name eq "src") {
611 # 'src' is probably a subdirectory of the real project directory.
612 # Try again with the parent (if any).
613 my $parent=$path;
614 if ($parent =~ s+([^/]*)/[^/]*/$+$1+) {
615 $name=$parent;
616 } else {
617 $name=(split /\//, cwd)[-1];
621 $name =~ s+(/|\.[^.]*)$++;
622 if ($opt_target_type == $TT_DLL) {
623 $name = "lib$name.so";
625 $targets{$name}=1;
629 # Ask confirmation to the user if he wishes so
630 if ($opt_is_interactive == $OPT_ASK_YES) {
631 my $target_list=join " ",keys %targets;
632 print "\n*** In ",($path?$path:"./"),"\n";
633 print "* winemaker found the following list of (potential) targets\n";
634 print "* $target_list\n";
635 print "* Type enter to use it as is, your own comma-separated list of\n";
636 print "* targets, 'none' to assign the source files to a parent directory,\n";
637 print "* or 'ignore' to ignore everything in this directory tree.\n";
638 print "* Target list:\n";
639 $target_list=<STDIN>;
640 chomp $target_list;
641 if ($target_list eq "") {
642 # Keep the target list as is, i.e. do nothing
643 } elsif ($target_list eq "none") {
644 # Empty the target list
645 undef %targets;
646 } elsif ($target_list eq "ignore") {
647 # Ignore this subtree altogether
648 return;
649 } else {
650 undef %targets;
651 foreach $target (split /,/,$target_list) {
652 $target =~ s+^\s*++;
653 $target =~ s+\s*$++;
654 # Also accept .exe and .dll as a courtesy
655 $target =~ s+(.*)\.dll$+lib$1.so+;
656 $target =~ s+\.exe$++;
657 $targets{$target}=1;
663 # If we have no project at this level, then transfer all
664 # the sources to the parent project
665 $target_count=keys %targets;
666 if ($target_count == 0) {
667 if ($project!=$parent_project) {
668 my $parent_settings=@$parent_project[$P_SETTINGS];
669 push @{@$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c;
670 push @{@$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx;
671 push @{@$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc;
672 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
673 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
675 return;
678 # Otherwise add this project to the project list, except for
679 # the main project which is already in the list.
680 if ($dirname ne "") {
681 push @projects,$project;
684 # Ask for project-wide options
685 if ($opt_ask_project_options == $OPT_ASK_YES) {
686 my $flag_desc="";
687 if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
688 $flag_desc="mfc";
690 if ((@$project_settings[$T_FLAGS] & $TF_WRAP)!=0) {
691 if ($flag_desc ne "") {
692 $flag_desc.=", ";
694 $flag_desc.="wrapped";
696 print "* Type any project-wide options (-D/-I/-L/-i/-l/--mfc/--wrap),\n";
697 if (defined $flag_desc) {
698 print "* (currently $flag_desc)\n";
700 print "* or 'skip' to skip the target specific options,\n";
701 print "* or 'never' to not be asked this question again:\n";
702 while (1) {
703 my $options=<STDIN>;
704 chomp $options;
705 if ($options eq "skip") {
706 $opt_ask_target_options=$OPT_ASK_SKIP;
707 last;
708 } elsif ($options eq "never") {
709 $opt_ask_project_options=$OPT_ASK_NO;
710 last;
711 } elsif (source_set_options($project_settings,$options)) {
712 last;
714 print "Please re-enter the options:\n";
718 # - Create the targets
719 # - Check if we have both libraries and programs
720 # - Match each target with source files (sort in reverse
721 # alphabetical order to get the longest matches first)
722 my @local_imports=();
723 my @local_depends=();
724 my @exe_list=();
725 foreach $target_name (sort { $b cmp $a } keys %targets) {
726 # Create the target...
727 my $basename;
728 my $target=[];
729 target_init($target);
730 @$target[$T_NAME]=$target_name;
731 @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS];
732 if ($target_name =~ /^lib(.*)\.so$/) {
733 @$target[$T_TYPE]=$TT_DLL;
734 @$target[$T_INIT]=get_default_init($TT_DLL);
735 @$target[$T_FLAGS]&=~$TF_WRAP;
736 $basename=$1;
737 push @local_depends,$target_name;
738 push @local_imports,$basename;
739 } else {
740 @$target[$T_TYPE]=$opt_target_type;
741 @$target[$T_INIT]=get_default_init($opt_target_type);
742 $basename=$target_name;
743 push @exe_list,$target;
745 # This is the default link list of Visual Studio, except odbccp32
746 # which we don't have in Wine. Also I add ntdll which seems
747 # necessary for Winelib.
748 my @std_imports=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll ntdll.dll odbc32.dll ole32.dll oleaut32.dll shell32.dll user32.dll winspool.drv);
749 @$target[$T_IMPORTS]=\@std_imports;
750 push @{@$project[$P_TARGETS]},$target;
752 # Ask for target-specific options
753 if ($opt_ask_target_options == $OPT_ASK_YES) {
754 my $flag_desc="";
755 if ((@$target[$T_FLAGS] & $TF_MFC)!=0) {
756 $flag_desc=" (mfc";
758 if ((@$target[$T_FLAGS] & $TF_WRAP)!=0) {
759 if ($flag_desc ne "") {
760 $flag_desc.=", ";
761 } else {
762 $flag_desc=" (";
764 $flag_desc.="wrapped";
766 if ($flag_desc ne "") {
767 $flag_desc.=")";
769 print "* Specify any link option (-L/-i/-l/--mfc/--wrap) specific to the target\n";
770 print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n";
771 while (1) {
772 my $options=<STDIN>;
773 chomp $options;
774 if ($options eq "never") {
775 $opt_ask_target_options=$OPT_ASK_NO;
776 last;
777 } elsif (source_set_options($target,$options)) {
778 last;
780 print "Please re-enter the options:\n";
783 if (@$target[$T_FLAGS] & $TF_MFC) {
784 @$project_settings[$T_FLAGS]|=$TF_MFC;
785 push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
786 push @{@$target[$T_IMPORTS]},"mfc.dll";
787 # FIXME: Link with the MFC in the Unix sense, until we
788 # start exporting the functions properly.
789 push @{@$target[$T_LIBRARIES]},"mfc";
792 # Match sources...
793 if ($target_count == 1) {
794 push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c;
795 @$project_settings[$T_SOURCES_C]=[];
796 @sources_c=();
798 push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx;
799 @$project_settings[$T_SOURCES_CXX]=[];
800 @sources_cxx=();
802 push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc;
803 @$project_settings[$T_SOURCES_RC]=[];
804 @sources_rc=();
806 push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc;
807 # No need for sorting these sources
808 @$project_settings[$T_SOURCES_MISC]=[];
809 @sources_misc=();
810 } else {
811 foreach $source (@sources_c) {
812 if ($source =~ /^$basename/i) {
813 push @{@$target[$T_SOURCES_C]},$source;
814 $source="";
817 foreach $source (@sources_cxx) {
818 if ($source =~ /^$basename/i) {
819 push @{@$target[$T_SOURCES_CXX]},$source;
820 $source="";
823 foreach $source (@sources_rc) {
824 if ($source =~ /^$basename/i) {
825 push @{@$target[$T_SOURCES_RC]},$source;
826 $source="";
829 foreach $source (@sources_misc) {
830 if ($source =~ /^$basename/i) {
831 push @{@$target[$T_SOURCES_MISC]},$source;
832 $source="";
836 @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}];
837 @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}];
838 @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}];
839 @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}];
841 if ($opt_ask_target_options == $OPT_ASK_SKIP) {
842 $opt_ask_target_options=$OPT_ASK_YES;
845 if (@$project_settings[$T_FLAGS] & $TF_MFC) {
846 push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
848 # The sources that did not match, if any, go to the extra
849 # source list of the project settings
850 foreach $source (@sources_c) {
851 if ($source ne "") {
852 push @{@$project_settings[$T_SOURCES_C]},$source;
855 @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}];
856 foreach $source (@sources_cxx) {
857 if ($source ne "") {
858 push @{@$project_settings[$T_SOURCES_CXX]},$source;
861 @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}];
862 foreach $source (@sources_rc) {
863 if ($source ne "") {
864 push @{@$project_settings[$T_SOURCES_RC]},$source;
867 @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}];
868 foreach $source (@sources_misc) {
869 if ($source ne "") {
870 push @{@$project_settings[$T_SOURCES_MISC]},$source;
873 @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}];
875 # Finally if we are building both libraries and programs in
876 # this directory, then the programs should be linked with all
877 # the libraries
878 if (@local_imports > 0 and @exe_list > 0) {
879 foreach $target (@exe_list) {
880 push @{@$target[$T_LIBRARY_PATH]},"-L.";
881 push @{@$target[$T_IMPORTS]},map { "$_.dll" } @local_imports;
882 # Also link in the Unix sense since none of the functions
883 # will be exported.
884 push @{@$target[$T_LIBRARIES]},@local_imports;
885 push @{@$target[$T_DEPENDS]},@local_depends;
891 # Scan the source directories in search of things to build
892 sub source_scan
894 # If there's a single target then this is going to be the default target
895 if (defined $opt_single_target) {
896 # Create the main target
897 my $main_target=[];
898 target_init($main_target);
899 if ($opt_target_type == $TT_DLL) {
900 @$main_target[$T_NAME]="lib$opt_single_target.so";
901 } else {
902 @$main_target[$T_NAME]="$opt_single_target";
904 @$main_target[$T_TYPE]=$opt_target_type;
906 # Add it to the list
907 push @{$main_project[$P_TARGETS]},$main_target;
910 # The main directory is always going to be there
911 push @projects,\@main_project;
913 # Now scan the directory tree looking for source files and, maybe, targets
914 print "Scanning the source directories...\n";
915 source_scan_directory(\@main_project,"","",0);
917 @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects;
922 #####
924 # 'vc.dsp'-based Project analysis
926 #####
928 #sub analyze_vc_dsp
935 #####
937 # Creating the wrapper targets
939 #####
941 sub postprocess_targets
943 foreach $project (@projects) {
944 foreach $target (@{@$project[$P_TARGETS]}) {
945 if ((@$target[$T_FLAGS] & $TF_WRAP) != 0) {
946 my $wrapper=[];
947 target_init($wrapper);
948 @$wrapper[$T_NAME]=@$target[$T_NAME];
949 @$wrapper[$T_TYPE]=@$target[$T_TYPE];
950 @$wrapper[$T_INIT]=get_default_init(@$target[$T_TYPE]);
951 @$wrapper[$T_FLAGS]=$TF_WRAPPER | (@$target[$T_FLAGS] & $TF_MFC);
952 @$wrapper[$T_IMPORTS]=[ "kernel32.dll", "ntdll.dll", "user32.dll" ];
953 push @{@$wrapper[$T_SOURCES_C]},"@$wrapper[$T_NAME]_wrapper.c";
955 my $index=bsearch(@$target[$T_SOURCES_C],"@$wrapper[$T_NAME]_wrapper.c");
956 if (defined $index) {
957 splice(@{@$target[$T_SOURCES_C]},$index,1);
959 @$target[$T_NAME]="lib@$target[$T_NAME].so";
960 @$target[$T_TYPE]=$TT_DLL;
962 push @{@$project[$P_TARGETS]},$wrapper;
964 if ((@$target[$T_FLAGS] & $TF_MFC) != 0) {
965 @{@$project[$P_SETTINGS]}[$T_FLAGS]|=$TF_MFC;
966 $needs_mfc=1;
974 #####
976 # Source search
978 #####
981 # Performs a directory traversal and renames the files so that:
982 # - they have the case desired by the user
983 # - their extension is of the appropriate case
984 # - they don't contain annoying characters like ' ', '$', '#', ...
985 sub fix_file_and_directory_names
987 my $dirname=$_[0];
989 if (opendir(DIRECTORY, "$dirname")) {
990 foreach $dentry (readdir DIRECTORY) {
991 if ($dentry =~ /^\./ or $dentry eq "CVS") {
992 next;
994 # Set $warn to 1 if the user should be warned of the renaming
995 my $warn=0;
997 # autoconf and make don't support these characters well
998 my $new_name=$dentry;
999 $new_name =~ s/[ \$]/_/g;
1001 # Only all lowercase extensions are supported (because of the
1002 # transformations ':.c=.o') .
1003 if (-f "$dirname/$new_name") {
1004 if ($new_name =~ /\.C$/) {
1005 $new_name =~ s/\.C$/.c/;
1007 if ($new_name =~ /\.cpp$/i) {
1008 $new_name =~ s/\.cpp$/.cpp/i;
1010 if ($new_name =~ s/\.cxx$/.cpp/i) {
1011 $warn=1;
1013 if ($new_name =~ /\.rc$/i) {
1014 $new_name =~ s/\.rc$/.rc/i;
1016 # And this last one is to avoid confusion then running make
1017 if ($new_name =~ s/^makefile$/makefile.win/) {
1018 $warn=1;
1022 # Adjust the case to the user's preferences
1023 if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or
1024 ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/)
1026 $new_name=lc $new_name;
1029 # And finally, perform the renaming
1030 if ($new_name ne $dentry) {
1031 if ($warn) {
1032 print STDERR "warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n";
1034 if (!rename("$dirname/$dentry","$dirname/$new_name")) {
1035 print STDERR "error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n";
1036 print STDERR " $!\n";
1037 $new_name=$dentry;
1040 if (-d "$dirname/$new_name") {
1041 fix_file_and_directory_names("$dirname/$new_name");
1044 closedir(DIRECTORY);
1050 #####
1052 # Source fixup
1054 #####
1057 # This maps a directory name to a reference to an array listing
1058 # its contents (files and directories)
1059 my %directories;
1062 # Retrieves the contents of the specified directory.
1063 # We either get it from the directories hashtable which acts as a
1064 # cache, or use opendir, readdir, closedir and store the result
1065 # in the hashtable.
1066 sub get_directory_contents
1068 my $dirname=$_[0];
1069 my $directory;
1071 #print "getting the contents of $dirname\n";
1073 # check for a cached version
1074 $dirname =~ s+/$++;
1075 if ($dirname eq "") {
1076 $dirname=cwd;
1078 $directory=$directories{$dirname};
1079 if (defined $directory) {
1080 #print "->@$directory\n";
1081 return $directory;
1084 # Read this directory
1085 if (opendir(DIRECTORY, "$dirname")) {
1086 my @files=readdir DIRECTORY;
1087 closedir(DIRECTORY);
1088 $directory=\@files;
1089 } else {
1090 # Return an empty list
1091 #print "error: cannot open $dirname\n";
1092 my @files;
1093 $directory=\@files;
1095 #print "->@$directory\n";
1096 $directories{$dirname}=$directory;
1097 return $directory;
1101 # Try to find a file for the specified filename. The attempt is
1102 # case-insensitive which is why it's not trivial. If a match is
1103 # found then we return the pathname with the correct case.
1104 sub search_from
1106 my $dirname=$_[0];
1107 my $path=$_[1];
1108 my $real_path="";
1110 if ($dirname eq "" or $dirname eq ".") {
1111 $dirname=cwd;
1112 } elsif ($dirname =~ m+^[^/]+) {
1113 $dirname=cwd . "/" . $dirname;
1115 if ($dirname !~ m+/$+) {
1116 $dirname.="/";
1119 foreach $component (@$path) {
1120 #print " looking for $component in \"$dirname\"\n";
1121 if ($component eq ".") {
1122 # Pass it as is
1123 $real_path.="./";
1124 } elsif ($component eq "..") {
1125 # Go up one level
1126 $dirname=dirname($dirname) . "/";
1127 $real_path.="../";
1128 } else {
1129 my $directory=get_directory_contents $dirname;
1130 my $found;
1131 foreach $dentry (@$directory) {
1132 if ($dentry =~ /^$component$/i) {
1133 $dirname.="$dentry/";
1134 $real_path.="$dentry/";
1135 $found=1;
1136 last;
1139 if (!defined $found) {
1140 # Give up
1141 #print " could not find $component in $dirname\n";
1142 return;
1146 $real_path=~ s+/$++;
1147 #print " -> found $real_path\n";
1148 return $real_path;
1152 # Performs a case-insensitive search for the specified file in the
1153 # include path.
1154 # $line is the line number that should be referenced when an error occurs
1155 # $filename is the file we are looking for
1156 # $dirname is the directory of the file containing the '#include' directive
1157 # if '"' was used, it is an empty string otherwise
1158 # $project and $target specify part of the include path
1159 sub get_real_include_name
1161 my $line=$_[0];
1162 my $filename=$_[1];
1163 my $dirname=$_[2];
1164 my $project=$_[3];
1165 my $target=$_[4];
1167 if ($filename =~ /^([a-zA-Z]:)?[\/]/ or $filename =~ /^[a-zA-Z]:[\/]?/) {
1168 # This is not a relative path, we cannot make any check
1169 my $warning="path:$filename";
1170 if (!defined $warnings{$warning}) {
1171 $warnings{$warning}="1";
1172 print STDERR "warning: cannot check the case of absolute pathnames:\n";
1173 print STDERR "$line: $filename\n";
1175 } else {
1176 # Here's how we proceed:
1177 # - split the filename we look for into its components
1178 # - then for each directory in the include path
1179 # - trace the directory components starting from that directory
1180 # - if we fail to find a match at any point then continue with
1181 # the next directory in the include path
1182 # - otherwise, rejoice, our quest is over.
1183 my @file_components=split /[\/\\]+/, $filename;
1184 #print " Searching for $filename from @$project[$P_PATH]\n";
1186 my $real_filename;
1187 if ($dirname ne "") {
1188 # This is an 'include ""' -> look in dirname first.
1189 #print " in $dirname (include \"\")\n";
1190 $real_filename=search_from($dirname,\@file_components);
1191 if (defined $real_filename) {
1192 return $real_filename;
1195 my $project_settings=@$project[$P_SETTINGS];
1196 foreach $include (@{@$target[$T_INCLUDE_PATH]}, @{@$project_settings[$T_INCLUDE_PATH]}) {
1197 my $dirname=$include;
1198 $dirname=~ s+^-I++;
1199 if (!is_absolute($dirname)) {
1200 $dirname="@$project[$P_PATH]$dirname";
1201 } else {
1202 $dirname=~ s+^\$\(TOPSRCDIR\)/++;
1204 #print " in $dirname\n";
1205 $real_filename=search_from("$dirname",\@file_components);
1206 if (defined $real_filename) {
1207 return $real_filename;
1210 my $dotdotpath=@$project[$P_PATH];
1211 $dotdotpath =~ s/[^\/]+/../g;
1212 foreach $include (@{$global_settings[$T_INCLUDE_PATH]}) {
1213 my $dirname=$include;
1214 $dirname=~ s+^-I++;
1215 $dirname=~ s+^\$\(TOPSRCDIR\)\/++;
1216 #print " in $dirname (global setting)\n";
1217 $real_filename=search_from("$dirname",\@file_components);
1218 if (defined $real_filename) {
1219 return $real_filename;
1223 $filename =~ s+\\\\+/+g; # in include ""
1224 $filename =~ s+\\+/+g; # in include <> !
1225 if ($opt_lower_include) {
1226 return lc "$filename";
1228 return $filename;
1232 # 'Parses' a source file and fixes constructs that would not work with
1233 # Winelib. The parsing is rather simple and not all non-portable features
1234 # are corrected. The most important feature that is corrected is the case
1235 # and path separator of '#include' directives. This requires that each
1236 # source file be associated to a project & target so that the proper
1237 # include path is used.
1238 # Also note that the include path is relative to the directory in which the
1239 # compiler is run, i.e. that of the project, not to that of the file.
1240 sub fix_file
1242 my $filename=$_[0];
1243 my $project=$_[1];
1244 my $target=$_[2];
1245 $filename="@$project[$P_PATH]$filename";
1246 if (! -e $filename) {
1247 return;
1250 my $is_rc=($filename =~ /\.(rc2?|dlg)$/i);
1251 my $dirname=dirname($filename);
1252 my $is_mfc=0;
1253 if (defined $target and (@$target[$T_FLAGS] & $TF_MFC)) {
1254 $is_mfc=1;
1257 print " $filename\n";
1258 #FIXME:assuming that because there is a .bak file, this is what we want is
1259 #probably flawed. Or is it???
1260 if (! -e "$filename.bak") {
1261 if (!copy("$filename","$filename.bak")) {
1262 print STDERR "error: unable to make a backup of $filename:\n";
1263 print STDERR " $!\n";
1264 return;
1267 if (!open(FILEI,"$filename.bak")) {
1268 print STDERR "error: unable to open $filename.bak for reading:\n";
1269 print STDERR " $!\n";
1270 return;
1272 if (!open(FILEO,">$filename")) {
1273 print STDERR "error: unable to open $filename for writing:\n";
1274 print STDERR " $!\n";
1275 return;
1277 my $line=0;
1278 my $modified=0;
1279 my $rc_block_depth=0;
1280 my $rc_textinclude_state=0;
1281 while (<FILEI>) {
1282 $line++;
1283 s/\r\n$/\n/;
1284 if (!/\n$/) {
1285 # Make sure all files are '\n' terminated
1286 $_ .= "\n";
1288 if ($is_rc and !$is_mfc and /^(\s*\#\s*include\s*)\"afxres\.h\"/) {
1289 # VC6 automatically includes 'afxres.h', an MFC specific header, in
1290 # the RC files it generates (even in non-MFC projects). So we replace
1291 # it with 'winres.h' its very close standard cousin so that non MFC
1292 # projects can compile in Wine without the MFC sources.
1293 my $warning="mfc:afxres.h";
1294 if (!defined $warnings{$warning}) {
1295 $warnings{$warning}="1";
1296 print STDERR "warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winres.h'\n";
1297 print STDERR "warning: the above warning is issued only once\n";
1299 print FILEO "/* winemaker: $1\"afxres.h\" */\n";
1300 print FILEO "$1\"winres.h\"$'";
1301 $modified=1;
1302 } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) {
1303 my $from_file=($2 eq "<"?"":$dirname);
1304 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1305 print FILEO "$1$2$real_include_name$4$'";
1306 $modified|=($real_include_name ne $3);
1307 } elsif (/^(\s*\#\s*pragma\s*pack\s*\((\s*push\s*,?)?\s*)(\w*)(\s*\))/) {
1308 my $pragma_header=$1;
1309 my $size=$3;
1310 my $pragma_trailer=$4;
1311 #print "$pragma_header$size$pragma_trailer$'";
1312 #print "pragma push: size=$size\n";
1313 print FILEO "/* winemaker: $pragma_header$size$pragma_trailer */\n";
1314 $line++;
1315 if ($size eq "pop") {
1316 print FILEO "#include <poppack.h>$'";
1317 } elsif ($size eq "1") {
1318 print FILEO "#include <pshpack1.h>$'";
1319 } elsif ($size eq "2") {
1320 print FILEO "#include <pshpack2.h>$'";
1321 } elsif ($size eq "8") {
1322 print FILEO "#include <pshpack8.h>$'";
1323 } elsif ($size eq "4" or $size eq "") {
1324 print FILEO "#include <pshpack4.h>$'";
1325 } else {
1326 my $warning="pack:$size";
1327 if (!defined $warnings{$warning}) {
1328 $warnings{$warning}="1";
1329 print STDERR "warning: assuming that the value of $size is 4 in\n";
1330 print STDERR "$line: $pragma_header$size$pragma_trailer\n";
1331 print STDERR "warning: the above warning is issued only once\n";
1333 print FILEO "#include <pshpack4.h>$'";
1334 $modified=1;
1336 } elsif ($is_rc) {
1337 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]+)([\">]?)/) {
1338 my $from_file=($5 eq "<"?"":$dirname);
1339 my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target);
1340 print FILEO "$1$5$real_include_name$7$'";
1341 $modified|=($real_include_name ne $6);
1342 } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1343 my $from_file=($2 eq "<"?"":$dirname);
1344 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1345 print FILEO "$1$2$real_include_name$4$'";
1346 $modified|=($real_include_name ne $3);
1347 } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) {
1348 $rc_textinclude_state=1;
1349 print FILEO;
1350 } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) {
1351 print FILEO "$1winres.h$2$'";
1352 $modified=1;
1353 } elsif (/^\s*BEGIN(\W.*)?$/) {
1354 $rc_textinclude_state|=2;
1355 $rc_block_depth++;
1356 print FILEO;
1357 } elsif (/^\s*END(\W.*)?$/) {
1358 $rc_textinclude_state=0;
1359 if ($rc_block_depth>0) {
1360 $rc_block_depth--;
1362 print FILEO;
1363 } else {
1364 print FILEO;
1366 } else {
1367 print FILEO;
1370 close(FILEI);
1371 close(FILEO);
1372 if ($opt_backup == 0 or $modified == 0) {
1373 if (!unlink("$filename.bak")) {
1374 print STDERR "error: unable to delete $filename.bak:\n";
1375 print STDERR " $!\n";
1381 # Analyzes each source file in turn to find and correct issues
1382 # that would cause it not to compile.
1383 sub fix_source
1385 print "Fixing the source files...\n";
1386 foreach $project (@projects) {
1387 foreach $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) {
1388 if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1389 next;
1391 foreach $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) {
1392 fix_file($source,$project,$target);
1400 #####
1402 # File generation
1404 #####
1407 # Generates a target's .spec file
1408 sub generate_spec_file
1410 my $path=$_[0];
1411 my $target=$_[1];
1412 my $project_settings=$_[2];
1414 my $basename=@$target[$T_NAME];
1415 $basename =~ s+\.so$++;
1416 if (@$target[$T_FLAGS] & $TF_WRAP) {
1417 $basename =~ s+^lib++;
1418 } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1419 $basename.="_wrapper";
1422 if (!open(FILEO,">$path$basename.spec")) {
1423 print STDERR "error: could not open \"$path$basename.spec\" for writing\n";
1424 print STDERR " $!\n";
1425 return;
1428 my $module=$basename;
1429 $module =~ s+^lib++;
1430 $module=canonize($module);
1431 print FILEO "name $module\n";
1432 print FILEO "type win32\n";
1433 if (@$target[$T_TYPE] == $TT_GUIEXE) {
1434 print FILEO "mode guiexe\n";
1435 } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1436 print FILEO "mode cuiexe\n";
1437 } else {
1438 print FILEO "mode dll\n";
1440 if (defined @$target[$T_INIT] and ((@$target[$T_FLAGS] & $TF_WRAP) == 0)) {
1441 print FILEO "init @$target[$T_INIT]\n";
1443 if (@{@$target[$T_SOURCES_RC]} > 0) {
1444 if (@{@$target[$T_SOURCES_RC]} > 1) {
1445 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";
1447 my $rcname=@{@$target[$T_SOURCES_RC]}[0];
1448 $rcname =~ s+\.rc$++i;
1449 print FILEO "rsrc $rcname.res\n";
1451 print FILEO "\n";
1452 my %imports;
1453 foreach $library (@{$global_settings[$T_IMPORTS]}) {
1454 if (!defined $imports{$library}) {
1455 print FILEO "import $library\n";
1456 $imports{$library}=1;
1459 if (defined $project_settings) {
1460 foreach $library (@{@$project_settings[$T_IMPORTS]}) {
1461 if (!defined $imports{$library}) {
1462 print FILEO "import $library\n";
1463 $imports{$library}=1;
1467 foreach $library (@{@$target[$T_IMPORTS]}) {
1468 if (!defined $imports{$library}) {
1469 print FILEO "import $library\n";
1470 $imports{$library}=1;
1474 # Don't forget to export the 'Main' function for wrapped executables,
1475 # except for MFC ones!
1476 if (@$target[$T_FLAGS] == $TF_WRAP) {
1477 if (@$target[$T_TYPE] == $TT_GUIEXE) {
1478 print FILEO "\n@ stdcall @$target[$T_INIT](long long ptr long) @$target[$T_INIT]\n";
1479 } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1480 print FILEO "\n@ stdcall @$target[$T_INIT](long ptr ptr) @$target[$T_INIT]\n";
1481 } else {
1482 print FILEO "\n@ stdcall @$target[$T_INIT](ptr long ptr) @$target[$T_INIT]\n";
1486 close(FILEO);
1490 # Generates a target's wrapper file
1491 sub generate_wrapper_file
1493 my $path=$_[0];
1494 my $target=$_[1];
1496 if (!defined $templates{"wrapper.c"}) {
1497 print STDERR "winemaker: internal error: No template called 'wrapper.c'\n";
1498 return;
1501 if (!open(FILEO,">$path@$target[$T_NAME]_wrapper.c")) {
1502 print STDERR "error: unable to open \"$path$basename.c\" for writing:\n";
1503 print STDERR " $!\n";
1504 return;
1506 my $app_name="\"@$target[$T_NAME]\"";
1507 my $app_type=(@$target[$T_TYPE]==$TT_GUIEXE?"GUIEXE":"CUIEXE");
1508 my $app_init=(@$target[$T_TYPE]==$TT_GUIEXE?"\"WinMain\"":"\"main\"");
1509 my $app_mfc=(@$target[$T_FLAGS] & $TF_MFC?"\"mfc\"":NULL);
1510 foreach $line (@{$templates{"wrapper.c"}}) {
1511 my $l=$line;
1512 $l =~ s/\#\#WINEMAKER_APP_NAME\#\#/$app_name/;
1513 $l =~ s/\#\#WINEMAKER_APP_TYPE\#\#/$app_type/;
1514 $l =~ s/\#\#WINEMAKER_APP_INIT\#\#/$app_init/;
1515 $l =~ s/\#\#WINEMAKER_APP_MFC\#\#/$app_mfc/;
1516 print FILEO $l;
1518 close(FILEO);
1522 # A convenience function to generate all the lists (defines,
1523 # C sources, C++ source, etc.) in the Makefile
1524 sub generate_list
1526 my $name=$_[0];
1527 my $last=$_[1];
1528 my $list=$_[2];
1529 my $data=$_[3];
1530 my $first=$name;
1532 if ($name) {
1533 printf FILEO "%-22s=",$name;
1535 if (defined $list) {
1536 foreach $item (@$list) {
1537 my $value;
1538 if (defined $data) {
1539 $value=&$data($item);
1540 } else {
1541 $value=$item;
1543 if ($value ne "") {
1544 if ($first) {
1545 print FILEO " $value";
1546 $first=0;
1547 } else {
1548 print FILEO " \\\n\t\t\t$value";
1553 if ($last) {
1554 print FILEO "\n";
1559 # Generates a project's Makefile.in and all the target files
1560 sub generate_project_files
1562 my $project=$_[0];
1563 my $project_settings=@$project[$P_SETTINGS];
1564 my @dll_list=();
1565 my @exe_list=();
1567 # Then sort the targets and separate the libraries from the programs
1568 foreach $target (sort { @$a[$T_NAME] cmp @$b[$T_NAME] } @{@$project[$P_TARGETS]}) {
1569 if (@$target[$T_TYPE] == $TT_DLL) {
1570 push @dll_list,$target;
1571 } else {
1572 push @exe_list,$target;
1575 @$project[$P_TARGETS]=[];
1576 push @{@$project[$P_TARGETS]}, @dll_list;
1577 push @{@$project[$P_TARGETS]}, @exe_list;
1579 if (!open(FILEO,">@$project[$P_PATH]Makefile.in")) {
1580 print STDERR "error: could not open \"@$project[$P_PATH]/Makefile.in\" for writing\n";
1581 print STDERR " $!\n";
1582 return;
1585 print FILEO "### Generated by Winemaker\n";
1586 print FILEO "\n\n";
1588 print FILEO "### Generic autoconf variables\n\n";
1589 generate_list("TOPSRCDIR",1,[ "\@top_srcdir\@" ]);
1590 generate_list("TOPOBJDIR",1,[ "." ]);
1591 generate_list("SRCDIR",1,[ "\@srcdir\@" ]);
1592 generate_list("VPATH",1,[ "\@srcdir\@" ]);
1593 print FILEO "\n";
1594 if (@$project[$P_PATH] eq "") {
1595 # This is the main project. It is also responsible for recursively
1596 # calling the other projects
1597 generate_list("SUBDIRS",1,\@projects,sub
1599 if ($_[0] != \@main_project) {
1600 my $subdir=@{$_[0]}[$P_PATH];
1601 $subdir =~ s+/$++;
1602 return $subdir;
1604 # Eliminating the main project by returning undefined!
1607 if (@{@$project[$P_TARGETS]} > 0) {
1608 generate_list("DLLS",1,\@dll_list,sub
1610 return @{$_[0]}[$T_NAME];
1612 generate_list("EXES",1,\@exe_list,sub
1614 return "@{$_[0]}[$T_NAME]";
1616 print FILEO "\n\n\n";
1618 print FILEO "### Global settings\n\n";
1619 # Make it so that the project-wide settings override the global settings
1620 generate_list("DEFINES",0,@$project_settings[$T_DEFINES],sub
1622 return "$_[0]";
1624 generate_list("",1,$global_settings[$T_DEFINES],sub
1626 return "$_[0]";
1628 generate_list("INCLUDE_PATH",$no_extra,@$project_settings[$T_INCLUDE_PATH],sub
1630 return "$_[0]";
1632 generate_list("",1,$global_settings[$T_INCLUDE_PATH],sub
1634 if ($_[0] !~ /^-I/) {
1635 return "$_[0]";
1637 if (is_absolute($')) {
1638 return "$_[0]";
1640 return "-I\$(TOPSRCDIR)/$'";
1642 generate_list("LIBRARY_PATH",$no_extra,@$project_settings[$T_LIBRARY_PATH],sub
1644 return "$_[0]";
1646 generate_list("",1,$global_settings[$T_LIBRARY_PATH],sub
1648 if ($_[0] !~ /^-L/) {
1649 return "$_[0]";
1651 if (is_absolute($')) {
1652 return "$_[0]";
1654 return "-L\$(TOPSRCDIR)/$'";
1656 generate_list("LIBRARIES",$no_extra,@$project_settings[$T_LIBRARIES],sub
1658 return "$_[0]";
1660 generate_list("",1,$global_settings[$T_LIBRARIES],sub
1662 return "$_[0]";
1664 print FILEO "\n\n";
1666 my $extra_source_count=@{@$project_settings[$T_SOURCES_C]}+
1667 @{@$project_settings[$T_SOURCES_CXX]}+
1668 @{@$project_settings[$T_SOURCES_RC]};
1669 my $no_extra=($extra_source_count == 0);
1670 if (!$no_extra) {
1671 print FILEO "### Extra source lists\n\n";
1672 generate_list("EXTRA_C_SRCS",1,@$project_settings[$T_SOURCES_C]);
1673 generate_list("EXTRA_CXX_SRCS",1,@$project_settings[$T_SOURCES_CXX]);
1674 generate_list("EXTRA_RC_SRCS",1,@$project_settings[$T_SOURCES_RC]);
1675 print FILEO "\n";
1676 generate_list("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:.cpp=.o)"]);
1677 print FILEO "\n\n\n";
1680 # Iterate over all the targets...
1681 foreach $target (@{@$project[$P_TARGETS]}) {
1682 print FILEO "### @$target[$T_NAME] sources and settings\n\n";
1683 my $canon=canonize("@$target[$T_NAME]");
1684 $canon =~ s+_so$++;
1685 generate_list("${canon}_C_SRCS",1,@$target[$T_SOURCES_C]);
1686 generate_list("${canon}_CXX_SRCS",1,@$target[$T_SOURCES_CXX]);
1687 generate_list("${canon}_RC_SRCS",1,@$target[$T_SOURCES_RC]);
1688 my $basename=@$target[$T_NAME];
1689 $basename =~ s+\.so$++;
1690 if (@$target[$T_FLAGS] & $TF_WRAP) {
1691 $basename =~ s+^lib++;
1692 } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1693 $basename.="_wrapper";
1695 generate_list("${canon}_SPEC_SRCS",1,[ "$basename.spec"]);
1696 generate_list("${canon}_LIBRARY_PATH",1,@$target[$T_LIBRARY_PATH],sub
1698 return "$_[0]";
1700 generate_list("${canon}_LIBRARIES",1,@$target[$T_LIBRARIES],sub
1702 return "$_[0]";
1704 generate_list("${canon}_DEPENDS",1,@$target[$T_DEPENDS],sub
1706 return "$_[0]";
1708 print FILEO "\n";
1709 generate_list("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:.cpp=.o)","\$(EXTRA_OBJS)"]);
1710 print FILEO "\n\n\n";
1712 print FILEO "### Global source lists\n\n";
1713 generate_list("C_SRCS",$no_extra,@$project[$P_TARGETS],sub
1715 my $canon=canonize(@{$_[0]}[$T_NAME]);
1716 $canon =~ s+_so$++;
1717 return "\$(${canon}_C_SRCS)";
1719 if (!$no_extra) {
1720 generate_list("",1,[ "\$(EXTRA_C_SRCS)" ]);
1722 generate_list("CXX_SRCS",$no_extra,@$project[$P_TARGETS],sub
1724 my $canon=canonize(@{$_[0]}[$T_NAME]);
1725 $canon =~ s+_so$++;
1726 return "\$(${canon}_CXX_SRCS)";
1728 if (!$no_extra) {
1729 generate_list("",1,[ "\$(EXTRA_CXX_SRCS)" ]);
1731 generate_list("RC_SRCS",$no_extra,@$project[$P_TARGETS],sub
1733 my $canon=canonize(@{$_[0]}[$T_NAME]);
1734 $canon =~ s+_so$++;
1735 return "\$(${canon}_RC_SRCS)";
1737 if (!$no_extra) {
1738 generate_list("",1,[ "\$(EXTRA_RC_SRCS)" ]);
1740 generate_list("SPEC_SRCS",1,@$project[$P_TARGETS],sub
1742 my $canon=canonize(@{$_[0]}[$T_NAME]);
1743 $canon =~ s+_so$++;
1744 return "\$(${canon}_SPEC_SRCS)";
1747 print FILEO "\n\n\n";
1749 print FILEO "### Generic autoconf targets\n\n";
1750 print FILEO "all: ";
1751 if (@$project[$P_PATH] eq "") {
1752 print FILEO "\$(SUBDIRS)";
1754 if (@{@$project[$P_TARGETS]} > 0) {
1755 print FILEO "\$(DLLS) \$(EXES:%=%.so)";
1757 print FILEO "\n\n";
1758 print FILEO "\@MAKE_RULES\@\n";
1759 print FILEO "\n";
1760 print FILEO "install::\n";
1761 if (@$project[$P_PATH] eq "") {
1762 # This is the main project. It is also responsible for recursively
1763 # calling the other projects
1764 print FILEO "\tfor i in \$(SUBDIRS); do (cd \$\$i; \$(MAKE) install) || exit 1; done\n";
1766 if (@{@$project[$P_TARGETS]} > 0) {
1767 print FILEO "\tfor i in \$(EXES); do \$(INSTALL_PROGRAM) \$\$i \$(bindir); done\n";
1768 print FILEO "\tfor i in \$(EXES:%=%.so) \$(DLLS); do \$(INSTALL_LIBRARY) \$\$i \$(libdir); done\n";
1770 print FILEO "\n";
1771 print FILEO "uninstall::\n";
1772 if (@$project[$P_PATH] eq "") {
1773 # This is the main project. It is also responsible for recursively
1774 # calling the other projects
1775 print FILEO "\tfor i in \$(SUBDIRS); do (cd \$\$i; \$(MAKE) uninstall) || exit 1; done\n";
1777 if (@{@$project[$P_TARGETS]} > 0) {
1778 print FILEO "\tfor i in \$(EXES); do \$(RM) \$(bindir)/\$\$i;done\n";
1779 print FILEO "\tfor i in \$(EXES:%=%.so) \$(DLLS); do \$(RM) \$(libdir)/\$\$i;done\n";
1781 print FILEO "\n\n\n";
1783 if (@{@$project[$P_TARGETS]} > 0) {
1784 print FILEO "### Target specific build rules\n\n";
1785 foreach $target (@{@$project[$P_TARGETS]}) {
1786 my $canon=canonize("@$target[$T_NAME]");
1787 $canon =~ s/_so$//;
1788 print FILEO "\$(${canon}_SPEC_SRCS:.spec=.tmp.o): \$(${canon}_OBJS)\n";
1789 print FILEO "\t\$(LDCOMBINE) \$(${canon}_OBJS) -o \$\@\n";
1790 print FILEO "\t-\$(STRIP) \$(STRIPFLAGS) \$\@\n";
1791 print FILEO "\n";
1792 print FILEO "\$(${canon}_SPEC_SRCS:.spec=.spec.c): \$(${canon}_SPEC_SRCS:.spec) \$(${canon}_SPEC_SRCS:.spec=.tmp.o) \$(${canon}_RC_SRCS:.rc=.res)\n";
1793 print FILEO "\t\$(LD_PATH) \$(WINEBUILD) -fPIC \$(${canon}_LIBRARY_PATH) \$(WINE_LIBRARY_PATH) -sym \$(${canon}_SPEC_SRCS:.spec=.tmp.o) -o \$\@ -spec \$(${canon}_SPEC_SRCS)\n";
1794 print FILEO "\n";
1795 my $t_name=@$target[$T_NAME];
1796 if (@$target[$T_TYPE]!=$TT_DLL) {
1797 $t_name.=".so";
1799 print FILEO "$t_name: \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_OBJS) \$(${canon}_DEPENDS) \n";
1800 if (@{@$target[$T_SOURCES_CXX]} > 0 or @{@$project_settings[$T_SOURCES_CXX]} > 0) {
1801 print FILEO "\t\$(LDXXSHARED)";
1802 } else {
1803 print FILEO "\t\$(LDSHARED)";
1805 print FILEO " \$(LDDLLFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_LIBRARY_PATH) \$(${canon}_LIBRARIES:%=-l%) \$(DLL_LINK) \$(LIBS)\n";
1806 if (@$target[$T_TYPE] ne $TT_DLL) {
1807 print FILEO "\ttest -e @$target[$T_NAME] || \$(LN_S) \$(WINE) @$target[$T_NAME]\n";
1809 print FILEO "\n\n";
1812 close(FILEO);
1814 foreach $target (@{@$project[$P_TARGETS]}) {
1815 generate_spec_file(@$project[$P_PATH],$target,$project_settings);
1816 if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1817 generate_wrapper_file(@$project[$P_PATH],$target);
1823 # Perform the replacements in the template configure files
1824 # Return 1 for success, 0 for failure
1825 sub generate_configure
1827 my $filename=$_[0];
1828 my $a_source_file=$_[1];
1830 if (!defined $templates{$filename}) {
1831 if ($filename ne "configure") {
1832 print STDERR "winemaker: internal error: No template called '$filename'\n";
1834 return 0;
1837 if (!open(FILEO,">$filename")) {
1838 print STDERR "error: unable to open \"$filename\" for writing:\n";
1839 print STDERR " $!\n";
1840 return 0;
1842 foreach $line (@{$templates{$filename}}) {
1843 if ($line =~ /^\#\#WINEMAKER_PROJECTS\#\#$/) {
1844 foreach $project (@projects) {
1845 print FILEO "@$project[$P_PATH]Makefile\n";
1847 } else {
1848 $line =~ s+\#\#WINEMAKER_SOURCE\#\#+$a_source_file+;
1849 $line =~ s+\#\#WINEMAKER_NEEDS_MFC\#\#+$needs_mfc+;
1850 print FILEO $line;
1853 close(FILEO);
1854 return 1;
1857 sub generate_generic
1859 my $filename=$_[0];
1861 if (!defined $templates{$filename}) {
1862 print STDERR "winemaker: internal error: No template called '$filename'\n";
1863 return;
1865 if (!open(FILEO,">$filename")) {
1866 print STDERR "error: unable to open \"$filename\" for writing:\n";
1867 print STDERR " $!\n";
1868 return;
1870 foreach $line (@{$templates{$filename}}) {
1871 print FILEO $line;
1873 close(FILEO);
1877 # Generates the global files:
1878 # configure
1879 # configure.in
1880 # Make.rules.in
1881 sub generate_global_files
1883 generate_generic("Make.rules.in");
1885 # Get the name of a source file for configure.in
1886 my $a_source_file;
1887 search_a_file: foreach $project (@projects) {
1888 foreach $target (@{@$project[$P_TARGETS]}, @$project[$P_SETTINGS]) {
1889 $a_source_file=@{@$target[$T_SOURCES_C]}[0];
1890 if (!defined $a_source_file) {
1891 $a_source_file=@{@$target[$T_SOURCES_CXX]}[0];
1893 if (!defined $a_source_file) {
1894 $a_source_file=@{@$target[$T_SOURCES_RC]}[0];
1896 if (defined $a_source_file) {
1897 $a_source_file="@$project[$P_PATH]$a_source_file";
1898 last search_a_file;
1902 if (!defined $a_source_file) {
1903 $a_source_file="Makefile.in";
1906 generate_configure("configure.in",$a_source_file);
1907 unlink("configure");
1908 if (generate_configure("configure",$a_source_file) == 0) {
1909 system("autoconf");
1911 # Add execute permission to configure for whoever has the right to read it
1912 my @st=stat("configure");
1913 if (@st) {
1914 my $mode=$st[2];
1915 $mode|=($mode & 0444) >>2;
1916 chmod($mode,"configure");
1917 } else {
1918 print "warning: could not generate the configure script. You need to run autoconf\n";
1924 sub generate_read_templates
1926 my $file;
1928 while (<DATA>) {
1929 if (/^--- ((\w\.?)+) ---$/) {
1930 my $filename=$1;
1931 if (defined $templates{$filename}) {
1932 print STDERR "winemaker: internal error: There is more than one template for $filename\n";
1933 undef $file;
1934 } else {
1935 $file=[];
1936 $templates{$filename}=$file;
1938 } elsif (defined $file) {
1939 push @$file, $_;
1945 # This is where we finally generate files. In fact this method does not
1946 # do anything itself but calls the methods that do the actual work.
1947 sub generate
1949 print "Generating project files...\n";
1950 generate_read_templates();
1951 generate_global_files();
1953 foreach $project (@projects) {
1954 my $path=@$project[$P_PATH];
1955 if ($path eq "") {
1956 $path=".";
1957 } else {
1958 $path =~ s+/$++;
1960 print " $path\n";
1961 generate_project_files($project);
1967 #####
1969 # Option defaults
1971 #####
1973 $opt_backup=1;
1974 $opt_lower=$OPT_LOWER_UPPERCASE;
1975 $opt_lower_include=1;
1977 # $opt_work_dir=<undefined>
1978 # $opt_single_target=<undefined>
1979 $opt_target_type=$TT_GUIEXE;
1980 $opt_flags=0;
1981 $opt_is_interactive=$OPT_ASK_NO;
1982 $opt_ask_project_options=$OPT_ASK_NO;
1983 $opt_ask_target_options=$OPT_ASK_NO;
1984 $opt_no_generated_files=0;
1985 $opt_no_banner=0;
1989 #####
1991 # Main
1993 #####
1995 sub print_banner
1997 print "Winemaker $version\n";
1998 print "Copyright 2000 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
2001 sub usage
2003 print_banner();
2004 print STDERR "Usage: winemaker [--nobanner] [--backup|--nobackup]\n";
2005 print STDERR " [--lower-none|--lower-all|--lower-uppercase]\n";
2006 print STDERR " [--lower-include|--nolower-include]\n";
2007 print STDERR " [--guiexe|--windows|--cuiexe|--console|--dll]\n";
2008 print STDERR " [--wrap|--nowrap] [--mfc|--nomfc]\n";
2009 print STDERR " [-Dmacro[=defn]] [-Idir] [-Ldir] [-idll] [-llibrary]\n";
2010 print STDERR " [--interactive] [--single-target name]\n";
2011 print STDERR " [--generated-files|--nogenerated-files]\n";
2012 print STDERR " work_directory\n";
2013 print STDERR "\nWinemaker is designed to recursively convert all the Windows sources found in\n";
2014 print STDERR "the specified directory so that they can be compiled with Winelib. During this\n";
2015 print STDERR "process it will modify and rename some of the files in that directory.\n";
2016 print STDERR "\tPlease read the manual page before use.\n";
2017 exit (2);
2021 project_init(\@main_project,"");
2023 while (@ARGV>0) {
2024 my $arg=shift @ARGV;
2025 # General options
2026 if ($arg eq "--nobanner") {
2027 $opt_no_banner=1;
2028 } elsif ($arg eq "--backup") {
2029 $opt_backup=1;
2030 } elsif ($arg eq "--nobackup") {
2031 $opt_backup=0;
2032 } elsif ($arg eq "--single-target") {
2033 $opt_single_target=shift @ARGV;
2034 } elsif ($arg eq "--lower-none") {
2035 $opt_lower=$OPT_LOWER_NONE;
2036 } elsif ($arg eq "--lower-all") {
2037 $opt_lower=$OPT_LOWER_ALL;
2038 } elsif ($arg eq "--lower-uppercase") {
2039 $opt_lower=$OPT_LOWER_UPPERCASE;
2040 } elsif ($arg eq "--lower-include") {
2041 $opt_lower_include=1;
2042 } elsif ($arg eq "--nolower-include") {
2043 $opt_lower_include=0;
2044 } elsif ($arg eq "--generated-files") {
2045 $opt_no_generated_files=0;
2046 } elsif ($arg eq "--nogenerated-files") {
2047 $opt_no_generated_files=1;
2049 } elsif ($arg =~ /^-D/) {
2050 push @{$global_settings[$T_DEFINES]},$arg;
2051 } elsif ($arg =~ /^-I/) {
2052 push @{$global_settings[$T_INCLUDE_PATH]},$arg;
2053 } elsif ($arg =~ /^-L/) {
2054 push @{$global_settings[$T_LIBRARY_PATH]},$arg;
2055 } elsif ($arg =~ /^-i/) {
2056 push @{$global_settings[$T_IMPORTS]},$';
2057 } elsif ($arg =~ /^-l/) {
2058 push @{$global_settings[$T_LIBRARIES]},$';
2060 # 'Source'-based method options
2061 } elsif ($arg eq "--dll") {
2062 $opt_target_type=$TT_DLL;
2063 } elsif ($arg eq "--guiexe" or $arg eq "--windows") {
2064 $opt_target_type=$TT_GUIEXE;
2065 } elsif ($arg eq "--cuiexe" or $arg eq "--console") {
2066 $opt_target_type=$TT_CUIEXE;
2067 } elsif ($arg eq "--interactive") {
2068 $opt_is_interactive=$OPT_ASK_YES;
2069 $opt_ask_project_options=$OPT_ASK_YES;
2070 $opt_ask_target_options=$OPT_ASK_YES;
2071 } elsif ($arg eq "--wrap") {
2072 $opt_flags|=$TF_WRAP;
2073 } elsif ($arg eq "--nowrap") {
2074 $opt_flags&=~$TF_WRAP;
2075 } elsif ($arg eq "--mfc") {
2076 $opt_flags|=$TF_MFC;
2077 $opt_flags|=$TF_MFC|$TF_WRAP;
2078 $needs_mfc=1;
2079 } elsif ($arg eq "--nomfc") {
2080 $opt_flags&=~($TF_MFC|$TF_WRAP);
2081 $needs_mfc=0;
2083 # Catch errors
2084 } else {
2085 if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") {
2086 if (!defined $opt_work_dir) {
2087 $opt_work_dir=$arg;
2088 } else {
2089 print STDERR "error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n";
2090 usage();
2092 } else {
2093 usage();
2098 if (!defined $opt_work_dir) {
2099 print STDERR "error: you must specify the directory containing the sources to be converted\n";
2100 usage();
2101 } elsif (!chdir $opt_work_dir) {
2102 print STDERR "error: could not chdir to the work directory\n";
2103 print STDERR " $!\n";
2104 usage();
2107 if ($opt_no_banner == 0) {
2108 print_banner();
2111 # Fix the file and directory names
2112 fix_file_and_directory_names(".");
2114 # Scan the sources to identify the projects and targets
2115 source_scan();
2117 # Create targets for wrappers, etc.
2118 postprocess_targets();
2120 # Fix the source files
2121 fix_source();
2123 # Generate the Makefile and the spec file
2124 if (! $opt_no_generated_files) {
2125 generate();
2129 __DATA__
2130 --- configure.in ---
2131 dnl Process this file with autoconf to produce a configure script.
2132 dnl Author: Michael Patra <micky@marie.physik.tu-berlin.de>
2133 dnl <patra@itp1.physik.tu-berlin.de>
2134 dnl Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
2136 AC_REVISION([configure.in 1.00])
2137 AC_INIT(##WINEMAKER_SOURCE##)
2139 NEEDS_MFC=##WINEMAKER_NEEDS_MFC##
2141 dnl **** Command-line arguments ****
2143 AC_SUBST(OPTIONS)
2145 dnl **** Check for some programs ****
2147 AC_PROG_MAKE_SET
2148 AC_PROG_CC
2149 AC_PROG_CXX
2150 AC_PROG_CPP
2151 AC_PATH_XTRA
2152 AC_PROG_RANLIB
2153 AC_PROG_LN_S
2154 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
2156 dnl **** Check for some libraries ****
2158 dnl Check for -lm for BeOS
2159 AC_CHECK_LIB(m,sqrt)
2160 dnl Check for -li386 for NetBSD and OpenBSD
2161 AC_CHECK_LIB(i386,i386_set_ldt)
2162 dnl Check for -lossaudio for NetBSD
2163 AC_CHECK_LIB(ossaudio,_oss_ioctl)
2164 dnl Check for -lw for Solaris
2165 AC_CHECK_LIB(w,iswalnum)
2166 dnl Check for -lnsl for Solaris
2167 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))
2168 dnl Check for -lsocket for Solaris
2169 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
2170 dnl Check for -lxpg4 for FreeBSD
2171 AC_CHECK_LIB(xpg4,setrunelocale)
2172 dnl Check for -lmmap for OS/2
2173 AC_CHECK_LIB(mmap,mmap)
2174 dnl Check for openpty
2175 AC_CHECK_FUNCS(openpty,,
2176 AC_CHECK_LIB(util,openpty,
2177 AC_DEFINE(HAVE_OPENPTY)
2178 LIBS="$LIBS -lutil"
2181 AC_CHECK_HEADERS(dlfcn.h,
2182 AC_CHECK_FUNCS(dlopen,
2183 AC_DEFINE(HAVE_DL_API),
2184 AC_CHECK_LIB(dl,dlopen,
2185 AC_DEFINE(HAVE_DL_API)
2186 LIBS="$LIBS -ldl",
2191 dnl **** Check which curses lib to use ***
2192 if test "$CURSES" = "yes"
2193 then
2194 AC_CHECK_HEADERS(ncurses.h)
2195 if test "$ac_cv_header_ncurses_h" = "yes"
2196 then
2197 AC_CHECK_LIB(ncurses,waddch)
2199 if test "$ac_cv_lib_ncurses_waddch" = "yes"
2200 then
2201 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
2202 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
2203 else
2204 AC_CHECK_HEADERS(curses.h)
2205 if test "$ac_cv_header_curses_h" = "yes"
2206 then
2207 AC_CHECK_LIB(curses,waddch)
2208 if test "$ac_cv_lib_curses_waddch" = "yes"
2209 then
2210 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
2211 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
2217 dnl **** If ln -s doesn't work, use cp instead ****
2218 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
2220 dnl **** Check for gcc strength-reduce bug ****
2222 if test "x${GCC}" = "xyes"
2223 then
2224 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
2225 AC_TRY_RUN([
2226 int main(void) {
2227 static int Array[[3]];
2228 unsigned int B = 3;
2229 int i;
2230 for(i=0; i<B; i++) Array[[i]] = i - 3;
2231 exit( Array[[1]] != -2 );
2233 ac_cv_c_gcc_strength_bug="no",
2234 ac_cv_c_gcc_strength_bug="yes",
2235 ac_cv_c_gcc_strength_bug="yes") )
2236 if test "$ac_cv_c_gcc_strength_bug" = "yes"
2237 then
2238 CFLAGS="$CFLAGS -fno-strength-reduce"
2242 dnl **** Check for underscore on external symbols ****
2244 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
2245 ac_cv_c_extern_prefix,
2246 [saved_libs=$LIBS
2247 LIBS="conftest_asm.s $LIBS"
2248 cat > conftest_asm.s <<EOF
2249 .globl _ac_test
2250 _ac_test:
2251 .long 0
2253 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
2254 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
2255 LIBS=$saved_libs])
2256 if test "$ac_cv_c_extern_prefix" = "yes"
2257 then
2258 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
2261 dnl **** Check for working dll ****
2263 LDSHARED=""
2264 LDXXSHARED=""
2265 LDDLLFLAGS=""
2266 AC_CACHE_CHECK("whether we can build a Linux dll",
2267 ac_cv_c_dll_linux,
2268 [saved_cflags=$CFLAGS
2269 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
2270 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
2271 CFLAGS=$saved_cflags
2273 if test "$ac_cv_c_dll_linux" = "yes"
2274 then
2275 LDSHARED="\$(CC) -shared -Wl,-rpath,\$(libdir)"
2276 LDXXSHARED="\$(CXX) -shared -Wl,-rpath,\$(libdir)"
2277 LDDLLFLAGS="-Wl,-Bsymbolic"
2278 else
2279 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
2280 ac_cv_c_dll_unixware,
2281 [saved_cflags=$CFLAGS
2282 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
2283 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
2284 CFLAGS=$saved_cflags
2286 if test "$ac_cv_c_dll_unixware" = "yes"
2287 then
2288 LDSHARED="\$(CC) -Wl,-G"
2289 LDXXSHARED="\$(CXX) -Wl,-G"
2290 LDDLLFLAGS="-Wl,-B,symbolic"
2291 else
2292 AC_CACHE_CHECK("whether we can build a NetBSD dll",
2293 ac_cv_c_dll_netbsd,
2294 [saved_cflags=$CFLAGS
2295 CFLAGS="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
2296 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
2297 CFLAGS=$saved_cflags
2299 if test "$ac_cv_c_dll_netbsd" = "yes"
2300 then
2301 LDSHARED="\$(CC) -Wl,-Bshareable,-Bforcearchive"
2302 LDXXSHARED="\$(CXX) -Wl,-Bshareable,-Bforcearchive"
2303 LDDLLFLAGS="" #FIXME
2307 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
2308 then
2309 AC_MSG_ERROR([Could not find how to build a dynamically linked library])
2312 CFLAGS="$CFLAGS -fPIC"
2313 DLL_LINK="\$(WINE_LIBRARY_PATH) \$(LIBRARY_PATH) \$(LIBRARIES:%=-l%) -lwine -lwine_unicode -lwine_uuid"
2315 AC_SUBST(DLL_LINK)
2316 AC_SUBST(LDSHARED)
2317 AC_SUBST(LDXXSHARED)
2318 AC_SUBST(LDDLLFLAGS)
2320 dnl *** check for the need to define __i386__
2322 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
2323 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
2325 #endif],
2326 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
2327 if test "$ac_cv_cpp_def_i386" = "yes"
2328 then
2329 CFLAGS="$CFLAGS -D__i386__"
2332 dnl $GCC is set by autoconf
2333 GCC_NO_BUILTIN=""
2334 if test "$GCC" = "yes"
2335 then
2336 GCC_NO_BUILTIN="-fno-builtin"
2338 AC_SUBST(GCC_NO_BUILTIN)
2340 dnl **** Test Winelib-related features of the C++ compiler
2341 AC_LANG_CPLUSPLUS()
2342 if test "x${GCC}" = "xyes"
2343 then
2344 OLDCXXFLAGS="$CXXFLAGS";
2345 CXXFLAGS="-fpermissive";
2346 AC_CACHE_CHECK("for g++ -fpermissive option", has_gxx_permissive,
2347 AC_TRY_COMPILE(,[
2348 for (int i=0;i<2;i++);
2349 i=0;
2351 [has_gxx_permissive="yes"],
2352 [has_gxx_permissive="no"])
2354 CXXFLAGS="-fno-for-scope";
2355 AC_CACHE_CHECK("for g++ -fno-for-scope option", has_gxx_no_for_scope,
2356 AC_TRY_COMPILE(,[
2357 for (int i=0;i<2;i++);
2358 i=0;
2360 [has_gxx_no_for_scope="yes"],
2361 [has_gxx_no_for_scope="no"])
2363 CXXFLAGS="$OLDCXXFLAGS";
2364 if test "$has_gxx_permissive" = "yes"
2365 then
2366 CXXFLAGS="$CXXFLAGS -fpermissive"
2368 if test "$has_gxx_no_for_scope" = "yes"
2369 then
2370 CXXFLAGS="$CXXFLAGS -fno-for-scope"
2373 AC_LANG_C()
2375 dnl **** Test Winelib-related features of the C compiler
2376 dnl none for now
2378 dnl **** Macros for finding a headers/libraries in a collection of places
2380 dnl AC_PATH_HEADER(variable,header,action-if-not-found,default-locations)
2381 dnl Note that the above may set variable to an empty value if the header is
2382 dnl already in the include path
2383 AC_DEFUN(AC_PATH_HEADER,[
2384 AC_MSG_CHECKING([for $2])
2385 AC_CACHE_VAL(ac_cv_path_$1,
2387 ac_found=
2388 ac_dummy="ifelse([$4], , :/usr/local/include, [$4])"
2389 save_CPPFLAGS="$CPPFLAGS"
2390 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
2391 for ac_dir in $ac_dummy; do
2392 IFS="$ac_save_ifs"
2393 if test -z "$ac_dir"
2394 then
2395 CPPFLAGS="$save_CPPFLAGS"
2396 else
2397 CPPFLAGS="-I$ac_dir $save_CPPFLAGS"
2399 AC_TRY_COMPILE([#include <$2>],,ac_found=1;ac_cv_path_$1="$ac_dir";break)
2400 done
2401 CPPFLAGS="$save_CPPFLAGS"
2402 ifelse([$3],,,[if test -z "$ac_found"
2403 then
2408 $1="$ac_cv_path_$1"
2409 if test -n "$ac_found" -o -n "[$]$1"
2410 then
2411 AC_MSG_RESULT([$]$1)
2412 else
2413 AC_MSG_RESULT(no)
2415 AC_SUBST($1)
2418 dnl AC_PATH_LIBRARY(variable,libraries,extra libs,action-if-not-found,default-locations)
2419 AC_DEFUN(AC_PATH_LIBRARY,[
2420 AC_MSG_CHECKING([for $2])
2421 AC_CACHE_VAL(ac_cv_path_$1,
2423 ac_found=
2424 ac_dummy="ifelse([$5], , :/usr/local/lib, [$5])"
2425 save_LIBS="$LIBS"
2426 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
2427 for ac_dir in $ac_dummy; do
2428 IFS="$ac_save_ifs"
2429 if test -z "$ac_dir"
2430 then
2431 LIBS="$2 $3 $save_LIBS"
2432 else
2433 LIBS="-L$ac_dir $2 $3 $save_LIBS"
2435 AC_TRY_LINK(,,ac_found=1;ac_cv_path_$1="$ac_dir";break)
2436 done
2437 LIBS="$save_LIBS"
2438 ifelse([$4],,,[if test -z "$ac_found"
2439 then
2444 $1="$ac_cv_path_$1"
2445 if test -n "$ac_found" -o -n "[$]$1"
2446 then
2447 AC_MSG_RESULT([$]$1)
2448 else
2449 AC_MSG_RESULT(no)
2451 AC_SUBST($1)
2454 dnl **** Try to find where winelib is located ****
2456 LD_PATH="";
2457 WINE_INCLUDE_ROOT="";
2458 WINE_INCLUDE_PATH="";
2459 WINE_LIBRARY_ROOT="";
2460 WINE_LIBRARY_PATH="";
2461 WINE_TOOL_PATH="";
2462 WINE="";
2463 WINEBUILD="";
2464 WRC="";
2466 AC_ARG_WITH(wine,
2467 [ --with-wine=DIR the Wine package (or sources) is in DIR],
2468 [if test "$withval" != "no"; then
2469 WINE_ROOT="$withval";
2470 WINE_INCLUDES="";
2471 WINE_LIBRARIES="";
2472 WINE_TOOLS="";
2473 else
2474 WINE_ROOT="";
2475 fi])
2476 if test -n "$WINE_ROOT"
2477 then
2478 WINE_INCLUDE_ROOT="$WINE_ROOT/include:$WINE_ROOT/include/wine";
2479 WINE_LIBRARY_ROOT="$WINE_ROOT";
2480 WINE_TOOL_PATH="$WINE_ROOT:$WINE_ROOT/bin:$WINE_ROOT/tools/wrc:$WINE_ROOT/tools/winebuild:$PATH";
2483 AC_ARG_WITH(wine-includes,
2484 [ --with-wine-includes=DIR the Wine includes are in DIR],
2485 [if test "$withval" != "no"; then
2486 WINE_INCLUDES="$withval";
2487 else
2488 WINE_INCLUDES="";
2489 fi])
2490 if test -n "$WINE_INCLUDES"
2491 then
2492 WINE_INCLUDE_ROOT="$WINE_INCLUDES";
2495 AC_ARG_WITH(wine-libraries,
2496 [ --with-wine-libraries=DIR the Wine libraries are in DIR],
2497 [if test "$withval" != "no"; then
2498 WINE_LIBRARIES="$withval";
2499 else
2500 WINE_LIBRARIES="";
2501 fi])
2502 if test -n "$WINE_LIBRARIES"
2503 then
2504 WINE_LIBRARY_ROOT="$WINE_LIBRARIES";
2507 AC_ARG_WITH(wine-tools,
2508 [ --with-wine-tools=DIR the Wine tools are in DIR],
2509 [if test "$withval" != "no"; then
2510 WINE_TOOLS="$withval";
2511 else
2512 WINE_TOOLS="";
2513 fi])
2514 if test -n "$WINE_TOOLS"
2515 then
2516 WINE_TOOL_PATH="$WINE_TOOLS:$WINE_TOOLS/wrc:$WINE_TOOLS/winebuild";
2519 if test -z "$WINE_INCLUDE_ROOT"
2520 then
2521 WINE_INCLUDE_ROOT=":/usr/include/wine:/usr/local/include/wine:/opt/wine/include:/opt/wine/include/wine";
2523 AC_PATH_HEADER(WINE_INCLUDE_ROOT,windef.h,[
2524 AC_MSG_ERROR([Could not find the Wine includes])
2525 ],$WINE_INCLUDE_ROOT)
2526 if test -n "$WINE_INCLUDE_ROOT"
2527 then
2528 WINE_INCLUDE_PATH="-I$WINE_INCLUDE_ROOT"
2529 else
2530 WINE_INCLUDE_PATH=""
2533 if test -z "$WINE_LIBRARY_ROOT"
2534 then
2535 WINE_LIBRARY_ROOT=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib";
2536 else
2537 WINE_LIBRARY_ROOT="$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/lib";
2539 AC_PATH_LIBRARY(WINE_LIBRARY_ROOT,[-lwine],[-lutil],[
2540 AC_MSG_ERROR([Could not find the Wine libraries (libwine.so)])
2541 ],$WINE_LIBRARY_ROOT)
2542 if test -n "$WINE_LIBRARY_ROOT"
2543 then
2544 WINE_LIBRARY_PATH="-L$WINE_LIBRARY_ROOT"
2545 else
2546 WINE_LIBRARY_PATH=""
2548 AC_PATH_LIBRARY(LIBNTDLL_PATH,[-lntdll],[$WINE_LIBRARY_PATH -lwine -lwine_unicode -lncurses -ldl -lutil],[
2549 AC_MSG_ERROR([Could not find the Wine libraries (libntdll.so)])
2550 ],[$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/dlls])
2551 if test -n "$LIBNTDLL_PATH" -a "-L$LIBNTDLL_PATH" != "$WINE_LIBRARY_PATH"
2552 then
2553 WINE_LIBRARY_PATH="$WINE_LIBRARY_PATH -L$LIBNTDLL_PATH"
2555 if test -n "$WINE_LIBRARY_PATH"
2556 then
2557 LD_PATH="LD_LIBRARY_PATH=\"`echo $WINE_LIBRARY_PATH | sed -e 's/ *-L/:/g' -e 's/^://' -e 's/ *$//'`:\$\$LD_LIBRARY_PATH\""
2560 if test -z "$WINE_TOOL_PATH"
2561 then
2562 WINE_TOOL_PATH="$PATH:/usr/local/bin:/opt/wine/bin";
2564 AC_PATH_PROG(WINE,wine,,$WINE_TOOL_PATH)
2565 if test -z "$WINE"
2566 then
2567 AC_MSG_ERROR([Could not find Wine's wine tool])
2569 AC_PATH_PROG(WINEBUILD,winebuild,,$WINE_TOOL_PATH)
2570 if test -z "$WINEBUILD"
2571 then
2572 AC_MSG_ERROR([Could not find Wine's winebuild tool])
2574 AC_PATH_PROG(WRC,wrc,,$WINE_TOOL_PATH)
2575 if test -z "$WRC"
2576 then
2577 AC_MSG_ERROR([Could not find Wine's wrc tool])
2580 AC_SUBST(LD_PATH)
2581 AC_SUBST(WINE_INCLUDE_PATH)
2582 AC_SUBST(WINE_LIBRARY_PATH)
2584 dnl **** Try to find where the MFC are located ****
2585 AC_LANG_CPLUSPLUS()
2587 if test "x$NEEDS_MFC" = "x1"
2588 then
2589 ATL_INCLUDE_ROOT="";
2590 ATL_INCLUDE_PATH="";
2591 MFC_INCLUDE_ROOT="";
2592 MFC_INCLUDE_PATH="";
2593 MFC_LIBRARY_ROOT="";
2594 MFC_LIBRARY_PATH="";
2596 AC_ARG_WITH(mfc,
2597 [ --with-mfc=DIR the MFC package (or sources) is in DIR],
2598 [if test "$withval" != "no"; then
2599 MFC_ROOT="$withval";
2600 ATL_INCLUDES="";
2601 MFC_INCLUDES="";
2602 MFC_LIBRARIES="";
2603 else
2604 MFC_ROOT="";
2605 fi])
2606 if test -n "$MFC_ROOT"
2607 then
2608 ATL_INCLUDE_ROOT="$MFC_ROOT";
2609 MFC_INCLUDE_ROOT="$MFC_ROOT";
2610 MFC_LIBRARY_ROOT="$MFC_ROOT";
2613 AC_ARG_WITH(atl-includes,
2614 [ --with-atl-includes=DIR the ATL includes are in DIR],
2615 [if test "$withval" != "no"; then
2616 ATL_INCLUDES="$withval";
2617 else
2618 ATL_INCLUDES="";
2619 fi])
2620 if test -n "$ATL_INCLUDES"
2621 then
2622 ATL_INCLUDE_ROOT="$ATL_INCLUDES";
2625 AC_ARG_WITH(mfc-includes,
2626 [ --with-mfc-includes=DIR the MFC includes are in DIR],
2627 [if test "$withval" != "no"; then
2628 MFC_INCLUDES="$withval";
2629 else
2630 MFC_INCLUDES="";
2631 fi])
2632 if test -n "$MFC_INCLUDES"
2633 then
2634 MFC_INCLUDE_ROOT="$MFC_INCLUDES";
2637 AC_ARG_WITH(mfc-libraries,
2638 [ --with-mfc-libraries=DIR the MFC libraries are in DIR],
2639 [if test "$withval" != "no"; then
2640 MFC_LIBRARIES="$withval";
2641 else
2642 MFC_LIBRARIES="";
2643 fi])
2644 if test -n "$MFC_LIBRARIES"
2645 then
2646 MFC_LIBRARY_ROOT="$MFC_LIBRARIES";
2649 OLDCPPFLAGS="$CPPFLAGS"
2650 dnl FIXME: We should not have defines in any of the include paths
2651 CPPFLAGS="$WINE_INCLUDE_PATH -I$WINE_INCLUDE_ROOT/mixedcrt -D_DLL -D_MT $CPPFLAGS"
2652 ATL_INCLUDE_PATH="-I\$(WINE_INCLUDE_ROOT)/mixedcrt -D_DLL -D_MT"
2653 if test -z "$ATL_INCLUDE_ROOT"
2654 then
2655 ATL_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/atl:/usr/include/atl:/usr/local/include/atl:/opt/mfc/include/atl:/opt/atl/include"
2656 else
2657 ATL_INCLUDE_ROOT="$ATL_INCLUDE_ROOT:$ATL_INCLUDE_ROOT/atl:$ATL_INCLUDE_ROOT/atl/include"
2659 AC_PATH_HEADER(ATL_INCLUDE_ROOT,atldef.h,[
2660 AC_MSG_ERROR([Could not find the ATL includes])
2661 ],$ATL_INCLUDE_ROOT)
2662 if test -n "$ATL_INCLUDE_ROOT"
2663 then
2664 ATL_INCLUDE_PATH="$ATL_INCLUDE_PATH -I$ATL_INCLUDE_ROOT"
2667 MFC_INCLUDE_PATH="$ATL_INCLUDE_PATH"
2668 if test -z "$MFC_INCLUDE_ROOT"
2669 then
2670 MFC_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/mfc:/usr/include/mfc:/usr/local/include/mfc:/opt/mfc/include/mfc:/opt/mfc/include"
2671 else
2672 MFC_INCLUDE_ROOT="$MFC_INCLUDE_ROOT:$MFC_INCLUDE_ROOT/mfc:$MFC_INCLUDE_ROOT/mfc/include"
2674 AC_PATH_HEADER(MFC_INCLUDE_ROOT,afx.h,[
2675 AC_MSG_ERROR([Could not find the MFC includes])
2676 ],$MFC_INCLUDE_ROOT)
2677 if test -n "$MFC_INCLUDE_ROOT" -a "$ATL_INCLUDE_ROOT" != "$MFC_INCLUDE_ROOT"
2678 then
2679 MFC_INCLUDE_PATH="$MFC_INCLUDE_PATH -I$MFC_INCLUDE_ROOT"
2681 CPPFLAGS="$OLDCPPFLAGS"
2683 if test -z "$MFC_LIBRARY_ROOT"
2684 then
2685 MFC_LIBRARY_ROOT=":$WINE_LIBRARY_ROOT:/usr/lib/mfc:/usr/local/lib:/usr/local/lib/mfc:/opt/mfc/lib";
2686 else
2687 MFC_LIBRARY_ROOT="$MFC_LIBRARY_ROOT:$MFC_LIBRARY_ROOT/lib:$MFC_LIBRARY_ROOT/mfc/src";
2689 AC_PATH_LIBRARY(MFC_LIBRARY_ROOT,[-lmfc],[$WINE_LIBRARY_PATH -lwine -lwine_unicode],[
2690 AC_MSG_ERROR([Could not find the MFC library])
2691 ],$MFC_LIBRARY_ROOT)
2692 if test -n "$MFC_LIBRARY_ROOT" -a "$MFC_LIBRARY_ROOT" != "$WINE_LIBRARY_ROOT"
2693 then
2694 MFC_LIBRARY_PATH="-L$MFC_LIBRARY_ROOT"
2695 else
2696 MFC_LIBRARY_PATH=""
2699 AC_SUBST(ATL_INCLUDE_PATH)
2700 AC_SUBST(MFC_INCLUDE_PATH)
2701 AC_SUBST(MFC_LIBRARY_PATH)
2704 AC_LANG_C()
2706 dnl **** Generate output files ****
2708 MAKE_RULES=Make.rules
2709 AC_SUBST_FILE(MAKE_RULES)
2711 AC_OUTPUT([
2712 Make.rules
2713 ##WINEMAKER_PROJECTS##
2716 echo
2717 echo "Configure finished. Do 'make' to build the project."
2718 echo
2720 dnl Local Variables:
2721 dnl comment-start: "dnl "
2722 dnl comment-end: ""
2723 dnl comment-start-skip: "\\bdnl\\b\\s *"
2724 dnl compile-command: "autoconf"
2725 dnl End:
2726 --- Make.rules.in ---
2727 # Copyright 2000 Francois Gouget for CodeWeavers
2728 # fgouget@codeweavers.com
2730 # Global rules shared by all makefiles -*-Makefile-*-
2732 # Each individual makefile must define the following variables:
2733 # WINE_INCLUDE_ROOT: Wine's headers location
2734 # WINE_LIBRARY_ROOT: Wine's libraries location
2735 # TOPOBJDIR : top-level object directory
2736 # SRCDIR : source directory for this module
2738 # Each individual makefile may define the following additional variables:
2740 # SUBDIRS : subdirectories that contain a Makefile
2741 # DLLS : WineLib libraries to be built
2742 # EXES : WineLib executables to be built
2744 # CEXTRA : extra c flags (e.g. '-Wall')
2745 # CXXEXTRA : extra c++ flags (e.g. '-Wall')
2746 # WRCEXTRA : extra wrc flags (e.g. '-p _SysRes')
2747 # DEFINES : defines (e.g. -DSTRICT)
2748 # INCLUDE_PATH : additional include path
2749 # LIBRARY_PATH : additional library path
2750 # LIBRARIES : additional Unix libraries to link with
2752 # C_SRCS : C sources for the module
2753 # CXX_SRCS : C++ sources for the module
2754 # RC_SRCS : resource source files
2755 # SPEC_SRCS : interface definition files
2758 # Where is Wine
2760 WINE_INCLUDE_ROOT = @WINE_INCLUDE_ROOT@
2761 WINE_INCLUDE_PATH = @WINE_INCLUDE_PATH@
2762 WINE_LIBRARY_ROOT = @WINE_LIBRARY_ROOT@
2763 WINE_LIBRARY_PATH = @WINE_LIBRARY_PATH@
2765 LD_PATH = @LD_PATH@
2767 # Where are the MFC
2769 ATL_INCLUDE_ROOT = @ATL_INCLUDE_ROOT@
2770 ATL_INCLUDE_PATH = @ATL_INCLUDE_PATH@
2771 MFC_INCLUDE_ROOT = @MFC_INCLUDE_ROOT@
2772 MFC_INCLUDE_PATH = @MFC_INCLUDE_PATH@
2773 MFC_LIBRARY_ROOT = @MFC_LIBRARY_ROOT@
2774 MFC_LIBRARY_PATH = @MFC_LIBRARY_PATH@
2776 # First some useful definitions
2778 SHELL = /bin/sh
2779 CC = @CC@
2780 CPP = @CPP@
2781 WRC = @WRC@
2782 CFLAGS = @CFLAGS@
2783 CXXFLAGS = @CXXFLAGS@
2784 WRCFLAGS = -r -L
2785 OPTIONS = @OPTIONS@ -D_REENTRANT -DWINELIB
2786 X_CFLAGS = @X_CFLAGS@
2787 X_LIBS = @X_LIBS@
2788 XLIB = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@
2789 DLL_LINK = @DLL_LINK@
2790 LIBS = @LIBS@ $(LIBRARY_PATH)
2791 YACC = @YACC@
2792 LEX = @LEX@
2793 LEXLIB = @LEXLIB@
2794 LN_S = @LN_S@
2795 ALLFLAGS = $(DEFINES) -I$(SRCDIR) $(WINE_INCLUDE_PATH) $(INCLUDE_PATH)
2796 ALLCFLAGS = $(CFLAGS) $(CEXTRA) $(OPTIONS) $(X_CFLAGS) $(ALLFLAGS)
2797 ALLCXXFLAGS=$(CXXFLAGS) $(CXXEXTRA) $(OPTIONS) $(X_CFLAGS) $(ALLFLAGS)
2798 ALLWRCFLAGS=$(WRCFLAGS) $(WRCEXTRA) $(OPTIONS) $(ALLFLAGS)
2799 LDCOMBINE = ld -r
2800 LDSHARED = @LDSHARED@
2801 LDXXSHARED = @LDXXSHARED@
2802 LDDLLFLAGS= @LDDLLFLAGS@
2803 STRIP = strip
2804 STRIPFLAGS= --strip-unneeded
2805 RM = rm -f
2806 MV = mv
2807 MKDIR = mkdir -p
2808 WINE = @WINE@
2809 WINEBUILD = @WINEBUILD@
2810 @SET_MAKE@
2812 # Installation infos
2814 INSTALL = @INSTALL@
2815 INSTALL_PROGRAM = @INSTALL_PROGRAM@
2816 INSTALL_DATA = @INSTALL_DATA@
2817 prefix = @prefix@
2818 exec_prefix = @exec_prefix@
2819 bindir = @bindir@
2820 libdir = @libdir@
2821 infodir = @infodir@
2822 mandir = @mandir@
2823 prog_manext = 1
2824 conf_manext = 5
2826 OBJS = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \
2827 $(SPEC_SRCS:.spec=.spec.o)
2828 CLEAN_FILES = *.spec.c y.tab.c y.tab.h lex.yy.c \
2829 core *.orig *.rej \
2830 \\\#*\\\# *~ *% .\\\#*
2832 # Implicit rules
2834 .SUFFIXES: .cpp .rc .res .tmp.o .spec .spec.c .spec.o
2836 .c.o:
2837 $(CC) -c $(ALLCFLAGS) -o $@ $<
2839 .cpp.o:
2840 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
2842 .cxx.o:
2843 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
2845 .rc.res:
2846 $(LD_PATH) $(WRC) $(ALLWRCFLAGS) -o $@ $<
2848 .PHONY: all install uninstall clean distclean depend dummy
2850 # 'all' target first in case the enclosing Makefile didn't define any target
2852 all: Makefile
2854 # Rules for makefile
2856 Makefile: Makefile.in $(TOPSRCDIR)/configure
2857 @echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
2858 @exit 1
2860 # Rules for cleaning
2862 $(SUBDIRS:%=%/__clean__): dummy
2863 cd `dirname $@` && $(MAKE) clean
2865 $(EXTRASUBDIRS:%=%/__clean__): dummy
2866 -cd `dirname $@` && $(RM) $(CLEAN_FILES)
2868 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
2869 $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(SPEC_SRCS:.spec=.tmp.o) $(EXES) $(EXES:%=%.so) $(DLLS)
2871 # Rules for installing
2873 $(SUBDIRS:%=%/__install__): dummy
2874 cd `dirname $@` && $(MAKE) install
2876 $(SUBDIRS:%=%/__uninstall__): dummy
2877 cd `dirname $@` && $(MAKE) uninstall
2879 # Misc. rules
2881 $(SUBDIRS): dummy
2882 @cd $@ && $(MAKE)
2884 dummy:
2886 # End of global rules
2887 --- wrapper.c ---
2889 * Copyright 2000 Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
2892 #include <dlfcn.h>
2893 #include <windows.h>
2898 * Describe the wrapped application
2902 * This is either CUIEXE for a console based application or
2903 * GUIEXE for a regular windows application.
2905 #define APP_TYPE ##WINEMAKER_APP_TYPE##
2908 * This is the application library's base name, i.e. 'hello' if the
2909 * library is called 'libhello.so'.
2911 static char* appName = ##WINEMAKER_APP_NAME##;
2914 * This is the name of the application's Windows module. If left NULL
2915 * then appName is used.
2917 static char* appModule = NULL;
2920 * This is the application's entry point. This is usually "WinMain" for a
2921 * GUIEXE and 'main' for a CUIEXE application.
2923 static char* appInit = ##WINEMAKER_APP_INIT##;
2926 * This is either non-NULL for MFC-based applications and is the name of the
2927 * MFC's module. This is the module in which we will take the 'WinMain'
2928 * function.
2930 static char* mfcModule = ##WINEMAKER_APP_MFC##;
2935 * Implement the main.
2938 #if APP_TYPE == GUIEXE
2939 typedef int WINAPI (*WinMainFunc)(HINSTANCE hInstance, HINSTANCE hPrevInstance,
2940 PSTR szCmdLine, int iCmdShow);
2941 #else
2942 typedef int WINAPI (*MainFunc)(int argc, char** argv, char** envp);
2943 #endif
2945 #if APP_TYPE == GUIEXE
2946 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
2947 PSTR szCmdLine, int iCmdShow)
2948 #else
2949 int WINAPI Main(int argc, char** argv, char** envp)
2950 #endif
2952 void* appLibrary;
2953 HINSTANCE hApp,hMFC,hMain;
2954 void* appMain;
2955 char* libName;
2956 int retcode;
2958 /* Load the application's library */
2959 libName=(char*)malloc(strlen(appName)+5+3+1);
2960 /* FIXME: we should get the wrapper's path and use that as the base for
2961 * the library
2963 sprintf(libName,"./lib%s.so",appName);
2964 appLibrary=dlopen(libName,RTLD_NOW);
2965 if (appLibrary==NULL) {
2966 sprintf(libName,"lib%s.so",appName);
2967 appLibrary=dlopen(libName,RTLD_NOW);
2969 if (appLibrary==NULL) {
2970 char format[]="Could not load the %s library:\r\n%s";
2971 char* error;
2972 char* msg;
2974 error=dlerror();
2975 msg=(char*)malloc(strlen(format)+strlen(libName)+strlen(error));
2976 sprintf(msg,format,libName,error);
2977 MessageBox(NULL,msg,"dlopen error",MB_OK);
2978 free(msg);
2979 return 1;
2982 /* Then if this application is MFC based, load the MFC module */
2983 /* FIXME: I'm not sure this is really necessary */
2984 if (mfcModule!=NULL) {
2985 hMFC=LoadLibrary(mfcModule);
2986 if (hMFC==NULL) {
2987 char format[]="Could not load the MFC module %s (%d)";
2988 char* msg;
2990 msg=(char*)malloc(strlen(format)+strlen(mfcModule)+11);
2991 sprintf(msg,format,mfcModule,GetLastError());
2992 MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
2993 free(msg);
2994 return 1;
2996 /* MFC is a special case: the WinMain is in the MFC library,
2997 * instead of the application's library.
2999 hMain=hMFC;
3000 } else {
3001 hMFC=NULL;
3004 /* Load the application's module */
3005 if (appModule==NULL) {
3006 appModule=appName;
3008 hApp=LoadLibrary(appModule);
3009 if (hApp==NULL) {
3010 char format[]="Could not load the application's module %s (%d)";
3011 char* msg;
3013 msg=(char*)malloc(strlen(format)+strlen(appModule)+11);
3014 sprintf(msg,format,appModule,GetLastError());
3015 MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
3016 free(msg);
3017 return 1;
3018 } else if (hMain==NULL) {
3019 hMain=hApp;
3022 /* Get the address of the application's entry point */
3023 appMain=(WinMainFunc*)GetProcAddress(hMain, appInit);
3024 if (appMain==NULL) {
3025 char format[]="Could not get the address of %s (%d)";
3026 char* msg;
3028 msg=(char*)malloc(strlen(format)+strlen(appInit)+11);
3029 sprintf(msg,format,appInit,GetLastError());
3030 MessageBox(NULL,msg,"GetProcAddress error",MB_OK);
3031 free(msg);
3032 return 1;
3035 /* And finally invoke the application's entry point */
3036 #if APP_TYPE == GUIEXE
3037 retcode=(*((WinMainFunc)appMain))(hApp,hPrevInstance,szCmdLine,iCmdShow);
3038 #else
3039 retcode=(*((MainFunc)appMain))(argc,argv,envp);
3040 #endif
3042 /* Cleanup and done */
3043 FreeLibrary(hApp);
3044 if (hMFC!=NULL) {
3045 FreeLibrary(hMFC);
3047 dlclose(appLibrary);
3048 free(libName);
3050 return retcode;