3 # Copyright 2000 Francois Gouget for CodeWeavers
4 # fgouget@codeweavers.com
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
35 # The following constants define what we do with the case of filenames
38 # Never rename a file to lowercase
42 # Rename all files to lowercase
46 # Rename only files that are all uppercase to lowercase
47 my $OPT_LOWER_UPPERCASE=2;
50 # The following constants define whether to ask questions or not
53 # No (synonym of never)
61 # Skip the questions till the end of this scope
68 # This is the directory in which winemaker will operate.
72 # Make a backup of the files
76 # Defines which files to rename
80 # If we don't find the file referenced by an include, lower it
81 my $opt_lower_include;
84 # If true then winemaker should not attempt to fix the source. This is
85 # useful if the source is known to be already in a suitable form and is
87 my $opt_no_source_fix;
89 # Options for the 'Source' method
92 # Specifies that we have only one target so that all sources relate
93 # to this target. By default this variable is left undefined which
94 # means winemaker should try to find out by itself what the targets
95 # are. If not undefined then this contains the name of the default
96 # target (without the extension).
97 my $opt_single_target;
100 # If '$opt_single_target' has been specified then this is the type of
101 # that target. Otherwise it specifies whether the default target type
102 # is guiexe or cuiexe.
106 # Contains the default set of flags to be used when creating a new target.
110 # If true then winemaker should ask questions to the user as it goes
112 my $opt_is_interactive;
113 my $opt_ask_project_options;
114 my $opt_ask_target_options;
117 # If false then winemaker should not generate any file, i.e.
118 # no makefiles, but also no .spec files, no configure.in, etc.
119 my $opt_no_generated_files;
122 # If true then winemaker should not generate the spec files.
123 # This is useful if winemaker is being used to create a build environment
124 my $opt_no_generated_specs;
127 # Specifies not to print the banner if set.
134 # Target modelization
138 # The description of a target is stored in an array. The constants
139 # below identify what is stored at each index of the array.
142 # This is the name of the target.
146 # Defines the type of target we want to build. See the TT_xxx
151 # Defines the target's enty point, i.e. the function that is called
156 # This is a bitfield containing flags refining the way the target
157 # should be handled. See the TF_xxx constants below
161 # This is a reference to an array containing the list of the
162 # resp. C, C++, RC, other (.h, .hxx, etc.) source files.
166 my $T_SOURCES_MISC=7;
169 # This is a reference to an array containing the list of macro
174 # This is a reference to an array containing the list of directory
175 # names that constitute the include path
176 my $T_INCLUDE_PATH=9;
179 # Same as T_INCLUDE_PATH but for the dll search path
183 # The list of Windows dlls to import
187 # Same as T_INCLUDE_PATH but for the library search path
188 my $T_LIBRARY_PATH=12;
191 # The list of Unix libraries to link with
195 # The list of dependencies between targets
199 # The following constants define the recognized types of target
202 # This is not a real target. This type of target is used to collect
203 # the sources that don't seem to belong to any other target. Thus no
204 # real target is generated for them, we just put the sources of the
205 # fake target in the global source list.
209 # For executables in the windows subsystem
213 # For executables in the console subsystem
217 # For dynamically linked libraries
221 # The following constants further refine how the target should be handled
224 # This target needs a wrapper
228 # This target is a wrapper
232 # This target is an MFC-based target
236 # Initialize a target:
237 # - set the target type to TT_SETTINGS, i.e. no real target will
243 @
$target[$T_TYPE]=$TT_SETTINGS;
244 # leaving $T_INIT undefined
245 @
$target[$T_FLAGS]=$opt_flags;
246 @
$target[$T_SOURCES_C]=[];
247 @
$target[$T_SOURCES_CXX]=[];
248 @
$target[$T_SOURCES_RC]=[];
249 @
$target[$T_SOURCES_MISC]=[];
250 @
$target[$T_DEFINES]=[];
251 @
$target[$T_INCLUDE_PATH]=[];
252 @
$target[$T_DLL_PATH]=[];
253 @
$target[$T_DLLS]=[];
254 @
$target[$T_LIBRARY_PATH]=[];
255 @
$target[$T_LIBRARIES]=[];
256 @
$target[$T_DEPENDS]=[];
262 if ($type == $TT_GUIEXE) {
264 } elsif ($type == $TT_CUIEXE) {
266 } elsif ($type == $TT_DLL) {
275 # Project modelization
279 # First we have the notion of project. A project is described by an
280 # array (since we don't have structs in perl). The constants below
281 # identify what is stored at each index of the array.
284 # This is the path in which this project is located. In other
285 # words, this is the path to the Makefile.
289 # This index contains a reference to an array containing the project-wide
290 # settings. The structure of that arrray is actually identical to that of
291 # a regular target since it can also contain extra sources.
295 # This index contains a reference to an array of targets for this
296 # project. Each target describes how an executable or library is to
297 # be built. For each target this description takes the same form as
298 # that of the project: an array. So this entry is an array of arrays.
302 # Initialize a project:
303 # - set the project's path
304 # - initialize the target list
305 # - create a default target (will be removed later if unnecessary)
311 my $project_settings=[];
312 target_init
($project_settings);
314 @
$project[$P_PATH]=$path;
315 @
$project[$P_SETTINGS]=$project_settings;
316 @
$project[$P_TARGETS]=[];
332 # Contains the list of all projects. This list tells us what are
333 # the subprojects of the main Makefile and where we have to generate
338 # This is the main project, i.e. the one in the "." directory.
339 # It may well be empty in which case the main Makefile will only
340 # call out subprojects.
344 # Contains the defaults for the include path, etc.
345 # We store the defaults as if this were a target except that we only
346 # exploit the defines, include path, library path, library list and misc
351 # If one of the projects requires the MFc then we set this global variable
352 # to true so that configure asks the user to provide a path tothe MFC
364 # Cleans up a name to make it an acceptable Makefile
370 $name =~ tr/a-zA-Z0-9_/_/c;
375 # Returns true is the specified pathname is absolute.
376 # Note: pathnames that start with a variable '$' or
377 # '~' are considered absolute.
382 return ($path =~ /^[\/~\
$]/);
386 # Performs a binary search looking for the specified item
391 my $last=@
{$array}-1;
394 while ($first<=$last) {
395 my $index=int(($first+$last)/2);
396 my $cmp=@
$array[$index] cmp $item;
411 # 'Source'-based Project analysis
416 # Allows the user to specify makefile and target specific options
417 # - target: the structure in which to store the results
418 # - options: the string containing the options
419 sub source_set_options
424 #FIXME: we must deal with escaping of stuff and all
425 foreach $option (split / /,$options) {
426 if (@
$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-D/) {
427 push @
{@
$target[$T_DEFINES]},$option;
428 } elsif (@
$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-I/) {
429 push @
{@
$target[$T_INCLUDE_PATH]},$option;
430 } elsif ($option =~ /^-P/) {
431 push @
{@
$target[$T_DLL_PATH]},"-L$'";
432 } elsif ($option =~ /^-i/) {
433 push @
{@
$target[$T_DLLS]},"$'";
434 } elsif ($option =~ /^-L/) {
435 push @
{@
$target[$T_LIBRARY_PATH]},$option;
436 } elsif ($option =~ /^-l/) {
437 push @
{@
$target[$T_LIBRARIES]},"$'";
438 } elsif (@
$target[$T_TYPE] != $TT_DLL and $option =~ /^--wrap/) {
439 @
$target[$T_FLAGS]|=$TF_WRAP;
440 } elsif (@
$target[$T_TYPE] != $TT_DLL and $option =~ /^--nowrap/) {
441 @
$target[$T_FLAGS]&=~$TF_WRAP;
442 } elsif ($option =~ /^--mfc/) {
443 @
$target[$T_FLAGS]|=$TF_MFC;
444 if (@
$target[$T_TYPE] != $TT_DLL) {
445 @
$target[$T_FLAGS]|=$TF_WRAP;
447 } elsif ($option =~ /^--nomfc/) {
448 @
$target[$T_FLAGS]&=~$TF_MFC;
449 @
$target[$T_FLAGS]&=~($TF_MFC|$TF_WRAP);
451 print STDERR
"error: unknown option \"$option\"\n";
459 # Scans the specified directory to:
460 # - see if we should create a Makefile in this directory. We normally do
461 # so if we find a project file and sources
462 # - get a list of targets for this directory
463 # - get the list of source files
464 sub source_scan_directory
466 # a reference to the parent's project
467 my $parent_project=$_[0];
468 # the full relative path to the current directory, including a
469 # trailing '/', or an empty string if this is the top level directory
471 # the name of this directory, including a trailing '/', or an empty
472 # string if this is the top level directory
474 # if set then no targets will be looked for and the sources will all
475 # end up in the parent_project's 'misc' bucket
478 # reference to the project for this directory. May not be used
480 # list of targets found in the 'current' directory
482 # list of sources found in the current directory
487 # true if this directory contains a Windows project
488 my $has_win_project=0;
489 # If we don't find any executable/library then we might make up targets
490 # from the list of .dsp/.mak files we find since they usually have the
491 # same name as their target.
495 if (defined $opt_single_target or $dirname eq "") {
496 # Either there is a single target and thus a single project,
497 # or we are in the top level directory for which a project
499 $project=$parent_project;
502 project_init
($project,$path);
504 my $project_settings=@
$project[$P_SETTINGS];
506 # First find out what this directory contains:
507 # collect all sources, targets and subdirectories
508 my $directory=get_directory_contents
($path);
509 foreach $dentry (@
$directory) {
510 if ($dentry =~ /^\./) {
513 my $fullentry="$path$dentry";
514 if (-d
"$fullentry") {
515 if ($dentry =~ /^(Release|Debug)/i) {
516 # These directories are often used to store the object files and the
517 # resulting executable/library. They should not contain anything else.
518 my @candidates=grep /\.(exe|dll)$/i, @
{get_directory_contents
("$fullentry")};
519 foreach $candidate (@candidates) {
520 if ($candidate =~ s/\.exe$//i) {
521 $targets{$candidate}=1;
522 } elsif ($candidate =~ s/^(.*)\.dll$/lib$1.so/i) {
523 $targets{$candidate}=1;
526 } elsif ($dentry =~ /^include/i) {
527 # This directory must contain headers we're going to need
528 push @
{@
$project_settings[$T_INCLUDE_PATH]},"-I$dentry";
529 source_scan_directory
($project,"$fullentry/","$dentry/",1);
531 # Recursively scan this directory. Any source file that cannot be
532 # attributed to a project in one of the subdirectories will be
533 # attributed to this project.
534 source_scan_directory
($project,"$fullentry/","$dentry/",$no_target);
536 } elsif (-f
"$fullentry") {
537 if ($dentry =~ s/\.exe$//i) {
539 } elsif ($dentry =~ s/^(.*)\.dll$/lib$1.so/i) {
541 } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.spec\.c$/) {
542 push @sources_c,"$dentry";
543 } elsif ($dentry =~ /\.(cpp|cxx)$/i) {
544 if ($dentry =~ /^stdafx.cpp$/i) {
545 push @sources_misc,"$dentry";
546 @
$project_settings[$T_FLAGS]|=$TF_MFC;
548 push @sources_cxx,"$dentry";
550 } elsif ($dentry =~ /\.rc$/i) {
551 push @sources_rc,"$dentry";
552 } elsif ($dentry =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
553 push @sources_misc,"$dentry";
554 if ($dentry =~ /^stdafx.h$/i) {
555 @
$project_settings[$T_FLAGS]|=$TF_MFC;
557 } elsif ($dentry =~ /\.dsp$/i) {
558 push @dsp_files,"$dentry";
560 } elsif ($dentry =~ /\.mak$/i) {
561 push @mak_files,"$dentry";
563 } elsif ($dentry =~ /^makefile/i) {
570 # If we have a single target then all we have to do is assign
571 # all the sources to it and we're done
572 # FIXME: does this play well with the --interactive mode?
573 if ($opt_single_target) {
574 my $target=@
{@
$project[$P_TARGETS]}[0];
575 push @
{@
$target[$T_SOURCES_C]},map "$path$_",@sources_c;
576 push @
{@
$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx;
577 push @
{@
$target[$T_SOURCES_RC]},map "$path$_",@sources_rc;
578 push @
{@
$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc;
582 my $parent_settings=@
$parent_project[$P_SETTINGS];
583 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_c;
584 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_cxx;
585 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_rc;
586 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
587 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@
{@
$project_settings[$T_SOURCES_MISC]};
591 my $source_count=@sources_c+@sources_cxx+@sources_rc+
592 @
{@
$project_settings[$T_SOURCES_C]}+
593 @
{@
$project_settings[$T_SOURCES_CXX]}+
594 @
{@
$project_settings[$T_SOURCES_RC]};
595 if ($source_count == 0) {
596 # A project without real sources is not a project, get out!
597 if ($project!=$parent_project) {
598 my $parent_settings=@
$parent_project[$P_SETTINGS];
599 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
600 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@
{@
$project_settings[$T_SOURCES_MISC]};
604 #print "targets=",%targets,"\n";
605 #print "target_count=$target_count\n";
606 #print "has_win_project=$has_win_project\n";
607 #print "dirname=$dirname\n";
610 if (($has_win_project != 0) or ($dirname eq "")) {
611 # Deal with cases where we could not find any executable/library, and
612 # thus have no target, although we did find some sort of windows project.
613 $target_count=keys %targets;
614 if ($target_count == 0) {
615 # Try to come up with a target list based on .dsp/.mak files
617 if (@dsp_files > 0) {
618 $prj_list=\
@dsp_files;
620 $prj_list=\
@mak_files;
622 foreach $filename (@
$prj_list) {
623 $filename =~ s/\.(dsp|mak)$//i;
624 if ($opt_target_type == $TT_DLL) {
625 $filename = "lib$filename.so";
627 $targets{$filename}=1;
629 $target_count=keys %targets;
630 if ($target_count == 0) {
631 # Still nothing, try the name of the directory
633 if ($dirname eq "") {
634 # Bad luck, this is the top level directory!
635 $name=(split /\//, cwd
)[-1];
638 # Remove the trailing '/'. Also eliminate whatever is after the last
639 # '.' as it is likely to be meaningless (.orig, .new, ...)
640 $name =~ s
+(/|\
.[^.]*)$++;
641 if ($name eq "src") {
642 # 'src' is probably a subdirectory of the real project directory.
643 # Try again with the parent (if any).
645 if ($parent =~ s
+([^/]*)/[^/]*/$+$1+) {
648 $name=(split /\//, cwd
)[-1];
652 $name =~ s
+(/|\
.[^.]*)$++;
653 if ($opt_target_type == $TT_DLL) {
654 $name = "lib$name.so";
660 # Ask confirmation to the user if he wishes so
661 if ($opt_is_interactive == $OPT_ASK_YES) {
662 my $target_list=join " ",keys %targets;
663 print "\n*** In ",($path?
$path:"./"),"\n";
664 print "* winemaker found the following list of (potential) targets\n";
665 print "* $target_list\n";
666 print "* Type enter to use it as is, your own comma-separated list of\n";
667 print "* targets, 'none' to assign the source files to a parent directory,\n";
668 print "* or 'ignore' to ignore everything in this directory tree.\n";
669 print "* Target list:\n";
670 $target_list=<STDIN
>;
672 if ($target_list eq "") {
673 # Keep the target list as is, i.e. do nothing
674 } elsif ($target_list eq "none") {
675 # Empty the target list
677 } elsif ($target_list eq "ignore") {
678 # Ignore this subtree altogether
682 foreach $target (split /,/,$target_list) {
685 # Also accept .exe and .dll as a courtesy
686 $target =~ s
+(.*)\
.dll
$+lib
$1.so
+;
687 $target =~ s
+\
.exe
$++;
694 # If we have no project at this level, then transfer all
695 # the sources to the parent project
696 $target_count=keys %targets;
697 if ($target_count == 0) {
698 if ($project!=$parent_project) {
699 my $parent_settings=@
$parent_project[$P_SETTINGS];
700 push @
{@
$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c;
701 push @
{@
$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx;
702 push @
{@
$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc;
703 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
704 push @
{@
$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@
{@
$project_settings[$T_SOURCES_MISC]};
709 # Otherwise add this project to the project list, except for
710 # the main project which is already in the list.
711 if ($dirname ne "") {
712 push @projects,$project;
715 # Ask for project-wide options
716 if ($opt_ask_project_options == $OPT_ASK_YES) {
718 if ((@
$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
721 if ((@
$project_settings[$T_FLAGS] & $TF_WRAP)!=0) {
722 if ($flag_desc ne "") {
725 $flag_desc.="wrapped";
727 print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc/--wrap),\n";
728 if (defined $flag_desc) {
729 print "* (currently $flag_desc)\n";
731 print "* or 'skip' to skip the target specific options,\n";
732 print "* or 'never' to not be asked this question again:\n";
736 if ($options eq "skip") {
737 $opt_ask_target_options=$OPT_ASK_SKIP;
739 } elsif ($options eq "never") {
740 $opt_ask_project_options=$OPT_ASK_NO;
742 } elsif (source_set_options
($project_settings,$options)) {
745 print "Please re-enter the options:\n";
749 # - Create the targets
750 # - Check if we have both libraries and programs
751 # - Match each target with source files (sort in reverse
752 # alphabetical order to get the longest matches first)
754 my @local_depends=();
756 foreach $target_name (sort { $b cmp $a } keys %targets) {
757 # Create the target...
760 target_init
($target);
761 @
$target[$T_NAME]=$target_name;
762 @
$target[$T_FLAGS]|=@
$project_settings[$T_FLAGS];
763 if ($target_name =~ /^lib(.*)\.so$/) {
764 @
$target[$T_TYPE]=$TT_DLL;
765 @
$target[$T_INIT]=get_default_init
($TT_DLL);
766 @
$target[$T_FLAGS]&=~$TF_WRAP;
768 push @local_depends,$target_name;
769 push @local_dlls,$basename;
771 @
$target[$T_TYPE]=$opt_target_type;
772 @
$target[$T_INIT]=get_default_init
($opt_target_type);
773 $basename=$target_name;
774 push @exe_list,$target;
776 # This is the default link list of Visual Studio, except odbccp32
777 # which we don't have in Wine. Also I add ntdll which seems
778 # necessary for Winelib.
779 my @std_dlls=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll ntdll.dll odbc32.dll ole32.dll oleaut32.dll shell32.dll user32.dll winspool.drv);
780 @
$target[$T_DLLS]=\
@std_dlls;
781 push @
{@
$project[$P_TARGETS]},$target;
783 # Ask for target-specific options
784 if ($opt_ask_target_options == $OPT_ASK_YES) {
786 if ((@
$target[$T_FLAGS] & $TF_MFC)!=0) {
789 if ((@
$target[$T_FLAGS] & $TF_WRAP)!=0) {
790 if ($flag_desc ne "") {
795 $flag_desc.="wrapped";
797 if ($flag_desc ne "") {
800 print "* Specify any link option (-P/-i/-L/-l/--mfc/--wrap) specific to the target\n";
801 print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n";
805 if ($options eq "never") {
806 $opt_ask_target_options=$OPT_ASK_NO;
808 } elsif (source_set_options
($target,$options)) {
811 print "Please re-enter the options:\n";
814 if (@
$target[$T_FLAGS] & $TF_MFC) {
815 @
$project_settings[$T_FLAGS]|=$TF_MFC;
816 push @
{@
$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)";
817 push @
{@
$target[$T_DLLS]},"mfc.dll";
818 # FIXME: Link with the MFC in the Unix sense, until we
819 # start exporting the functions properly.
820 push @
{@
$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
821 push @
{@
$target[$T_LIBRARIES]},"mfc";
825 if ($target_count == 1) {
826 push @
{@
$target[$T_SOURCES_C]},@
{@
$project_settings[$T_SOURCES_C]},@sources_c;
827 @
$project_settings[$T_SOURCES_C]=[];
830 push @
{@
$target[$T_SOURCES_CXX]},@
{@
$project_settings[$T_SOURCES_CXX]},@sources_cxx;
831 @
$project_settings[$T_SOURCES_CXX]=[];
834 push @
{@
$target[$T_SOURCES_RC]},@
{@
$project_settings[$T_SOURCES_RC]},@sources_rc;
835 @
$project_settings[$T_SOURCES_RC]=[];
838 push @
{@
$target[$T_SOURCES_MISC]},@
{@
$project_settings[$T_SOURCES_MISC]},@sources_misc;
839 # No need for sorting these sources
840 @
$project_settings[$T_SOURCES_MISC]=[];
843 foreach $source (@sources_c) {
844 if ($source =~ /^$basename/i) {
845 push @
{@
$target[$T_SOURCES_C]},$source;
849 foreach $source (@sources_cxx) {
850 if ($source =~ /^$basename/i) {
851 push @
{@
$target[$T_SOURCES_CXX]},$source;
855 foreach $source (@sources_rc) {
856 if ($source =~ /^$basename/i) {
857 push @
{@
$target[$T_SOURCES_RC]},$source;
861 foreach $source (@sources_misc) {
862 if ($source =~ /^$basename/i) {
863 push @
{@
$target[$T_SOURCES_MISC]},$source;
868 @
$target[$T_SOURCES_C]=[sort @
{@
$target[$T_SOURCES_C]}];
869 @
$target[$T_SOURCES_CXX]=[sort @
{@
$target[$T_SOURCES_CXX]}];
870 @
$target[$T_SOURCES_RC]=[sort @
{@
$target[$T_SOURCES_RC]}];
871 @
$target[$T_SOURCES_MISC]=[sort @
{@
$target[$T_SOURCES_MISC]}];
873 if ($opt_ask_target_options == $OPT_ASK_SKIP) {
874 $opt_ask_target_options=$OPT_ASK_YES;
877 if (@
$project_settings[$T_FLAGS] & $TF_MFC) {
878 push @
{@
$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
880 # The sources that did not match, if any, go to the extra
881 # source list of the project settings
882 foreach $source (@sources_c) {
884 push @
{@
$project_settings[$T_SOURCES_C]},$source;
887 @
$project_settings[$T_SOURCES_C]=[sort @
{@
$project_settings[$T_SOURCES_C]}];
888 foreach $source (@sources_cxx) {
890 push @
{@
$project_settings[$T_SOURCES_CXX]},$source;
893 @
$project_settings[$T_SOURCES_CXX]=[sort @
{@
$project_settings[$T_SOURCES_CXX]}];
894 foreach $source (@sources_rc) {
896 push @
{@
$project_settings[$T_SOURCES_RC]},$source;
899 @
$project_settings[$T_SOURCES_RC]=[sort @
{@
$project_settings[$T_SOURCES_RC]}];
900 foreach $source (@sources_misc) {
902 push @
{@
$project_settings[$T_SOURCES_MISC]},$source;
905 @
$project_settings[$T_SOURCES_MISC]=[sort @
{@
$project_settings[$T_SOURCES_MISC]}];
907 # Finally if we are building both libraries and programs in
908 # this directory, then the programs should be linked with all
910 if (@local_dlls > 0 and @exe_list > 0) {
911 foreach $target (@exe_list) {
912 push @
{@
$target[$T_DLL_PATH]},"-L.";
913 push @
{@
$target[$T_DLLS]},map { "$_.dll" } @local_dlls;
914 # Also link in the Unix sense since none of the functions
916 push @
{@
$target[$T_LIBRARY_PATH]},"-L.";
917 push @
{@
$target[$T_LIBRARIES]},@local_dlls;
918 push @
{@
$target[$T_DEPENDS]},@local_depends;
924 # Scan the source directories in search of things to build
927 # If there's a single target then this is going to be the default target
928 if (defined $opt_single_target) {
929 # Create the main target
931 target_init
($main_target);
932 if ($opt_target_type == $TT_DLL) {
933 @
$main_target[$T_NAME]="lib$opt_single_target.so";
935 @
$main_target[$T_NAME]="$opt_single_target";
937 @
$main_target[$T_TYPE]=$opt_target_type;
940 push @
{$main_project[$P_TARGETS]},$main_target;
943 # The main directory is always going to be there
944 push @projects,\
@main_project;
946 # Now scan the directory tree looking for source files and, maybe, targets
947 print "Scanning the source directories...\n";
948 source_scan_directory
(\
@main_project,"","",0);
950 @projects=sort { @
$a[$P_PATH] cmp @
$b[$P_PATH] } @projects;
957 # 'vc.dsp'-based Project analysis
970 # Creating the wrapper targets
974 sub postprocess_targets
976 foreach $project (@projects) {
977 foreach $target (@
{@
$project[$P_TARGETS]}) {
978 if ((@
$target[$T_FLAGS] & $TF_WRAP) != 0) {
980 target_init
($wrapper);
981 @
$wrapper[$T_NAME]=@
$target[$T_NAME];
982 @
$wrapper[$T_TYPE]=@
$target[$T_TYPE];
983 @
$wrapper[$T_INIT]=get_default_init
(@
$target[$T_TYPE]);
984 @
$wrapper[$T_FLAGS]=$TF_WRAPPER | (@
$target[$T_FLAGS] & $TF_MFC);
985 @
$wrapper[$T_DLLS]=[ "kernel32.dll", "ntdll.dll", "user32.dll" ];
986 push @
{@
$wrapper[$T_SOURCES_C]},"@$wrapper[$T_NAME]_wrapper.c";
988 my $index=bsearch
(@
$target[$T_SOURCES_C],"@$wrapper[$T_NAME]_wrapper.c");
989 if (defined $index) {
990 splice(@
{@
$target[$T_SOURCES_C]},$index,1);
992 @
$target[$T_NAME]="lib@$target[$T_NAME].so";
993 @
$target[$T_TYPE]=$TT_DLL;
995 push @
{@
$project[$P_TARGETS]},$wrapper;
997 if ((@
$target[$T_FLAGS] & $TF_MFC) != 0) {
998 @
{@
$project[$P_SETTINGS]}[$T_FLAGS]|=$TF_MFC;
1014 # Performs a directory traversal and renames the files so that:
1015 # - they have the case desired by the user
1016 # - their extension is of the appropriate case
1017 # - they don't contain annoying characters like ' ', '$', '#', ...
1018 sub fix_file_and_directory_names
1022 if (opendir(DIRECTORY
, "$dirname")) {
1023 foreach $dentry (readdir DIRECTORY
) {
1024 if ($dentry =~ /^\./ or $dentry eq "CVS") {
1027 # Set $warn to 1 if the user should be warned of the renaming
1030 # autoconf and make don't support these characters well
1031 my $new_name=$dentry;
1032 $new_name =~ s/[ \$]/_/g;
1034 # Only all lowercase extensions are supported (because of the
1035 # transformations ':.c=.o') .
1036 if (-f
"$dirname/$new_name") {
1037 if ($new_name =~ /\.C$/) {
1038 $new_name =~ s/\.C$/.c/;
1040 if ($new_name =~ /\.cpp$/i) {
1041 $new_name =~ s/\.cpp$/.cpp/i;
1043 if ($new_name =~ s/\.cxx$/.cpp/i) {
1046 if ($new_name =~ /\.rc$/i) {
1047 $new_name =~ s/\.rc$/.rc/i;
1049 # And this last one is to avoid confusion then running make
1050 if ($new_name =~ s/^makefile$/makefile.win/) {
1055 # Adjust the case to the user's preferences
1056 if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or
1057 ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/)
1059 $new_name=lc $new_name;
1062 # And finally, perform the renaming
1063 if ($new_name ne $dentry) {
1065 print STDERR
"warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n";
1067 if (!rename("$dirname/$dentry","$dirname/$new_name")) {
1068 print STDERR
"error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n";
1069 print STDERR
" $!\n";
1073 if (-d
"$dirname/$new_name") {
1074 fix_file_and_directory_names
("$dirname/$new_name");
1077 closedir(DIRECTORY
);
1090 # This maps a directory name to a reference to an array listing
1091 # its contents (files and directories)
1095 # Retrieves the contents of the specified directory.
1096 # We either get it from the directories hashtable which acts as a
1097 # cache, or use opendir, readdir, closedir and store the result
1099 sub get_directory_contents
1104 #print "getting the contents of $dirname\n";
1106 # check for a cached version
1108 if ($dirname eq "") {
1111 $directory=$directories{$dirname};
1112 if (defined $directory) {
1113 #print "->@$directory\n";
1117 # Read this directory
1118 if (opendir(DIRECTORY
, "$dirname")) {
1119 my @files=readdir DIRECTORY
;
1120 closedir(DIRECTORY
);
1123 # Return an empty list
1124 #print "error: cannot open $dirname\n";
1128 #print "->@$directory\n";
1129 $directories{$dirname}=$directory;
1134 # Try to find a file for the specified filename. The attempt is
1135 # case-insensitive which is why it's not trivial. If a match is
1136 # found then we return the pathname with the correct case.
1143 if ($dirname eq "" or $dirname eq ".") {
1145 } elsif ($dirname =~ m
+^[^/]+) {
1146 $dirname=cwd
. "/" . $dirname;
1148 if ($dirname !~ m
+/$+) {
1152 foreach $component (@
$path) {
1153 #print " looking for $component in \"$dirname\"\n";
1154 if ($component eq ".") {
1157 } elsif ($component eq "..") {
1159 $dirname=dirname
($dirname) . "/";
1162 # The file/directory may have been renamed before. Also try to
1163 # match the renamed file.
1164 my $renamed=$component;
1165 $renamed =~ s/[ \$]/_/g;
1166 if ($renamed eq $component) {
1170 my $directory=get_directory_contents
$dirname;
1172 foreach $dentry (@
$directory) {
1173 if ($dentry =~ /^$component$/i or
1174 (defined $renamed and $dentry =~ /^$renamed$/i)
1176 $dirname.="$dentry/";
1177 $real_path.="$dentry/";
1182 if (!defined $found) {
1184 #print " could not find $component in $dirname\n";
1189 $real_path=~ s
+/$++;
1190 #print " -> found $real_path\n";
1195 # Performs a case-insensitive search for the specified file in the
1197 # $line is the line number that should be referenced when an error occurs
1198 # $filename is the file we are looking for
1199 # $dirname is the directory of the file containing the '#include' directive
1200 # if '"' was used, it is an empty string otherwise
1201 # $project and $target specify part of the include path
1202 sub get_real_include_name
1210 if ($filename =~ /^([a-zA-Z]:)?[\/]/ or $filename =~ /^[a
-zA
-Z
]:[\
/]?/) {
1211 # This is not a relative path, we cannot make any check
1212 my $warning="path:$filename";
1213 if (!defined $warnings{$warning}) {
1214 $warnings{$warning}="1";
1215 print STDERR
"warning: cannot check the case of absolute pathnames:\n";
1216 print STDERR
"$line: $filename\n";
1219 # Here's how we proceed:
1220 # - split the filename we look for into its components
1221 # - then for each directory in the include path
1222 # - trace the directory components starting from that directory
1223 # - if we fail to find a match at any point then continue with
1224 # the next directory in the include path
1225 # - otherwise, rejoice, our quest is over.
1226 my @file_components=split /[\/\\]+/, $filename;
1227 #print " Searching for $filename from @$project[$P_PATH]\n";
1230 if ($dirname ne "") {
1231 # This is an 'include ""' -> look in dirname first.
1232 #print " in $dirname (include \"\")\n";
1233 $real_filename=search_from
($dirname,\
@file_components);
1234 if (defined $real_filename) {
1235 return $real_filename;
1238 my $project_settings=@
$project[$P_SETTINGS];
1239 foreach $include (@
{@
$target[$T_INCLUDE_PATH]}, @
{@
$project_settings[$T_INCLUDE_PATH]}) {
1240 my $dirname=$include;
1242 if (!is_absolute
($dirname)) {
1243 $dirname="@$project[$P_PATH]$dirname";
1245 $dirname=~ s
+^\
$\
(TOPSRCDIR\
)/++;
1246 $dirname=~ s
+^\
$\
(SRCDIR\
)/+@
$project[$P_PATH]+;
1248 #print " in $dirname\n";
1249 $real_filename=search_from
("$dirname",\
@file_components);
1250 if (defined $real_filename) {
1251 return $real_filename;
1254 my $dotdotpath=@
$project[$P_PATH];
1255 $dotdotpath =~ s/[^\/]+/../g
;
1256 foreach $include (@
{$global_settings[$T_INCLUDE_PATH]}) {
1257 my $dirname=$include;
1259 $dirname=~ s
+^\
$\
(TOPSRCDIR\
)\
/++;
1260 $dirname=~ s
+^\
$\
(SRCDIR\
)\
/+@
$project[$P_PATH]+;
1261 #print " in $dirname (global setting)\n";
1262 $real_filename=search_from
("$dirname",\
@file_components);
1263 if (defined $real_filename) {
1264 return $real_filename;
1268 $filename =~ s
+\\\\+/+g
; # in include ""
1269 $filename =~ s
+\\+/+g
; # in include <> !
1270 if ($opt_lower_include) {
1271 return lc "$filename";
1282 if ($size =~ /^(1|2|4|8)$/) {
1283 print FILEO
"$indent#include <pshpack$size.h>$trailer";
1285 print FILEO
"$indent/* winemaker:warning: Unknown size \"$size\". Defaulting to 4 */\n";
1286 print FILEO
"$indent#include <pshpack4.h>$trailer";
1291 # 'Parses' a source file and fixes constructs that would not work with
1292 # Winelib. The parsing is rather simple and not all non-portable features
1293 # are corrected. The most important feature that is corrected is the case
1294 # and path separator of '#include' directives. This requires that each
1295 # source file be associated to a project & target so that the proper
1296 # include path is used.
1297 # Also note that the include path is relative to the directory in which the
1298 # compiler is run, i.e. that of the project, not to that of the file.
1304 $filename="@$project[$P_PATH]$filename";
1305 if (! -e
$filename) {
1309 my $is_rc=($filename =~ /\.(rc2?|dlg)$/i);
1310 my $dirname=dirname
($filename);
1312 if (defined $target and (@
$target[$T_FLAGS] & $TF_MFC)) {
1316 print " $filename\n";
1317 #FIXME:assuming that because there is a .bak file, this is what we want is
1318 #probably flawed. Or is it???
1319 if (! -e
"$filename.bak") {
1320 if (!copy
("$filename","$filename.bak")) {
1321 print STDERR
"error: unable to make a backup of $filename:\n";
1322 print STDERR
" $!\n";
1326 if (!open(FILEI
,"$filename.bak")) {
1327 print STDERR
"error: unable to open $filename.bak for reading:\n";
1328 print STDERR
" $!\n";
1331 if (!open(FILEO
,">$filename")) {
1332 print STDERR
"error: unable to open $filename for writing:\n";
1333 print STDERR
" $!\n";
1338 my $rc_block_depth=0;
1339 my $rc_textinclude_state=0;
1342 # Remove any trailing CtrlZ, which isn't strictly in the file
1350 # Make sure all files are '\n' terminated
1353 if ($is_rc and !$is_mfc and /^(\s*)(\#\s*include\s*)\"afxres\.h\"/) {
1354 # VC6 automatically includes 'afxres.h', an MFC specific header, in
1355 # the RC files it generates (even in non-MFC projects). So we replace
1356 # it with 'winres.h' its very close standard cousin so that non MFC
1357 # projects can compile in Wine without the MFC sources.
1358 my $warning="mfc:afxres.h";
1359 if (!defined $warnings{$warning}) {
1360 $warnings{$warning}="1";
1361 print STDERR
"warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winres.h'\n";
1362 print STDERR
"warning: the above warning is issued only once\n";
1364 print FILEO
"$1/* winemaker: $2\"afxres.h\" */\n";
1365 print FILEO
"$1/* winemaker:warning: 'afxres.h' is an MFC specific header. Replacing it with 'winres.h' */\n";
1366 print FILEO
"$1$2\"winres.h\"$'";
1369 } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) {
1370 my $from_file=($2 eq "<"?
"":$dirname);
1371 my $real_include_name=get_real_include_name
($line,$3,$from_file,$project,$target);
1372 print FILEO
"$1$2$real_include_name$4$'";
1373 $modified|=($real_include_name ne $3);
1375 } elsif (s/^(\s*)(\#\s*pragma\s+pack\s*\(\s*)//) {
1376 # Pragma pack handling
1378 # pack_stack is an array of references describing the stack of
1379 # pack directives currently in effect. Each directive if described
1380 # by a reference to an array containing:
1381 # - "push" for pack(push,...) directives, "" otherwise
1382 # - the directive's identifier at index 1
1383 # - the directive's alignement value at index 2
1385 # Don't believe a word of what the documentation says: it's all wrong.
1386 # The code below is based on the actual behavior of Visual C/C++ 6.
1391 # Pushes the default stack alignment
1392 print FILEO
"$pack_indent/* winemaker: $pack_header$1 */\n";
1393 print FILEO
"$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1394 print_pack
($pack_indent,4,$');
1395 push @pack_stack, [ "", "", 4 ];
1397 } elsif (/^(pop\s*(,\s*\d+\s*)?\))/) {
1399 # pragma pack(pop,n)
1400 # Goes up the stack until it finds a pack(push,...), and pops it
1401 # Ignores any pack(n) entry
1402 # Issues a warning if the pack is of the form pack(push,label)
1403 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1404 my $pack_comment=$';
1405 $pack_comment =~ s/^\s*//;
1406 if ($pack_comment ne "") {
1407 print FILEO
"$pack_indent$pack_comment";
1410 my $alignment=pop @pack_stack;
1411 if (!defined $alignment) {
1412 print FILEO
"$pack_indent/* winemaker:warning: No pack(push,...) found. All the stack has been popped */\n";
1415 if (@
$alignment[1]) {
1416 print FILEO
"$pack_indent/* winemaker:warning: Anonymous pop of pack(push,@$alignment[1]) (@$alignment[2]) */\n";
1418 print FILEO
"$pack_indent#include <poppack.h>\n";
1419 if (@
$alignment[0]) {
1424 } elsif (/^(pop\s*,\s*(\w+)\s*(,\s*\d+\s*)?\))/) {
1425 # pragma pack(pop,label[,n])
1426 # Goes up the stack until finding a pack(push,...) and pops it.
1427 # 'n', if specified, is ignored.
1428 # Ignores any pack(n) entry
1429 # Issues a warning if the label of the pack does not match,
1430 # or if it is in fact a pack(push,n)
1432 print FILEO
"$pack_indent/* winemaker: $pack_header$1 */\n";
1433 my $pack_comment=$';
1434 $pack_comment =~ s/^\s*//;
1435 if ($pack_comment ne "") {
1436 print FILEO "$pack_indent$pack_comment";
1439 my $alignment=pop @pack_stack;
1440 if (!defined $alignment) {
1441 print FILEO "$pack_indent/* winemaker:warning: No pack(push,$label) found. All the stack has been popped */\n";
1444 if (@$alignment[1] and @$alignment[1] ne $label) {
1445 print FILEO "$pack_indent/* winemaker:warning: Push/pop mismatch: \"@$alignment[1]\" (@$alignment[2]) != \"$label\" */\n";
1447 print FILEO "$pack_indent#include <poppack.h>\n";
1448 if (@$alignment[0]) {
1453 } elsif (/^(push\s*\))/) {
1455 # Push the current alignment
1456 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1457 if (@pack_stack > 0) {
1458 my $alignment=$pack_stack[$#pack_stack];
1459 print_pack($pack_indent,@$alignment[2],$');
1460 push @pack_stack, [ "push", "", @
$alignment[2] ];
1462 print FILEO
"$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1463 print_pack
($pack_indent,4,$');
1464 push @pack_stack, [ "push", "", 4 ];
1467 } elsif (/^((push\s*,\s*)?(\d+)\s*\))/) {
1468 # pragma pack([push,]n)
1469 # Push new alignment n
1470 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1471 print_pack($pack_indent,$3,"$'");
1472 push @pack_stack, [ ($2 ? "push" : ""), "", $3 ];
1474 } elsif (/^((\w+)\s*\))/) {
1475 # pragma pack(label)
1476 # label must in fact be a macro that resolves to an integer
1477 # Then behaves like 'pragma pack(n)'
1478 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1479 print FILEO "$pack_indent/* winemaker:warning: Assuming $2 == 4 */\n";
1480 print_pack($pack_indent,4,$');
1481 push @pack_stack, [ "", "", 4 ];
1483 } elsif (/^(push\s*,\s*(\w+)\s*(,\s*(\d+)\s*)?\))/) {
1484 # pragma pack(push,label[,n])
1485 # Pushes a new label on the stack. It is possible to push the same
1486 # label multiple times. If 'n' is omitted then the alignment is
1487 # unchanged. Otherwise it becomes 'n'.
1488 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1492 } elsif (@pack_stack > 0) {
1493 my $alignment=$pack_stack[$#pack_stack];
1494 $size=@$alignment[2];
1496 print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1499 print_pack($pack_indent,$size,$');
1500 push @pack_stack, [ "push", $2, $size ];
1503 # pragma pack(??? -> What's that?
1504 print FILEO "$pack_indent/* winemaker:warning: Unknown type of pragma pack directive */\n";
1505 print FILEO "$pack_indent$pack_header$_";
1511 if ($rc_block_depth == 0 and /^(\w+\s+(BITMAP|CURSOR|FONT|FONTDIR|ICON|MESSAGETABLE|TEXT|RTF)\s+((DISCARDABLE|FIXED|IMPURE|LOADONCALL|MOVEABLE|PRELOAD|PURE)\s+)*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1512 my $from_file=($5 eq "<"?"":$dirname);
1513 my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target);
1514 print FILEO "$1$5$real_include_name$7$'";
1515 $modified|=($real_include_name ne $6);
1517 } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1518 my $from_file=($2 eq "<"?"":$dirname);
1519 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1520 print FILEO "$1$2$real_include_name$4$'";
1521 $modified|=($real_include_name ne $3);
1523 } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) {
1524 $rc_textinclude_state=1;
1527 } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) {
1528 print FILEO "$1winres.h
$2$'";
1531 } elsif (/^\s*BEGIN(\W.*)?$/) {
1532 $rc_textinclude_state|=2;
1536 } elsif (/^\s*END(\W.*)?$/) {
1537 $rc_textinclude_state=0;
1538 if ($rc_block_depth>0) {
1554 if ($opt_backup == 0 or $modified == 0) {
1555 if (!unlink("$filename.bak")) {
1556 print STDERR "error: unable to delete $filename.bak:\n";
1557 print STDERR " $!\n";
1563 # Analyzes each source file in turn to find and correct issues
1564 # that would cause it not to compile.
1567 print "Fixing the source files...\n";
1568 foreach $project (@projects) {
1569 foreach $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) {
1570 if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1573 foreach $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) {
1574 fix_file($source,$project,$target);
1589 # Generates a target's
.spec file
1590 sub generate_spec_file
1592 if ($opt_no_generated_specs) {
1597 my $project_settings=$_[2];
1599 my $basename=@
$target[$T_NAME];
1600 $basename =~ s
+\
.so
$++;
1601 if (@
$target[$T_FLAGS] & $TF_WRAP) {
1602 $basename =~ s
+^lib
++;
1603 } elsif (@
$target[$T_FLAGS] & $TF_WRAPPER) {
1604 $basename.="_wrapper";
1607 if (!open(FILEO
,">$path$basename.spec")) {
1608 print STDERR
"error: could not open \"$path$basename.spec\" for writing\n";
1609 print STDERR
" $!\n";
1613 my $module=$basename;
1614 $module =~ s
+^lib
++;
1615 $module=canonize
($module);
1616 print FILEO
"name $module\n";
1617 print FILEO
"type win32\n";
1618 if (@
$target[$T_TYPE] == $TT_GUIEXE) {
1619 print FILEO
"mode guiexe\n";
1620 } elsif (@
$target[$T_TYPE] == $TT_CUIEXE) {
1621 print FILEO
"mode cuiexe\n";
1623 print FILEO
"mode dll\n";
1625 if (defined @
$target[$T_INIT] and ((@
$target[$T_FLAGS] & $TF_WRAP) == 0)) {
1626 print FILEO
"init @$target[$T_INIT]\n";
1628 if (@
{@
$target[$T_SOURCES_RC]} > 0) {
1629 if (@
{@
$target[$T_SOURCES_RC]} > 1) {
1630 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";
1632 my $rcname=@
{@
$target[$T_SOURCES_RC]}[0];
1633 $rcname =~ s
+\
.rc
$++i
;
1634 $rcname =~ s
+([^/\w
])+\\$1+g
;
1635 print FILEO
"rsrc $rcname.res\n";
1639 foreach $dll (@
{$global_settings[$T_DLLS]}) {
1640 if (!defined $dlls{$dll}) {
1641 print FILEO
"import $dll\n";
1645 if (defined $project_settings) {
1646 foreach $dll (@
{@
$project_settings[$T_DLLS]}) {
1647 if (!defined $dlls{$dll}) {
1648 print FILEO
"import $dll\n";
1653 foreach $dll (@
{@
$target[$T_DLLS]}) {
1654 if (!defined $dlls{$dll}) {
1655 print FILEO
"import $dll\n";
1660 # Don't forget to export the 'Main' function for wrapped executables,
1661 # except for MFC ones!
1662 if (@
$target[$T_FLAGS] == $TF_WRAP) {
1663 if (@
$target[$T_TYPE] == $TT_GUIEXE) {
1664 print FILEO
"\n@ stdcall @$target[$T_INIT](long long ptr long) @$target[$T_INIT]\n";
1665 } elsif (@
$target[$T_TYPE] == $TT_CUIEXE) {
1666 print FILEO
"\n@ stdcall @$target[$T_INIT](long ptr ptr) @$target[$T_INIT]\n";
1668 print FILEO
"\n@ stdcall @$target[$T_INIT](ptr long ptr) @$target[$T_INIT]\n";
1676 # Generates a target's wrapper file
1677 sub generate_wrapper_file
1682 if (!defined $templates{"wrapper.c"}) {
1683 print STDERR
"winemaker: internal error: No template called 'wrapper.c'\n";
1687 if (!open(FILEO
,">$path@$target[$T_NAME]_wrapper.c")) {
1688 print STDERR
"error: unable to open \"$path$basename.c\" for writing:\n";
1689 print STDERR
" $!\n";
1692 my $app_name="\"@$target[$T_NAME]\"";
1693 my $app_type=(@
$target[$T_TYPE]==$TT_GUIEXE?
"GUIEXE":"CUIEXE");
1694 my $app_init=(@
$target[$T_TYPE]==$TT_GUIEXE?
"\"WinMain\"":"\"main\"");
1695 my $app_mfc=(@
$target[$T_FLAGS] & $TF_MFC?
"\"mfc\"":NULL
);
1696 foreach $line (@
{$templates{"wrapper.c"}}) {
1698 $l =~ s/\#\#WINEMAKER_APP_NAME\#\#/$app_name/;
1699 $l =~ s/\#\#WINEMAKER_APP_TYPE\#\#/$app_type/;
1700 $l =~ s/\#\#WINEMAKER_APP_INIT\#\#/$app_init/;
1701 $l =~ s/\#\#WINEMAKER_APP_MFC\#\#/$app_mfc/;
1708 # A convenience function to generate all the lists (defines,
1709 # C sources, C++ source, etc.) in the Makefile
1719 printf FILEO
"%-22s=",$name;
1721 if (defined $list) {
1722 foreach $item (@
$list) {
1724 if (defined $data) {
1725 $value=&$data($item);
1731 print FILEO
" $value";
1734 print FILEO
" \\\n\t\t\t$value";
1745 # Generates a project's Makefile.in and all the target files
1746 sub generate_project_files
1749 my $project_settings=@
$project[$P_SETTINGS];
1753 # Then sort the targets and separate the libraries from the programs
1754 foreach $target (sort { @
$a[$T_NAME] cmp @
$b[$T_NAME] } @
{@
$project[$P_TARGETS]}) {
1755 if (@
$target[$T_TYPE] == $TT_DLL) {
1756 push @dll_list,$target;
1758 push @exe_list,$target;
1761 @
$project[$P_TARGETS]=[];
1762 push @
{@
$project[$P_TARGETS]}, @dll_list;
1763 push @
{@
$project[$P_TARGETS]}, @exe_list;
1765 if (!open(FILEO
,">@$project[$P_PATH]Makefile.in")) {
1766 print STDERR
"error: could not open \"@$project[$P_PATH]/Makefile.in\" for writing\n";
1767 print STDERR
" $!\n";
1771 print FILEO
"### Generated by Winemaker\n";
1774 print FILEO
"### Generic autoconf variables\n\n";
1775 generate_list
("TOPSRCDIR",1,[ "\@top_srcdir\@" ]);
1776 generate_list
("TOPOBJDIR",1,[ "." ]);
1777 generate_list
("SRCDIR",1,[ "\@srcdir\@" ]);
1778 generate_list
("VPATH",1,[ "\@srcdir\@" ]);
1780 if (@
$project[$P_PATH] eq "") {
1781 # This is the main project. It is also responsible for recursively
1782 # calling the other projects
1783 generate_list
("SUBDIRS",1,\
@projects,sub
1785 if ($_[0] != \
@main_project) {
1786 my $subdir=@
{$_[0]}[$P_PATH];
1790 # Eliminating the main project by returning undefined!
1793 if (@
{@
$project[$P_TARGETS]} > 0) {
1794 generate_list
("DLLS",1,\
@dll_list,sub
1796 return @
{$_[0]}[$T_NAME];
1798 generate_list
("EXES",1,\
@exe_list,sub
1800 return "@{$_[0]}[$T_NAME]";
1802 print FILEO
"\n\n\n";
1804 print FILEO
"### Global settings\n\n";
1805 # Make it so that the project-wide settings override the global settings
1806 generate_list
("DEFINES",0,@
$project_settings[$T_DEFINES]);
1807 generate_list
("",1,$global_settings[$T_DEFINES]);
1808 generate_list
("INCLUDE_PATH",$no_extra,@
$project_settings[$T_INCLUDE_PATH]);
1809 generate_list
("",1,$global_settings[$T_INCLUDE_PATH],sub
1811 if ($_[0] !~ /^-I/ or is_absolute
($')) {
1814 return "-I\$(TOPSRCDIR)/$'";
1816 generate_list("DLL_PATH
",$no_extra,@$project_settings[$T_DLL_PATH]);
1817 generate_list("",1,$global_settings[$T_DLL_PATH],sub
1819 if ($_[0] !~ /^-L/ or is_absolute($')) {
1822 return "-L\
$(TOPSRCDIR
)/$'";
1824 generate_list("LIBRARY_PATH",$no_extra,@$project_settings[$T_LIBRARY_PATH]);
1825 generate_list("",1,$global_settings[$T_LIBRARY_PATH],sub
1827 if ($_[0] !~ /^-L/ or is_absolute($')) {
1830 return "-L\$(TOPSRCDIR)/$'";
1832 generate_list
("LIBRARIES",$no_extra,@
$project_settings[$T_LIBRARIES]);
1833 generate_list
("",1,$global_settings[$T_LIBRARIES]);
1836 my $extra_source_count=@
{@
$project_settings[$T_SOURCES_C]}+
1837 @
{@
$project_settings[$T_SOURCES_CXX]}+
1838 @
{@
$project_settings[$T_SOURCES_RC]};
1839 my $no_extra=($extra_source_count == 0);
1841 print FILEO
"### Extra source lists\n\n";
1842 generate_list
("EXTRA_C_SRCS",1,@
$project_settings[$T_SOURCES_C]);
1843 generate_list
("EXTRA_CXX_SRCS",1,@
$project_settings[$T_SOURCES_CXX]);
1844 generate_list
("EXTRA_RC_SRCS",1,@
$project_settings[$T_SOURCES_RC]);
1846 generate_list
("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:.cpp=.o)"]);
1847 print FILEO
"\n\n\n";
1850 # Iterate over all the targets...
1851 foreach $target (@
{@
$project[$P_TARGETS]}) {
1852 print FILEO
"### @$target[$T_NAME] sources and settings\n\n";
1853 my $canon=canonize
("@$target[$T_NAME]");
1855 generate_list
("${canon}_C_SRCS",1,@
$target[$T_SOURCES_C]);
1856 generate_list
("${canon}_CXX_SRCS",1,@
$target[$T_SOURCES_CXX]);
1857 generate_list
("${canon}_RC_SRCS",1,@
$target[$T_SOURCES_RC]);
1858 my $basename=@
$target[$T_NAME];
1859 $basename =~ s
+\
.so
$++;
1860 if (@
$target[$T_FLAGS] & $TF_WRAP) {
1861 $basename =~ s
+^lib
++;
1862 } elsif (@
$target[$T_FLAGS] & $TF_WRAPPER) {
1863 $basename.="_wrapper";
1865 generate_list
("${canon}_SPEC_SRCS",1,[ "$basename.spec" ]);
1866 generate_list
("${canon}_DLL_PATH",1,@
$target[$T_DLL_PATH]);
1867 generate_list
("${canon}_LIBRARY_PATH",1,@
$target[$T_LIBRARY_PATH]);
1868 generate_list
("${canon}_LIBRARIES",1,@
$target[$T_LIBRARIES]);
1869 generate_list
("${canon}_DEPENDS",1,@
$target[$T_DEPENDS]);
1871 generate_list
("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:.cpp=.o)","\$(EXTRA_OBJS)"]);
1872 print FILEO
"\n\n\n";
1874 print FILEO
"### Global source lists\n\n";
1875 generate_list
("C_SRCS",$no_extra,@
$project[$P_TARGETS],sub
1877 my $canon=canonize
(@
{$_[0]}[$T_NAME]);
1879 return "\$(${canon}_C_SRCS)";
1882 generate_list
("",1,[ "\$(EXTRA_C_SRCS)" ]);
1884 generate_list
("CXX_SRCS",$no_extra,@
$project[$P_TARGETS],sub
1886 my $canon=canonize
(@
{$_[0]}[$T_NAME]);
1888 return "\$(${canon}_CXX_SRCS)";
1891 generate_list
("",1,[ "\$(EXTRA_CXX_SRCS)" ]);
1893 generate_list
("RC_SRCS",$no_extra,@
$project[$P_TARGETS],sub
1895 my $canon=canonize
(@
{$_[0]}[$T_NAME]);
1897 return "\$(${canon}_RC_SRCS)";
1900 generate_list
("",1,[ "\$(EXTRA_RC_SRCS)" ]);
1902 generate_list
("SPEC_SRCS",1,@
$project[$P_TARGETS],sub
1904 my $canon=canonize
(@
{$_[0]}[$T_NAME]);
1906 return "\$(${canon}_SPEC_SRCS)";
1909 print FILEO
"\n\n\n";
1911 print FILEO
"### Generic autoconf targets\n\n";
1913 if (@
$project[$P_PATH] eq "") {
1914 print FILEO
" \$(SUBDIRS)";
1916 if (@
{@
$project[$P_TARGETS]} > 0) {
1917 print FILEO
" \$(DLLS) \$(EXES:%=%.so)";
1920 print FILEO
"\@MAKE_RULES\@\n";
1922 print FILEO
"install::\n";
1923 if (@
$project[$P_PATH] eq "") {
1924 # This is the main project. It is also responsible for recursively
1925 # calling the other projects
1926 print FILEO
"\t_list=\"\$(SUBDIRS)\"; for i in \$\$_list; do (cd \$\$i; \$(MAKE) install) || exit 1; done\n";
1928 if (@
{@
$project[$P_TARGETS]} > 0) {
1929 print FILEO
"\t_list=\"\$(EXES) \$(EXES:%=%.so)\"; for i in \$\$_list; do \$(INSTALL_PROGRAM) \$\$i \$(bindir); done\n";
1930 print FILEO
"\t_list=\"\$(DLLS)\"; for i in \$\$_list; do \$(INSTALL_PROGRAM) \$\$i \$(libdir); done\n";
1933 print FILEO
"uninstall::\n";
1934 if (@
$project[$P_PATH] eq "") {
1935 # This is the main project. It is also responsible for recursively
1936 # calling the other projects
1937 print FILEO
"\t_list=\"\$(SUBDIRS)\"; for i in \$\$_list; do (cd \$\$i; \$(MAKE) uninstall) || exit 1; done\n";
1939 if (@
{@
$project[$P_TARGETS]} > 0) {
1940 print FILEO
"\t_list=\"\$(EXES) \$(EXES:%=%.so)\"; for i in \$\$_list; do \$(RM) \$(bindir)/\$\$i;done\n";
1941 print FILEO
"\t_list=\"\$(DLLS)\"; for i in \$\$_list; do \$(RM) \$(libdir)/\$\$i;done\n";
1943 print FILEO
"\n\n\n";
1945 if (@
{@
$project[$P_TARGETS]} > 0) {
1946 print FILEO
"### Target specific build rules\n\n";
1947 foreach $target (@
{@
$project[$P_TARGETS]}) {
1948 my $canon=canonize
("@$target[$T_NAME]");
1950 print FILEO
"\$(${canon}_SPEC_SRCS:.spec=.tmp.o): \$(${canon}_OBJS)\n";
1951 print FILEO
"\t\$(LDCOMBINE) \$(${canon}_OBJS) -o \$\@\n";
1952 print FILEO
"\t-\$(STRIP) \$(STRIPFLAGS) \$\@\n";
1954 print FILEO
"\$(${canon}_SPEC_SRCS:.spec=.spec.c): \$(${canon}_SPEC_SRCS) \$(${canon}_SPEC_SRCS:.spec=.tmp.o) \$(${canon}_RC_SRCS:.rc=.res)\n";
1955 print FILEO
"\t\$(LD_PATH) \$(WINEBUILD) -fPIC \$(${canon}_DLL_PATH) \$(WINE_DLL_PATH) -sym \$(${canon}_SPEC_SRCS:.spec=.tmp.o) -o \$\@ -spec \$(SRCDIR)/\$(${canon}_SPEC_SRCS)\n";
1957 my $t_name=@
$target[$T_NAME];
1958 if (@
$target[$T_TYPE]!=$TT_DLL) {
1961 print FILEO
"$t_name: \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_OBJS) \$(${canon}_DEPENDS) \n";
1962 if (@
{@
$target[$T_SOURCES_CXX]} > 0 or @
{@
$project_settings[$T_SOURCES_CXX]} > 0) {
1963 print FILEO
"\t\$(LDXXSHARED)";
1965 print FILEO
"\t\$(LDSHARED)";
1967 print FILEO
" \$(LDDLLFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_LIBRARY_PATH) \$(${canon}_LIBRARIES:%=-l%) \$(DLL_LINK) \$(LIBS)\n";
1968 if (@
$target[$T_TYPE] ne $TT_DLL) {
1969 print FILEO
"\ttest -f @$target[$T_NAME] || \$(LN_S) \$(WINE) @$target[$T_NAME]\n";
1976 foreach $target (@
{@
$project[$P_TARGETS]}) {
1977 generate_spec_file
(@
$project[$P_PATH],$target,$project_settings);
1978 if (@
$target[$T_FLAGS] & $TF_WRAPPER) {
1979 generate_wrapper_file
(@
$project[$P_PATH],$target);
1985 # Perform the replacements in the template configure files
1986 # Return 1 for success, 0 for failure
1987 sub generate_configure
1990 my $a_source_file=$_[1];
1992 if (!defined $templates{$filename}) {
1993 if ($filename ne "configure") {
1994 print STDERR
"winemaker: internal error: No template called '$filename'\n";
1999 if (!open(FILEO
,">$filename")) {
2000 print STDERR
"error: unable to open \"$filename\" for writing:\n";
2001 print STDERR
" $!\n";
2004 foreach $line (@
{$templates{$filename}}) {
2005 if ($line =~ /^\#\#WINEMAKER_PROJECTS\#\#$/) {
2006 foreach $project (@projects) {
2007 print FILEO
"@$project[$P_PATH]Makefile\n";
2010 $line =~ s
+\#\#WINEMAKER_SOURCE\#\#
+$a_source_file+;
2011 $line =~ s
+\#\#WINEMAKER_NEEDS_MFC\#\#
+$needs_mfc+;
2019 sub generate_generic
2023 if (!defined $templates{$filename}) {
2024 print STDERR
"winemaker: internal error: No template called '$filename'\n";
2027 if (!open(FILEO
,">$filename")) {
2028 print STDERR
"error: unable to open \"$filename\" for writing:\n";
2029 print STDERR
" $!\n";
2032 foreach $line (@
{$templates{$filename}}) {
2039 # Generates the global files:
2043 sub generate_global_files
2045 generate_generic
("Make.rules.in");
2047 # Get the name of a source file for configure.in
2049 search_a_file
: foreach $project (@projects) {
2050 foreach $target (@
{@
$project[$P_TARGETS]}, @
$project[$P_SETTINGS]) {
2051 $a_source_file=@
{@
$target[$T_SOURCES_C]}[0];
2052 if (!defined $a_source_file) {
2053 $a_source_file=@
{@
$target[$T_SOURCES_CXX]}[0];
2055 if (!defined $a_source_file) {
2056 $a_source_file=@
{@
$target[$T_SOURCES_RC]}[0];
2058 if (defined $a_source_file) {
2059 $a_source_file="@$project[$P_PATH]$a_source_file";
2064 if (!defined $a_source_file) {
2065 $a_source_file="Makefile.in";
2068 generate_configure
("configure.in",$a_source_file);
2069 unlink("configure");
2070 if (generate_configure
("configure",$a_source_file) == 0) {
2073 # Add execute permission to configure for whoever has the right to read it
2074 my @st=stat("configure");
2077 $mode|=($mode & 0444) >>2;
2078 chmod($mode,"configure");
2080 print "warning: could not generate the configure script. You need to run autoconf\n";
2086 sub generate_read_templates
2091 if (/^--- ((\w\.?)+) ---$/) {
2093 if (defined $templates{$filename}) {
2094 print STDERR
"winemaker: internal error: There is more than one template for $filename\n";
2098 $templates{$filename}=$file;
2100 } elsif (defined $file) {
2107 # This is where we finally generate files. In fact this method does not
2108 # do anything itself but calls the methods that do the actual work.
2111 print "Generating project files...\n";
2112 generate_read_templates
();
2113 generate_global_files
();
2115 foreach $project (@projects) {
2116 my $path=@
$project[$P_PATH];
2123 generate_project_files
($project);
2136 $opt_lower=$OPT_LOWER_UPPERCASE;
2137 $opt_lower_include=1;
2139 # $opt_work_dir=<undefined>
2140 # $opt_single_target=<undefined>
2141 $opt_target_type=$TT_GUIEXE;
2143 $opt_is_interactive=$OPT_ASK_NO;
2144 $opt_ask_project_options=$OPT_ASK_NO;
2145 $opt_ask_target_options=$OPT_ASK_NO;
2146 $opt_no_generated_files=0;
2147 $opt_no_generated_specs=0;
2148 $opt_no_source_fix=0;
2161 print "Winemaker $version\n";
2162 print "Copyright 2000 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
2168 print STDERR
"Usage: winemaker [--nobanner] [--backup|--nobackup] [--nosource-fix]\n";
2169 print STDERR
" [--lower-none|--lower-all|--lower-uppercase]\n";
2170 print STDERR
" [--lower-include|--nolower-include]\n";
2171 print STDERR
" [--guiexe|--windows|--cuiexe|--console|--dll]\n";
2172 print STDERR
" [--wrap|--nowrap] [--mfc|--nomfc]\n";
2173 print STDERR
" [-Dmacro[=defn]] [-Idir] [-Pdir] [-idll] [-Ldir] [-llibrary]\n";
2174 print STDERR
" [--interactive] [--single-target name]\n";
2175 print STDERR
" [--generated-files|--nogenerated-files] [--nogenerated-specs]\n";
2176 print STDERR
" work_directory\n";
2177 print STDERR
"\nWinemaker is designed to recursively convert all the Windows sources found in\n";
2178 print STDERR
"the specified directory so that they can be compiled with Winelib. During this\n";
2179 print STDERR
"process it will modify and rename some of the files in that directory.\n";
2180 print STDERR
"\tPlease read the manual page before use.\n";
2185 project_init
(\
@main_project,"");
2188 my $arg=shift @ARGV;
2190 if ($arg eq "--nobanner") {
2192 } elsif ($arg eq "--backup") {
2194 } elsif ($arg eq "--nobackup") {
2196 } elsif ($arg eq "--single-target") {
2197 $opt_single_target=shift @ARGV;
2198 } elsif ($arg eq "--lower-none") {
2199 $opt_lower=$OPT_LOWER_NONE;
2200 } elsif ($arg eq "--lower-all") {
2201 $opt_lower=$OPT_LOWER_ALL;
2202 } elsif ($arg eq "--lower-uppercase") {
2203 $opt_lower=$OPT_LOWER_UPPERCASE;
2204 } elsif ($arg eq "--lower-include") {
2205 $opt_lower_include=1;
2206 } elsif ($arg eq "--nolower-include") {
2207 $opt_lower_include=0;
2208 } elsif ($arg eq "--nosource-fix") {
2209 $opt_no_source_fix=1;
2210 } elsif ($arg eq "--generated-files") {
2211 $opt_no_generated_files=0;
2212 } elsif ($arg eq "--nogenerated-files") {
2213 $opt_no_generated_files=1;
2214 } elsif ($arg eq "--nogenerated-specs") {
2215 $opt_no_generated_specs=1;
2217 } elsif ($arg =~ /^-D/) {
2218 push @
{$global_settings[$T_DEFINES]},$arg;
2219 } elsif ($arg =~ /^-I/) {
2220 push @
{$global_settings[$T_INCLUDE_PATH]},$arg;
2221 } elsif ($arg =~ /^-P/) {
2222 push @
{$global_settings[$T_DLL_PATH]},"-L$'";
2223 } elsif ($arg =~ /^-i/) {
2224 push @
{$global_settings[$T_DLLS]},$';
2225 } elsif ($arg =~ /^-L/) {
2226 push @{$global_settings[$T_LIBRARY_PATH]},$arg;
2227 } elsif ($arg =~ /^-l/) {
2228 push @{$global_settings[$T_LIBRARIES]},$';
2230 # 'Source'-based method options
2231 } elsif ($arg eq "--dll") {
2232 $opt_target_type=$TT_DLL;
2233 } elsif ($arg eq "--guiexe" or $arg eq "--windows") {
2234 $opt_target_type=$TT_GUIEXE;
2235 } elsif ($arg eq "--cuiexe" or $arg eq "--console") {
2236 $opt_target_type=$TT_CUIEXE;
2237 } elsif ($arg eq "--interactive") {
2238 $opt_is_interactive=$OPT_ASK_YES;
2239 $opt_ask_project_options=$OPT_ASK_YES;
2240 $opt_ask_target_options=$OPT_ASK_YES;
2241 } elsif ($arg eq "--wrap") {
2242 $opt_flags|=$TF_WRAP;
2243 } elsif ($arg eq "--nowrap") {
2244 $opt_flags&=~$TF_WRAP;
2245 } elsif ($arg eq "--mfc") {
2246 $opt_flags|=$TF_MFC;
2247 $opt_flags|=$TF_MFC|$TF_WRAP;
2249 } elsif ($arg eq "--nomfc") {
2250 $opt_flags&=~($TF_MFC|$TF_WRAP);
2255 if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") {
2256 if (!defined $opt_work_dir) {
2259 print STDERR
"error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n";
2268 if (!defined $opt_work_dir) {
2269 print STDERR
"error: you must specify the directory containing the sources to be converted\n";
2271 } elsif (!chdir $opt_work_dir) {
2272 print STDERR
"error: could not chdir to the work directory\n";
2273 print STDERR
" $!\n";
2277 if ($opt_no_banner == 0) {
2281 # Fix the file and directory names
2282 fix_file_and_directory_names
(".");
2284 # Scan the sources to identify the projects and targets
2287 # Create targets for wrappers, etc.
2288 postprocess_targets
();
2290 # Fix the source files
2291 if (! $opt_no_source_fix) {
2295 # Generate the Makefile and the spec file
2296 if (! $opt_no_generated_files) {
2302 --- configure
.in ---
2303 dnl Process this file with autoconf to produce a configure script
.
2304 dnl Author
: Michael Patra
<micky
@marie.physik
.tu
-berlin
.de
>
2305 dnl
<patra
@itp1.physik
.tu
-berlin
.de
>
2306 dnl Francois Gouget
<fgouget
@codeweavers.com
> for CodeWeavers
2308 AC_REVISION
([configure
.in 1.00])
2309 AC_INIT
(##WINEMAKER_SOURCE##)
2311 NEEDS_MFC
=##WINEMAKER_NEEDS_MFC##
2313 dnl
**** Command
-line arguments
****
2317 dnl
**** Check
for some programs
****
2325 dnl
**** Check
for some libraries
****
2327 dnl Check
for -lm
for BeOS
2328 AC_CHECK_LIB
(m
,sqrt)
2329 dnl Check
for -lw
for Solaris
2330 AC_CHECK_LIB
(w
,iswalnum
)
2331 dnl Check
for -lnsl
for Solaris
2332 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
))
2333 dnl Check
for -lsocket
for Solaris
2334 AC_CHECK_FUNCS
(connect,,AC_CHECK_LIB
(socket,connect))
2336 dnl
**** If ln
-s doesn
't work, use cp instead ****
2337 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
2339 dnl **** Check for gcc strength-reduce bug ****
2341 if test "x${GCC}" = "xyes"
2343 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
2346 static int Array[[3]];
2349 for(i=0; i<B; i++) Array[[i]] = i - 3;
2350 exit( Array[[1]] != -2 );
2352 ac_cv_c_gcc_strength_bug="no",
2353 ac_cv_c_gcc_strength_bug="yes",
2354 ac_cv_c_gcc_strength_bug="yes") )
2355 if test "$ac_cv_c_gcc_strength_bug" = "yes"
2357 CFLAGS="$CFLAGS -fno-strength-reduce"
2361 dnl **** Check for underscore on external symbols ****
2363 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
2364 ac_cv_c_extern_prefix,
2366 LIBS="conftest_asm.s $LIBS"
2367 cat > conftest_asm.s <<EOF
2372 AC_TRY_LINK
([extern
int ac_test
;],[if (ac_test
) return 1],
2373 ac_cv_c_extern_prefix
="yes",ac_cv_c_extern_prefix
="no")
2375 if test
"$ac_cv_c_extern_prefix" = "yes"
2377 AC_DEFINE
(NEED_UNDERSCORE_PREFIX
)
2380 dnl
**** Check
for working dll
****
2385 AC_CACHE_CHECK
("whether we can build a Linux dll",
2387 [saved_cflags
=$CFLAGS
2388 CFLAGS
="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
2389 AC_TRY_LINK
(,[return 1],ac_cv_c_dll_linux
="yes",ac_cv_c_dll_linux
="no")
2390 CFLAGS
=$saved_cflags
2392 if test
"$ac_cv_c_dll_linux" = "yes"
2394 LDSHARED
="\$(CC) -shared -Wl,-rpath,\$(libdir)"
2395 LDXXSHARED
="\$(CXX) -shared -Wl,-rpath,\$(libdir)"
2396 LDDLLFLAGS
="-Wl,-Bsymbolic"
2398 AC_CACHE_CHECK
(whether we can build a UnixWare
(Solaris
) dll
,
2399 ac_cv_c_dll_unixware
,
2400 [saved_cflags
=$CFLAGS
2401 CFLAGS
="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
2402 AC_TRY_LINK
(,[return 1],ac_cv_c_dll_unixware
="yes",ac_cv_c_dll_unixware
="no")
2403 CFLAGS
=$saved_cflags
2405 if test
"$ac_cv_c_dll_unixware" = "yes"
2407 LDSHARED
="\$(CC) -Wl,-G"
2408 LDXXSHARED
="\$(CXX) -Wl,-G"
2409 LDDLLFLAGS
="-Wl,-B,symbolic"
2411 AC_CACHE_CHECK
("whether we can build a NetBSD dll",
2413 [saved_cflags
=$CFLAGS
2414 CFLAGS
="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
2415 AC_TRY_LINK
(,[return 1],ac_cv_c_dll_netbsd
="yes",ac_cv_c_dll_netbsd
="no")
2416 CFLAGS
=$saved_cflags
2418 if test
"$ac_cv_c_dll_netbsd" = "yes"
2420 LDSHARED
="\$(CC) -Wl,-Bshareable,-Bforcearchive"
2421 LDXXSHARED
="\$(CXX) -Wl,-Bshareable,-Bforcearchive"
2422 LDDLLFLAGS
="" #FIXME
2426 if test
"$ac_cv_c_dll_linux" = "no" -a
"$ac_cv_c_dll_unixware" = "no" -a
"$ac_cv_c_dll_netbsd" = "no"
2428 AC_MSG_ERROR
([Could
not find how to build a dynamically linked library
])
2431 CFLAGS
="$CFLAGS -fPIC"
2434 AC_SUBST
(LDXXSHARED
)
2435 AC_SUBST
(LDDLLFLAGS
)
2437 dnl
*** check
for the need to define __i386__
2439 AC_CACHE_CHECK
("whether we need to define __i386__",ac_cv_cpp_def_i386
,
2440 AC_EGREP_CPP
(yes
,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
2443 ac_cv_cpp_def_i386
="yes", ac_cv_cpp_def_i386
="no"))
2444 if test
"$ac_cv_cpp_def_i386" = "yes"
2446 CFLAGS
="$CFLAGS -D__i386__"
2449 dnl
$GCC is set by autoconf
2451 if test
"$GCC" = "yes"
2453 GCC_NO_BUILTIN
="-fno-builtin"
2455 AC_SUBST
(GCC_NO_BUILTIN
)
2457 dnl
**** Test Winelib
-related features of the C
++ compiler
2459 if test
"x${GCC}" = "xyes"
2461 OLDCXXFLAGS
="$CXXFLAGS";
2462 CXXFLAGS
="-fpermissive";
2463 AC_CACHE_CHECK
("for g++ -fpermissive option", has_gxx_permissive
,
2465 for (int i
=0;i
<2;i
++);
2468 [has_gxx_permissive
="yes"],
2469 [has_gxx_permissive
="no"])
2471 CXXFLAGS
="-fno-for-scope";
2472 AC_CACHE_CHECK
("for g++ -fno-for-scope option", has_gxx_no_for_scope
,
2474 for (int i
=0;i
<2;i
++);
2477 [has_gxx_no_for_scope
="yes"],
2478 [has_gxx_no_for_scope
="no"])
2480 CXXFLAGS
="$OLDCXXFLAGS";
2481 if test
"$has_gxx_permissive" = "yes"
2483 CXXFLAGS
="$CXXFLAGS -fpermissive"
2485 if test
"$has_gxx_no_for_scope" = "yes"
2487 CXXFLAGS
="$CXXFLAGS -fno-for-scope"
2492 dnl
**** Test Winelib
-related features of the C compiler
2495 dnl
**** Macros
for finding a headers
/libraries
in a collection of places
2497 dnl AC_PATH_FILE
(variable
,file
,action
-if-not-found
,default-locations
)
2498 AC_DEFUN
(AC_PATH_FILE
,[
2499 AC_MSG_CHECKING
([for $2])
2500 AC_CACHE_VAL
(ac_cv_pfile_
$1,
2503 ac_dummy
="ifelse([$4], , , [$4])"
2504 IFS
="${IFS= }"; ac_save_ifs
="$IFS"; IFS
=":"
2505 for ac_dir
in $ac_dummy; do
2507 if test
-z
"$ac_dir"
2511 ac_file
="$ac_dir/$2"
2513 if test
-f
"$ac_file"
2516 ac_cv_pfile_
$1="$ac_dir"
2520 ifelse
([$3],,,[if test
-z
"$ac_found"
2526 $1="$ac_cv_pfile_$1"
2527 if test
-n
"$ac_found" -o
-n
"[$]$1"
2529 AC_MSG_RESULT
([$]$1)
2536 dnl AC_PATH_HEADER
(variable
,header
,action
-if-not-found
,default-locations
)
2537 dnl Note that the above may set variable to an empty value
if the header is
2538 dnl already
in the include path
2539 AC_DEFUN
(AC_PATH_HEADER
,[
2540 AC_MSG_CHECKING
([for $2 header
])
2541 AC_CACHE_VAL
(ac_cv_pheader_
$1,
2544 ac_dummy
="ifelse([$4], , :/usr/local/include, [$4])"
2545 save_CPPFLAGS
="$CPPFLAGS"
2546 IFS
="${IFS= }"; ac_save_ifs
="$IFS"; IFS
=":"
2547 for ac_dir
in $ac_dummy; do
2549 if test
-z
"$ac_dir"
2551 CPPFLAGS
="$save_CPPFLAGS"
2553 CPPFLAGS
="-I$ac_dir $save_CPPFLAGS"
2555 AC_TRY_COMPILE
([#include <$2>],,ac_found=1;ac_cv_pheader_$1="$ac_dir";break)
2557 CPPFLAGS
="$save_CPPFLAGS"
2558 ifelse
([$3],,,[if test
-z
"$ac_found"
2564 $1="$ac_cv_pheader_$1"
2565 if test
-n
"$ac_found" -o
-n
"[$]$1"
2567 AC_MSG_RESULT
([$]$1)
2574 dnl AC_PATH_LIBRARY
(variable
,libraries
,extra libs
,action
-if-not-found
,default-locations
)
2575 AC_DEFUN
(AC_PATH_LIBRARY
,[
2576 AC_MSG_CHECKING
([for $2])
2577 AC_CACHE_VAL
(ac_cv_plibrary_
$1,
2580 ac_dummy
="ifelse([$5], , :/usr/local/lib, [$5])"
2582 IFS
="${IFS= }"; ac_save_ifs
="$IFS"; IFS
=":"
2583 for ac_dir
in $ac_dummy; do
2585 if test
-z
"$ac_dir"
2587 LIBS
="$2 $3 $save_LIBS"
2589 LIBS
="-L$ac_dir $2 $3 $save_LIBS"
2591 AC_TRY_LINK
(,,ac_found
=1;ac_cv_plibrary_
$1="$ac_dir";break)
2594 ifelse
([$4],,,[if test
-z
"$ac_found"
2600 $1="$ac_cv_plibrary_$1"
2601 if test
-n
"$ac_found" -o
-n
"[$]$1"
2603 AC_MSG_RESULT
([$]$1)
2610 dnl
**** Try to find where winelib is located
****
2613 WINE_INCLUDE_ROOT
=""
2614 WINE_INCLUDE_PATH
=""
2615 WINE_LIBRARY_ROOT
=""
2616 WINE_LIBRARY_PATH
=""
2625 [ --with
-wine
=DIR the Wine
package (or sources
) is
in DIR
],
2626 [if test
"$withval" != "no"; then
2627 WINE_ROOT
="$withval";
2634 if test
-n
"$WINE_ROOT"
2636 WINE_INCLUDE_ROOT
="$WINE_ROOT/include:$WINE_ROOT/include/wine"
2637 WINE_LIBRARY_ROOT
="$WINE_ROOT:$WINE_ROOT/lib"
2638 WINE_TOOL_PATH
="$WINE_ROOT:$WINE_ROOT/bin:$WINE_ROOT/tools/wrc:$WINE_ROOT/tools/winebuild"
2641 AC_ARG_WITH
(wine
-includes
,
2642 [ --with
-wine
-includes
=DIR the Wine includes are
in DIR
],
2643 [if test
"$withval" != "no"; then
2644 WINE_INCLUDES
="$withval";
2648 if test
-n
"$WINE_INCLUDES"
2650 WINE_INCLUDE_ROOT
="$WINE_INCLUDES"
2653 AC_ARG_WITH
(wine
-libraries
,
2654 [ --with
-wine
-libraries
=DIR the Wine libraries are
in DIR
],
2655 [if test
"$withval" != "no"; then
2656 WINE_LIBRARIES
="$withval";
2660 if test
-n
"$WINE_LIBRARIES"
2662 WINE_LIBRARY_ROOT
="$WINE_LIBRARIES"
2665 AC_ARG_WITH
(wine
-dlls
,
2666 [ --with
-wine
-dlls
=DIR the Wine dlls are
in DIR
],
2667 [if test
"$withval" != "no"; then
2668 WINE_DLLS
="$withval";
2672 if test
-n
"$WINE_DLLS"
2674 WINE_DLL_ROOT
="$WINE_DLLS"
2677 AC_ARG_WITH
(wine
-tools
,
2678 [ --with
-wine
-tools
=DIR the Wine tools are
in DIR
],
2679 [if test
"$withval" != "no"; then
2680 WINE_TOOLS
="$withval";
2684 if test
-n
"$WINE_TOOLS"
2686 WINE_TOOL_PATH
="$WINE_TOOLS:$WINE_TOOLS/tools/wrc:$WINE_TOOLS/tools/winebuild"
2689 if test
-z
"$WINE_INCLUDE_ROOT"
2691 WINE_INCLUDE_ROOT
=":/usr/include/wine:/usr/local/include/wine:/opt/wine/include:/opt/wine/include/wine";
2693 AC_PATH_FILE
(WINE_INCLUDE_ROOT
,[windef
.h
],[
2694 AC_MSG_ERROR
([Could
not find the Wine headers
(windef
.h
)])
2695 ],$WINE_INCLUDE_ROOT)
2697 AC_PATH_HEADER
(WINE_INCLUDE_ROOT
,[windef
.h
],[
2698 AC_MSG_ERROR
([Could
not include the Wine headers
(windef
.h
)])
2699 ],$WINE_INCLUDE_ROOT)
2700 if test
-n
"$WINE_INCLUDE_ROOT"
2702 WINE_INCLUDE_PATH
="-I$WINE_INCLUDE_ROOT"
2704 WINE_INCLUDE_PATH
=""
2707 if test
-z
"$WINE_LIBRARY_ROOT"
2709 WINE_LIBRARY_ROOT
=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib"
2711 AC_PATH_FILE
(WINE_LIBRARY_ROOT
,[libwine
.so
],[
2712 AC_MSG_ERROR
([Could
not find the Wine libraries
(libwine
.so
)])
2713 ],$WINE_LIBRARY_ROOT)
2715 AC_PATH_LIBRARY
(WINE_LIBRARY_ROOT
,[-lwine
],[],[
2716 AC_MSG_ERROR
([Could
not link with the Wine libraries
(libwine
.so
)])
2717 ],$WINE_LIBRARY_ROOT)
2718 if test
-n
"$WINE_LIBRARY_ROOT"
2720 WINE_LIBRARY_PATH
="-L$WINE_LIBRARY_ROOT"
2721 LD_PATH
="$WINE_LIBRARY_ROOT"
2723 WINE_LIBRARY_PATH
=""
2726 if test
-z
"$WINE_DLL_ROOT"
2728 if test
-n
"$WINE_LIBRARY_ROOT"
2730 WINE_DLL_ROOT
="$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/dlls"
2732 WINE_DLL_ROOT
="/lib:/lib/dlls:/usr/lib:/usr/lib/dlls:/usr/local/lib:/usr/local/lib/dlls"
2735 AC_PATH_FILE
(WINE_DLL_ROOT
,[libntdll
.dll
.so
],[
2736 AC_MSG_ERROR
([Could
not find the Wine dlls
(libntdll
.dll
.so
)])
2739 AC_PATH_LIBRARY
(WINE_DLL_ROOT
,[-lntdll
.dll
],[$WINE_LIBRARY_PATH -lwine
-lwine_unicode
],[
2740 AC_MSG_ERROR
([Could
not link with the Wine dlls
(libntdll
.dll
.so
)])
2742 WINE_DLL_PATH
="-L$WINE_DLL_ROOT/wine"
2744 if test
-n
"$LD_PATH"
2746 LD_PATH
="$LD_PATH:$WINE_DLL_ROOT"
2748 LD_PATH
="$WINE_DLL_ROOT"
2750 LD_PATH
="LD_LIBRARY_PATH=\"$LD_PATH:\$\$LD_LIBRARY_PATH\""
2752 if test
-z
"$WINE_TOOL_PATH"
2754 WINE_TOOL_PATH
="$PATH:/usr/local/bin:/opt/wine/bin"
2756 AC_PATH_PROG
(WINE
,wine
,,$WINE_TOOL_PATH)
2759 AC_MSG_ERROR
([Could
not find Wine
's wine tool])
2761 AC_PATH_PROG(WINEBUILD,winebuild,,$WINE_TOOL_PATH)
2762 if test -z "$WINEBUILD"
2764 AC_MSG_ERROR([Could not find Wine's winebuild tool
])
2766 AC_PATH_PROG
(WRC
,wrc
,,$WINE_TOOL_PATH)
2769 AC_MSG_ERROR
([Could
not find Wine
's wrc tool])
2773 AC_SUBST(WINE_INCLUDE_PATH)
2774 AC_SUBST(WINE_LIBRARY_PATH)
2775 AC_SUBST(WINE_DLL_PATH)
2777 dnl **** Try to find where the MFC are located ****
2780 if test "x$NEEDS_MFC" = "x1"
2782 ATL_INCLUDE_ROOT="";
2783 ATL_INCLUDE_PATH="";
2784 MFC_INCLUDE_ROOT="";
2785 MFC_INCLUDE_PATH="";
2786 MFC_LIBRARY_ROOT="";
2787 MFC_LIBRARY_PATH="";
2790 [ --with-mfc=DIR the MFC package (or sources) is in DIR],
2791 [if test "$withval" != "no"; then
2792 MFC_ROOT="$withval";
2799 if test -n "$MFC_ROOT"
2801 ATL_INCLUDE_ROOT="$MFC_ROOT";
2802 MFC_INCLUDE_ROOT="$MFC_ROOT";
2803 MFC_LIBRARY_ROOT="$MFC_ROOT";
2806 AC_ARG_WITH(atl-includes,
2807 [ --with-atl-includes=DIR the ATL includes are in DIR],
2808 [if test "$withval" != "no"; then
2809 ATL_INCLUDES="$withval";
2813 if test -n "$ATL_INCLUDES"
2815 ATL_INCLUDE_ROOT="$ATL_INCLUDES";
2818 AC_ARG_WITH(mfc-includes,
2819 [ --with-mfc-includes=DIR the MFC includes are in DIR],
2820 [if test "$withval" != "no"; then
2821 MFC_INCLUDES="$withval";
2825 if test -n "$MFC_INCLUDES"
2827 MFC_INCLUDE_ROOT="$MFC_INCLUDES";
2830 AC_ARG_WITH(mfc-libraries,
2831 [ --with-mfc-libraries=DIR the MFC libraries are in DIR],
2832 [if test "$withval" != "no"; then
2833 MFC_LIBRARIES="$withval";
2837 if test -n "$MFC_LIBRARIES"
2839 MFC_LIBRARY_ROOT="$MFC_LIBRARIES";
2842 OLDCPPFLAGS="$CPPFLAGS"
2843 dnl FIXME: We should not have defines in any of the include paths
2844 CPPFLAGS="$WINE_INCLUDE_PATH -I$WINE_INCLUDE_ROOT/mixedcrt -D_DLL -D_MT $CPPFLAGS"
2845 ATL_INCLUDE_PATH="-I\$(WINE_INCLUDE_ROOT)/mixedcrt -D_DLL -D_MT"
2846 if test -z "$ATL_INCLUDE_ROOT"
2848 ATL_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/atl:/usr/include/atl:/usr/local/include/atl:/opt/mfc/include/atl:/opt/atl/include"
2850 ATL_INCLUDE_ROOT="$ATL_INCLUDE_ROOT:$ATL_INCLUDE_ROOT/atl:$ATL_INCLUDE_ROOT/atl/include"
2852 AC_PATH_HEADER(ATL_INCLUDE_ROOT,atldef.h,[
2853 AC_MSG_ERROR([Could not find the ATL includes])
2854 ],$ATL_INCLUDE_ROOT)
2855 if test -n "$ATL_INCLUDE_ROOT"
2857 ATL_INCLUDE_PATH="$ATL_INCLUDE_PATH -I$ATL_INCLUDE_ROOT"
2860 MFC_INCLUDE_PATH="$ATL_INCLUDE_PATH"
2861 if test -z "$MFC_INCLUDE_ROOT"
2863 MFC_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/mfc:/usr/include/mfc:/usr/local/include/mfc:/opt/mfc/include/mfc:/opt/mfc/include"
2865 MFC_INCLUDE_ROOT="$MFC_INCLUDE_ROOT:$MFC_INCLUDE_ROOT/mfc:$MFC_INCLUDE_ROOT/mfc/include"
2867 AC_PATH_HEADER(MFC_INCLUDE_ROOT,afx.h,[
2868 AC_MSG_ERROR([Could not find the MFC includes])
2869 ],$MFC_INCLUDE_ROOT)
2870 if test -n "$MFC_INCLUDE_ROOT" -a "$ATL_INCLUDE_ROOT" != "$MFC_INCLUDE_ROOT"
2872 MFC_INCLUDE_PATH="$MFC_INCLUDE_PATH -I$MFC_INCLUDE_ROOT"
2874 CPPFLAGS="$OLDCPPFLAGS"
2876 if test -z "$MFC_LIBRARY_ROOT"
2878 MFC_LIBRARY_ROOT=":$WINE_LIBRARY_ROOT:/usr/lib/mfc:/usr/local/lib:/usr/local/lib/mfc:/opt/mfc/lib";
2880 MFC_LIBRARY_ROOT="$MFC_LIBRARY_ROOT:$MFC_LIBRARY_ROOT/lib:$MFC_LIBRARY_ROOT/mfc/src";
2882 AC_PATH_LIBRARY(MFC_LIBRARY_ROOT,[-lmfc],[$WINE_LIBRARY_PATH -lwine -lwine_unicode],[
2883 AC_MSG_ERROR([Could not find the MFC library])
2884 ],$MFC_LIBRARY_ROOT)
2885 if test -n "$MFC_LIBRARY_ROOT" -a "$MFC_LIBRARY_ROOT" != "$WINE_LIBRARY_ROOT"
2887 MFC_LIBRARY_PATH="-L$MFC_LIBRARY_ROOT"
2892 AC_SUBST(ATL_INCLUDE_PATH)
2893 AC_SUBST(MFC_INCLUDE_PATH)
2894 AC_SUBST(MFC_LIBRARY_PATH)
2899 dnl **** Generate output files ****
2901 MAKE_RULES=Make.rules
2902 AC_SUBST_FILE(MAKE_RULES)
2906 ##WINEMAKER_PROJECTS##
2910 echo "Configure finished. Do 'make
' to build the project."
2913 dnl Local Variables:
2914 dnl comment-start: "dnl "
2916 dnl comment-start-skip: "\\bdnl\\b\\s *"
2917 dnl compile-command: "autoconf"
2919 --- Make.rules.in ---
2920 # Copyright 2000 Francois Gouget for CodeWeavers
2921 # fgouget@codeweavers.com
2923 # Global rules shared by all makefiles -*-Makefile-*-
2925 # Each individual makefile must define the following variables:
2926 # TOPOBJDIR : top-level object directory
2927 # SRCDIR : source directory for this module
2929 # Each individual makefile may define the following additional variables:
2931 # SUBDIRS : subdirectories that contain a Makefile
2932 # DLLS : WineLib libraries to be built
2933 # EXES : WineLib executables to be built
2935 # CEXTRA : extra c flags (e.g. '-Wall
')
2936 # CXXEXTRA : extra c++ flags (e.g. '-Wall
')
2937 # WRCEXTRA : extra wrc flags (e.g. '-p _SysRes
')
2938 # DEFINES : defines (e.g. -DSTRICT)
2939 # INCLUDE_PATH : additional include path
2940 # LIBRARY_PATH : additional library path
2941 # LIBRARIES : additional Unix libraries to link with
2943 # C_SRCS : C sources for the module
2944 # CXX_SRCS : C++ sources for the module
2945 # RC_SRCS : resource source files
2946 # SPEC_SRCS : interface definition files
2951 WINE_INCLUDE_ROOT = @WINE_INCLUDE_ROOT@
2952 WINE_INCLUDE_PATH = @WINE_INCLUDE_PATH@
2953 WINE_LIBRARY_ROOT = @WINE_LIBRARY_ROOT@
2954 WINE_LIBRARY_PATH = @WINE_LIBRARY_PATH@
2955 WINE_DLL_ROOT = @WINE_DLL_ROOT@
2956 WINE_DLL_PATH = @WINE_DLL_PATH@
2962 ATL_INCLUDE_ROOT = @ATL_INCLUDE_ROOT@
2963 ATL_INCLUDE_PATH = @ATL_INCLUDE_PATH@
2964 MFC_INCLUDE_ROOT = @MFC_INCLUDE_ROOT@
2965 MFC_INCLUDE_PATH = @MFC_INCLUDE_PATH@
2966 MFC_LIBRARY_ROOT = @MFC_LIBRARY_ROOT@
2967 MFC_LIBRARY_PATH = @MFC_LIBRARY_PATH@
2969 # First some useful definitions
2977 CXXFLAGS = @CXXFLAGS@
2979 OPTIONS = @OPTIONS@ -D_REENTRANT -DWINELIB
2980 LIBS = @LIBS@ $(LIBRARY_PATH)
2982 ALLFLAGS = $(DEFINES) -I$(SRCDIR) $(INCLUDE_PATH) $(WINE_INCLUDE_PATH)
2983 ALLCFLAGS = $(CFLAGS) $(CEXTRA) $(OPTIONS) $(ALLFLAGS)
2984 ALLCXXFLAGS=$(CXXFLAGS) $(CXXEXTRA) $(OPTIONS) $(ALLFLAGS)
2985 ALLWRCFLAGS=$(WRCFLAGS) $(WRCEXTRA) $(OPTIONS) $(ALLFLAGS)
2986 DLL_LINK = $(LIBRARY_PATH) $(LIBRARIES:%=-l%) $(WINE_LIBRARY_PATH) -lwine -lwine_unicode -lwine_uuid
2988 LDSHARED = @LDSHARED@
2989 LDXXSHARED= @LDXXSHARED@
2990 LDDLLFLAGS= @LDDLLFLAGS@
2992 STRIPFLAGS= --strip-unneeded
2997 WINEBUILD = @WINEBUILD@
3000 # Installation infos
3003 INSTALL_PROGRAM = $(INSTALL)
3004 INSTALL_DATA = $(INSTALL) -m 644
3006 exec_prefix = @exec_prefix@
3014 OBJS = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \
3015 $(SPEC_SRCS:.spec=.spec.o)
3016 CLEAN_FILES = *.spec.c y.tab.c y.tab.h lex.yy.c \
3018 \\\#*\\\# *~ *% .\\\#*
3022 .SUFFIXES: .cpp .rc .res .tmp.o .spec .spec.c .spec.o
3025 $(CC) -c $(ALLCFLAGS) -o $@ $<
3028 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
3031 $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
3034 $(LD_PATH) $(WRC) $(ALLWRCFLAGS) -o $@ $<
3036 .PHONY: all install uninstall clean distclean depend dummy
3038 # 'all
' target first in case the enclosing Makefile didn't define any target
3042 # Rules for makefile
3044 Makefile
: Makefile
.in $(TOPSRCDIR
)/configure
3045 @echo Makefile is older than
$?
, please rerun
$(TOPSRCDIR
)/configure
3048 # Rules for cleaning
3050 $(SUBDIRS
:%=%/__clean__
): dummy
3051 cd
`dirname $@` && $(MAKE
) clean
3053 $(EXTRASUBDIRS
:%=%/__clean__
): dummy
3054 -cd
`dirname $@` && $(RM
) $(CLEAN_FILES
)
3056 clean
:: $(SUBDIRS
:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__
)
3057 $(RM
) $(CLEAN_FILES
) $(RC_SRCS
:.rc
=.res
) $(OBJS
) $(SPEC_SRCS
:.spec
=.tmp
.o
) $(EXES
) $(EXES
:%=%.so
) $(DLLS
)
3059 # Rules for installing
3061 $(SUBDIRS
:%=%/__install__
): dummy
3062 cd
`dirname $@` && $(MAKE
) install
3064 $(SUBDIRS
:%=%/__uninstall__
): dummy
3065 cd
`dirname $@` && $(MAKE
) uninstall
3074 # End of global rules
3077 * Copyright
2000 Francois Gouget
<fgouget
@codeweavers.com
> for CodeWeavers
3085 #include <windows.h>
3090 * Describe the wrapped application
3094 * This is either CUIEXE
for a console based application
or
3095 * GUIEXE
for a regular windows application
.
3097 #define APP_TYPE ##WINEMAKER_APP_TYPE##
3100 * This is the application library
's base name, i.e. 'hello
' if the
3101 * library is called 'libhello
.so
'.
3103 static char* appName = ##WINEMAKER_APP_NAME##;
3106 * This is the name of the application's Windows module
. If left NULL
3107 * then appName is used
.
3109 static char
* appModule
= NULL
;
3112 * This is the application
's entry point. This is usually "WinMain" for a
3113 * GUIEXE and 'main
' for a CUIEXE application.
3115 static char* appInit = ##WINEMAKER_APP_INIT##;
3118 * This is either non-NULL for MFC-based applications and is the name of the
3119 * MFC's module
. This is the module
in which we will take the
'WinMain'
3122 static char
* mfcModule
= ##WINEMAKER_APP_MFC##;
3127 * Implement the main
.
3130 #if APP_TYPE == GUIEXE
3131 typedef
int WINAPI
(*WinMainFunc
)(HINSTANCE hInstance
, HINSTANCE hPrevInstance
,
3132 PSTR szCmdLine
, int iCmdShow
);
3134 typedef
int WINAPI
(*MainFunc
)(int argc
, char
** argv
, char
** envp
);
3137 #if APP_TYPE == GUIEXE
3138 int WINAPI WinMain
(HINSTANCE hInstance
, HINSTANCE hPrevInstance
,
3139 PSTR szCmdLine
, int iCmdShow
)
3141 int WINAPI Main
(int argc
, char
** argv
, char
** envp
)
3145 HINSTANCE hApp
,hMFC
,hMain
;
3150 /* Load the application's library */
3151 libName
=(char
*)malloc
(strlen
(appName
)+5+3+1);
3152 /* FIXME
: we should get the wrapper
's path and use that as the base for
3155 sprintf(libName,"./lib%s.so",appName);
3156 appLibrary=dlopen(libName,RTLD_NOW);
3157 if (appLibrary==NULL) {
3158 sprintf(libName,"lib%s.so",appName);
3159 appLibrary=dlopen(libName,RTLD_NOW);
3161 if (appLibrary==NULL) {
3162 char format[]="Could not load the %s library:\r\n%s";
3167 msg=(char*)malloc(strlen(format)+strlen(libName)+strlen(error));
3168 sprintf(msg,format,libName,error);
3169 MessageBox(NULL,msg,"dlopen error",MB_OK);
3174 /* Then if this application is MFC based, load the MFC module */
3175 /* FIXME: I'm
not sure this is really necessary
*/
3176 if (mfcModule
!=NULL
) {
3177 hMFC
=LoadLibrary
(mfcModule
);
3179 char format
[]="Could not load the MFC module %s (%d)";
3182 msg
=(char
*)malloc
(strlen
(format
)+strlen
(mfcModule
)+11);
3183 sprintf(msg
,format
,mfcModule
,GetLastError
());
3184 MessageBox
(NULL
,msg
,"LoadLibrary error",MB_OK
);
3188 /* MFC is a special case
: the WinMain is
in the MFC library
,
3189 * instead of the application
's library.
3196 /* Load the application's module
*/
3197 if (appModule
==NULL
) {
3200 hApp
=LoadLibrary
(appModule
);
3202 char format
[]="Could not load the application's module %s (%d)";
3205 msg
=(char
*)malloc
(strlen
(format
)+strlen
(appModule
)+11);
3206 sprintf(msg
,format
,appModule
,GetLastError
());
3207 MessageBox
(NULL
,msg
,"LoadLibrary error",MB_OK
);
3210 } else if (hMain
==NULL
) {
3214 /* Get the address of the application's entry point */
3215 appMain
=(WinMainFunc
*)GetProcAddress
(hMain
, appInit
);
3216 if (appMain
==NULL
) {
3217 char format
[]="Could not get the address of %s (%d)";
3220 msg
=(char
*)malloc
(strlen
(format
)+strlen
(appInit
)+11);
3221 sprintf(msg
,format
,appInit
,GetLastError
());
3222 MessageBox
(NULL
,msg
,"GetProcAddress error",MB_OK
);
3227 /* And finally invoke the application's entry point */
3228 #if APP_TYPE == GUIEXE
3229 retcode
=(*((WinMainFunc
)appMain
))(hApp
,hPrevInstance
,szCmdLine
,iCmdShow
);
3231 retcode
=(*((MainFunc
)appMain
))(argc
,argv
,envp
);
3234 /* Cleanup and done */
3239 dlclose
(appLibrary
);