Fix the Wine detection when using the Wine source tree.
[wine] / tools / winemaker
1 #!/usr/bin/perl -w
2 use strict;
3
4 # Copyright 2000-2002 Francois Gouget for CodeWeavers
5 # fgouget@codeweavers.com
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 #
21
22 my $version="0.5.9";
23
24 use Cwd;
25 use File::Basename;
26 use File::Copy;
27
28
29
30 #####
31 #
32 # Options
33 #
34 #####
35
36 # The following constants define what we do with the case of filenames
37
38 ##
39 # Never rename a file to lowercase
40 my $OPT_LOWER_NONE=0;
41
42 ##
43 # Rename all files to lowercase
44 my $OPT_LOWER_ALL=1;
45
46 ##
47 # Rename only files that are all uppercase to lowercase
48 my $OPT_LOWER_UPPERCASE=2;
49
50
51 # The following constants define whether to ask questions or not
52
53 ##
54 # No (synonym of never)
55 my $OPT_ASK_NO=0;
56
57 ##
58 # Yes (always)
59 my $OPT_ASK_YES=1;
60
61 ##
62 # Skip the questions till the end of this scope
63 my $OPT_ASK_SKIP=-1;
64
65
66 # General options
67
68 ##
69 # This is the directory in which winemaker will operate.
70 my $opt_work_dir;
71
72 ##
73 # Make a backup of the files
74 my $opt_backup;
75
76 ##
77 # Defines which files to rename
78 my $opt_lower;
79
80 ##
81 # If we don't find the file referenced by an include, lower it
82 my $opt_lower_include;
83
84 ##
85 # If true then winemaker should not attempt to fix the source.  This is
86 # useful if the source is known to be already in a suitable form and is
87 # readonly
88 my $opt_no_source_fix;
89
90 # Options for the 'Source' method
91
92 ##
93 # Specifies that we have only one target so that all sources relate
94 # to this target. By default this variable is left undefined which
95 # means winemaker should try to find out by itself what the targets
96 # are. If not undefined then this contains the name of the default
97 # target (without the extension).
98 my $opt_single_target;
99
100 ##
101 # If '$opt_single_target' has been specified then this is the type of
102 # that target. Otherwise it specifies whether the default target type
103 # is guiexe or cuiexe.
104 my $opt_target_type;
105
106 ##
107 # Contains the default set of flags to be used when creating a new target.
108 my $opt_flags;
109
110 ##
111 # If true then winemaker should ask questions to the user as it goes
112 # along.
113 my $opt_is_interactive;
114 my $opt_ask_project_options;
115 my $opt_ask_target_options;
116
117 ##
118 # If false then winemaker should not generate any file, i.e.
119 # no makefiles, but also no .spec files, no configure.in, etc.
120 my $opt_no_generated_files;
121
122 ##
123 # If true then winemaker should not generate the spec files.
124 # This is useful if winemaker is being used to create a build environment
125 my $opt_no_generated_specs;
126
127 ##
128 # Specifies not to print the banner if set.
129 my $opt_no_banner;
130
131
132
133 #####
134 #
135 # Target modelization
136 #
137 #####
138
139 # The description of a target is stored in an array. The constants
140 # below identify what is stored at each index of the array.
141
142 ##
143 # This is the name of the target.
144 my $T_NAME=0;
145
146 ##
147 # Defines the type of target we want to build. See the TT_xxx
148 # constants below
149 my $T_TYPE=1;
150
151 ##
152 # Defines the target's enty point, i.e. the function that is called
153 # on startup.
154 my $T_INIT=2;
155
156 ##
157 # This is a bitfield containing flags refining the way the target
158 # should be handled. See the TF_xxx constants below
159 my $T_FLAGS=3;
160
161 ##
162 # This is a reference to an array containing the list of the
163 # resp. C, C++, RC, other (.h, .hxx, etc.) source files.
164 my $T_SOURCES_C=4;
165 my $T_SOURCES_CXX=5;
166 my $T_SOURCES_RC=6;
167 my $T_SOURCES_MISC=7;
168
169 ##
170 # This is a reference to an array containing the list of macro
171 # definitions
172 my $T_DEFINES=8;
173
174 ##
175 # This is a reference to an array containing the list of directory
176 # names that constitute the include path
177 my $T_INCLUDE_PATH=9;
178
179 ##
180 # Same as T_INCLUDE_PATH but for the dll search path
181 my $T_DLL_PATH=10;
182
183 ##
184 # The list of Windows dlls to import
185 my $T_DLLS=11;
186
187 ##
188 # Same as T_INCLUDE_PATH but for the library search path
189 my $T_LIBRARY_PATH=12;
190
191 ##
192 # The list of Unix libraries to link with
193 my $T_LIBRARIES=13;
194
195 ##
196 # The list of dependencies between targets
197 my $T_DEPENDS=14;
198
199
200 # The following constants define the recognized types of target
201
202 ##
203 # This is not a real target. This type of target is used to collect
204 # the sources that don't seem to belong to any other target. Thus no
205 # real target is generated for them, we just put the sources of the
206 # fake target in the global source list.
207 my $TT_SETTINGS=0;
208
209 ##
210 # For executables in the windows subsystem
211 my $TT_GUIEXE=1;
212
213 ##
214 # For executables in the console subsystem
215 my $TT_CUIEXE=2;
216
217 ##
218 # For dynamically linked libraries
219 my $TT_DLL=3;
220
221
222 # The following constants further refine how the target should be handled
223
224 ##
225 # This target needs a wrapper
226 my $TF_WRAP=1;
227
228 ##
229 # This target is a wrapper
230 my $TF_WRAPPER=2;
231
232 ##
233 # This target is an MFC-based target
234 my $TF_MFC=4;
235
236 ##
237 # User has specified --nomfc option for this target or globally
238 my $TF_NOMFC=8;
239
240 ##
241 # --nodlls option: Do not use standard DLL set
242 my $TF_NODLLS=16;
243
244 ##
245 # Initialize a target:
246 # - set the target type to TT_SETTINGS, i.e. no real target will
247 #   be generated.
248 sub target_init($)
249 {
250   my $target=$_[0];
251
252   @$target[$T_TYPE]=$TT_SETTINGS;
253   # leaving $T_INIT undefined
254   @$target[$T_FLAGS]=$opt_flags;
255   @$target[$T_SOURCES_C]=[];
256   @$target[$T_SOURCES_CXX]=[];
257   @$target[$T_SOURCES_RC]=[];
258   @$target[$T_SOURCES_MISC]=[];
259   @$target[$T_DEFINES]=[];
260   @$target[$T_INCLUDE_PATH]=[];
261   @$target[$T_DLL_PATH]=[];
262   @$target[$T_DLLS]=[];
263   @$target[$T_LIBRARY_PATH]=[];
264   @$target[$T_LIBRARIES]=[];
265   @$target[$T_DEPENDS]=[];
266 }
267
268 sub get_default_init($)
269 {
270   my $type=$_[0];
271   if ($type == $TT_GUIEXE) {
272     return "WinMain";
273   } elsif ($type == $TT_CUIEXE) {
274     return "main";
275   } elsif ($type == $TT_DLL) {
276     return "DllMain";
277   }
278 }
279
280
281
282 #####
283 #
284 # Project modelization
285 #
286 #####
287
288 # First we have the notion of project. A project is described by an
289 # array (since we don't have structs in perl). The constants below
290 # identify what is stored at each index of the array.
291
292 ##
293 # This is the path in which this project is located. In other
294 # words, this is the path to  the Makefile.
295 my $P_PATH=0;
296
297 ##
298 # This index contains a reference to an array containing the project-wide
299 # settings. The structure of that arrray is actually identical to that of
300 # a regular target since it can also contain extra sources.
301 my $P_SETTINGS=1;
302
303 ##
304 # This index contains a reference to an array of targets for this
305 # project. Each target describes how an executable or library is to
306 # be built. For each target this description takes the same form as
307 # that of the project: an array. So this entry is an array of arrays.
308 my $P_TARGETS=2;
309
310 ##
311 # Initialize a project:
312 # - set the project's path
313 # - initialize the target list
314 # - create a default target (will be removed later if unnecessary)
315 sub project_init($$)
316 {
317   my $project=$_[0];
318   my $path=$_[1];
319
320   my $project_settings=[];
321   target_init($project_settings);
322
323   @$project[$P_PATH]=$path;
324   @$project[$P_SETTINGS]=$project_settings;
325   @$project[$P_TARGETS]=[];
326 }
327
328
329
330 #####
331 #
332 # Global variables
333 #
334 #####
335
336 my %warnings;
337
338 my %templates;
339
340 ##
341 # Contains the list of all projects. This list tells us what are
342 # the subprojects of the main Makefile and where we have to generate
343 # Makefiles.
344 my @projects=();
345
346 ##
347 # This is the main project, i.e. the one in the "." directory.
348 # It may well be empty in which case the main Makefile will only
349 # call out subprojects.
350 my @main_project;
351
352 ##
353 # Contains the defaults for the include path, etc.
354 # We store the defaults as if this were a target except that we only
355 # exploit the defines, include path, library path, library list and misc
356 # sources fields.
357 my @global_settings;
358
359 ##
360 # If one of the projects requires the MFc then we set this global variable
361 # to true so that configure asks the user to provide a path tothe MFC
362 my $needs_mfc=0;
363
364
365
366 #####
367 #
368 # Utility functions
369 #
370 #####
371
372 ##
373 # Cleans up a name to make it an acceptable Makefile
374 # variable name.
375 sub canonize($)
376 {
377   my $name=$_[0];
378
379   $name =~ tr/a-zA-Z0-9_/_/c;
380   return $name;
381 }
382
383 ##
384 # Returns true is the specified pathname is absolute.
385 # Note: pathnames that start with a variable '$' or
386 # '~' are considered absolute.
387 sub is_absolute($)
388 {
389   my $path=$_[0];
390
391   return ($path =~ /^[\/~\$]/);
392 }
393
394 ##
395 # Performs a binary search looking for the specified item
396 sub bsearch($$)
397 {
398   my $array=$_[0];
399   my $item=$_[1];
400   my $last=@{$array}-1;
401   my $first=0;
402
403   while ($first<=$last) {
404     my $index=int(($first+$last)/2);
405     my $cmp=@$array[$index] cmp $item;
406     if ($cmp<0) {
407       $first=$index+1;
408     } elsif ($cmp>0) {
409       $last=$index-1;
410     } else {
411       return $index;
412     }
413   }
414 }
415
416
417
418 #####
419 #
420 # 'Source'-based Project analysis
421 #
422 #####
423
424 ##
425 # Allows the user to specify makefile and target specific options
426 # - target: the structure in which to store the results
427 # - options: the string containing the options
428 sub source_set_options($$)
429 {
430   my $target=$_[0];
431   my $options=$_[1];
432
433   #FIXME: we must deal with escaping of stuff and all
434   foreach my $option (split / /,$options) {
435     if (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-D/) {
436       push @{@$target[$T_DEFINES]},$option;
437     } elsif (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-I/) {
438       push @{@$target[$T_INCLUDE_PATH]},$option;
439     } elsif ($option =~ /^-P/) {
440       push @{@$target[$T_DLL_PATH]},"-L$'";
441     } elsif ($option =~ /^-i/) {
442       push @{@$target[$T_DLLS]},"$'";
443     } elsif ($option =~ /^-L/) {
444       push @{@$target[$T_LIBRARY_PATH]},$option;
445     } elsif ($option =~ /^-l/) {
446       push @{@$target[$T_LIBRARIES]},"$'";
447     } elsif ($option =~ /^--wrap/) {
448       if (@$target[$T_TYPE] != $TT_DLL) {
449         @$target[$T_FLAGS]|=$TF_WRAP;
450       } else {
451         print STDERR "warning: option --wrap is illegal for DLLs - ignoring";
452       };
453     } elsif ($option =~ /^--nowrap/) {
454       if (@$target[$T_TYPE] != $TT_DLL) {
455         @$target[$T_FLAGS]&=~$TF_WRAP;
456       } else {
457         print STDERR "warning: option --nowrap is illegal for DLLs - ignoring";
458       }
459     } elsif ($option =~ /^--mfc/) {
460       @$target[$T_FLAGS]|=$TF_MFC;
461       @$target[$T_FLAGS]&=~$TF_NOMFC;
462     } elsif ($option =~ /^--nomfc/) {
463       @$target[$T_FLAGS]&=~$TF_MFC;
464       @$target[$T_FLAGS]|=$TF_NOMFC;
465     } elsif ($option =~ /^--nodlls/) {
466       @$target[$T_FLAGS]|=$TF_NODLLS;
467     } else {
468       print STDERR "error: unknown option \"$option\"\n";
469       return 0;
470     }
471   }
472   if (@$target[$T_TYPE] != $TT_DLL &&
473       @$target[$T_FLAGS] & $TF_MFC &&
474       !(@$target[$T_FLAGS] & $TF_WRAP)) {
475     print STDERR "info: option --mfc requires --wrap";
476     @$target[$T_FLAGS]|=$TF_WRAP;
477   }
478   return 1;
479 }
480
481 ##
482 # Scans the specified directory to:
483 # - see if we should create a Makefile in this directory. We normally do
484 #   so if we find a project file and sources
485 # - get a list of targets for this directory
486 # - get the list of source files
487 sub source_scan_directory($$$$);
488 sub source_scan_directory($$$$)
489 {
490   # a reference to the parent's project
491   my $parent_project=$_[0];
492   # the full relative path to the current directory, including a
493   # trailing '/', or an empty string if this is the top level directory
494   my $path=$_[1];
495   # the name of this directory, including a trailing '/', or an empty
496   # string if this is the top level directory
497   my $dirname=$_[2];
498   # if set then no targets will be looked for and the sources will all
499   # end up in the parent_project's 'misc' bucket
500   my $no_target=$_[3];
501
502   # reference to the project for this directory. May not be used
503   my $project;
504   # list of targets found in the 'current' directory
505   my %targets;
506   # list of sources found in the current directory
507   my @sources_c=();
508   my @sources_cxx=();
509   my @sources_rc=();
510   my @sources_misc=();
511   # true if this directory contains a Windows project
512   my $has_win_project=0;
513   # If we don't find any executable/library then we might make up targets
514   # from the list of .dsp/.mak files we find since they usually have the
515   # same name as their target.
516   my @dsp_files=();
517   my @mak_files=();
518
519   if (defined $opt_single_target or $dirname eq "") {
520     # Either there is a single target and thus a single project,
521     # or we are in the top level directory for which a project
522     # already exists
523     $project=$parent_project;
524   } else {
525     $project=[];
526     project_init($project,$path);
527   }
528   my $project_settings=@$project[$P_SETTINGS];
529
530   # First find out what this directory contains:
531   # collect all sources, targets and subdirectories
532   my $directory=get_directory_contents($path);
533   foreach my $dentry (@$directory) {
534     if ($dentry =~ /^\./) {
535       next;
536     }
537     my $fullentry="$path$dentry";
538     if (-d "$fullentry") {
539       if ($dentry =~ /^(Release|Debug)/i) {
540         # These directories are often used to store the object files and the
541         # resulting executable/library. They should not contain anything else.
542         my @candidates=grep /\.(exe|dll)$/i, @{get_directory_contents("$fullentry")};
543         foreach my $candidate (@candidates) {
544           if ($candidate =~ s/\.exe$//i) {
545             $targets{$candidate}=1;
546           } elsif ($candidate =~ s/^(.*)\.dll$/lib$1.so/i) {
547             $targets{$candidate}=1;
548           }
549         }
550       } elsif ($dentry =~ /^include/i) {
551         # This directory must contain headers we're going to need
552         push @{@$project_settings[$T_INCLUDE_PATH]},"-I$dentry";
553         source_scan_directory($project,"$fullentry/","$dentry/",1);
554       } else {
555         # Recursively scan this directory. Any source file that cannot be
556         # attributed to a project in one of the subdirectories will be
557         # attributed to this project.
558         source_scan_directory($project,"$fullentry/","$dentry/",$no_target);
559       }
560     } elsif (-f "$fullentry") {
561       if ($dentry =~ s/\.exe$//i) {
562         $targets{$dentry}=1;
563       } elsif ($dentry =~ s/^(.*)\.dll$/lib$1.so/i) {
564         $targets{$dentry}=1;
565       } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.spec\.c$/) {
566         push @sources_c,"$dentry";
567       } elsif ($dentry =~ /\.(cpp|cxx)$/i) {
568         if ($dentry =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
569           push @sources_misc,"$dentry";
570           @$project_settings[$T_FLAGS]|=$TF_MFC;
571         } else {
572           push @sources_cxx,"$dentry";
573         }
574       } elsif ($dentry =~ /\.rc$/i) {
575         push @sources_rc,"$dentry";
576       } elsif ($dentry =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
577         push @sources_misc,"$dentry";
578         if ($dentry =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
579           @$project_settings[$T_FLAGS]|=$TF_MFC;
580         }
581       } elsif ($dentry =~ /\.dsp$/i) {
582         push @dsp_files,"$dentry";
583         $has_win_project=1;
584       } elsif ($dentry =~ /\.mak$/i) {
585         push @mak_files,"$dentry";
586         $has_win_project=1;
587       } elsif ($dentry =~ /^makefile/i) {
588         $has_win_project=1;
589       }
590     }
591   }
592   closedir(DIRECTORY);
593
594   # If we have a single target then all we have to do is assign
595   # all the sources to it and we're done
596   # FIXME: does this play well with the --interactive mode?
597   if ($opt_single_target) {
598     my $target=@{@$project[$P_TARGETS]}[0];
599     push @{@$target[$T_SOURCES_C]},map "$path$_",@sources_c;
600     push @{@$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx;
601     push @{@$target[$T_SOURCES_RC]},map "$path$_",@sources_rc;
602     push @{@$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc;
603     return;
604   }
605   if ($no_target) {
606     my $parent_settings=@$parent_project[$P_SETTINGS];
607     push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_c;
608     push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_cxx;
609     push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_rc;
610     push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
611     push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
612     return;
613   }
614
615   my $source_count=@sources_c+@sources_cxx+@sources_rc+
616                    @{@$project_settings[$T_SOURCES_C]}+
617                    @{@$project_settings[$T_SOURCES_CXX]}+
618                    @{@$project_settings[$T_SOURCES_RC]};
619   if ($source_count == 0) {
620     # A project without real sources is not a project, get out!
621     if ($project!=$parent_project) {
622       my $parent_settings=@$parent_project[$P_SETTINGS];
623       push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
624       push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
625     }
626     return;
627   }
628   #print "targets=",%targets,"\n";
629   #print "target_count=$target_count\n";
630   #print "has_win_project=$has_win_project\n";
631   #print "dirname=$dirname\n";
632
633   my $target_count;
634   if (($has_win_project != 0) or ($dirname eq "")) {
635     # Deal with cases where we could not find any executable/library, and
636     # thus have no target, although we did find some sort of windows project.
637     $target_count=keys %targets;
638     if ($target_count == 0) {
639       # Try to come up with a target list based on .dsp/.mak files
640       my $prj_list;
641       if (@dsp_files > 0) {
642         $prj_list=\@dsp_files;
643       } else {
644         $prj_list=\@mak_files;
645       }
646       foreach my $filename (@$prj_list) {
647         $filename =~ s/\.(dsp|mak)$//i;
648         if ($opt_target_type == $TT_DLL) {
649           $filename = "lib$filename.so";
650         }
651         $targets{$filename}=1;
652       }
653       $target_count=keys %targets;
654       if ($target_count == 0) {
655         # Still nothing, try the name of the directory
656         my $name;
657         if ($dirname eq "") {
658           # Bad luck, this is the top level directory!
659           $name=(split /\//, cwd)[-1];
660         } else {
661           $name=$dirname;
662           # Remove the trailing '/'. Also eliminate whatever is after the last
663           # '.' as it is likely to be meaningless (.orig, .new, ...)
664           $name =~ s+(/|\.[^.]*)$++;
665           if ($name eq "src") {
666             # 'src' is probably a subdirectory of the real project directory.
667             # Try again with the parent (if any).
668             my $parent=$path;
669             if ($parent =~ s+([^/]*)/[^/]*/$+$1+) {
670               $name=$parent;
671             } else {
672               $name=(split /\//, cwd)[-1];
673             }
674           }
675         }
676         $name =~ s+(/|\.[^.]*)$++;
677         if ($opt_target_type == $TT_DLL) {
678           $name = "lib$name.so";
679         }
680         $targets{$name}=1;
681       }
682     }
683
684     # Ask confirmation to the user if he wishes so
685     if ($opt_is_interactive == $OPT_ASK_YES) {
686       my $target_list=join " ",keys %targets;
687       print "\n*** In ",($path?$path:"./"),"\n";
688       print "* winemaker found the following list of (potential) targets\n";
689       print "*   $target_list\n";
690       print "* Type enter to use it as is, your own comma-separated list of\n";
691       print "* targets, 'none' to assign the source files to a parent directory,\n";
692       print "* or 'ignore' to ignore everything in this directory tree.\n";
693       print "* Target list:\n";
694       $target_list=<STDIN>;
695       chomp $target_list;
696       if ($target_list eq "") {
697         # Keep the target list as is, i.e. do nothing
698       } elsif ($target_list eq "none") {
699         # Empty the target list
700         undef %targets;
701       } elsif ($target_list eq "ignore") {
702         # Ignore this subtree altogether
703         return;
704       } else {
705         undef %targets;
706         foreach my $target (split /,/,$target_list) {
707           $target =~ s+^\s*++;
708           $target =~ s+\s*$++;
709           # Also accept .exe and .dll as a courtesy
710           $target =~ s+(.*)\.dll$+lib$1.so+;
711           $target =~ s+\.exe$++;
712           $targets{$target}=1;
713         }
714       }
715     }
716   }
717
718   # If we have no project at this level, then transfer all
719   # the sources to the parent project
720   $target_count=keys %targets;
721   if ($target_count == 0) {
722     if ($project!=$parent_project) {
723       my $parent_settings=@$parent_project[$P_SETTINGS];
724       push @{@$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c;
725       push @{@$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx;
726       push @{@$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc;
727       push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
728       push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
729     }
730     return;
731   }
732
733   # Otherwise add this project to the project list, except for
734   # the main project which is already in the list.
735   if ($dirname ne "") {
736     push @projects,$project;
737   }
738
739   # Ask for project-wide options
740   if ($opt_ask_project_options == $OPT_ASK_YES) {
741     my $flag_desc="";
742     if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
743       $flag_desc="mfc";
744     }
745     if ((@$project_settings[$T_FLAGS] & $TF_WRAP)!=0) {
746       if ($flag_desc ne "") {
747         $flag_desc.=", ";
748       }
749       $flag_desc.="wrapped";
750     }
751     print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc/--wrap),\n";
752     if (defined $flag_desc) {
753       print "* (currently $flag_desc)\n";
754     }
755     print "* or 'skip' to skip the target specific options,\n";
756     print "* or 'never' to not be asked this question again:\n";
757     while (1) {
758       my $options=<STDIN>;
759       chomp $options;
760       if ($options eq "skip") {
761         $opt_ask_target_options=$OPT_ASK_SKIP;
762         last;
763       } elsif ($options eq "never") {
764         $opt_ask_project_options=$OPT_ASK_NO;
765         last;
766       } elsif (source_set_options($project_settings,$options)) {
767         last;
768       }
769       print "Please re-enter the options:\n";
770     }
771   }
772
773   # - Create the targets
774   # - Check if we have both libraries and programs
775   # - Match each target with source files (sort in reverse
776   #   alphabetical order to get the longest matches first)
777   my @local_dlls=();
778   my @local_depends=();
779   my @exe_list=();
780   foreach my $target_name (sort { $b cmp $a } keys %targets) {
781     # Create the target...
782     my $basename;
783     my $target=[];
784     target_init($target);
785     @$target[$T_NAME]=$target_name;
786     @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS];
787     if ($target_name =~ /^lib(.*)\.so$/) {
788       @$target[$T_TYPE]=$TT_DLL;
789       @$target[$T_INIT]=get_default_init($TT_DLL);
790       @$target[$T_FLAGS]&=~$TF_WRAP;
791       $basename=$1;
792       push @local_depends,$target_name;
793       push @local_dlls,$basename;
794     } else {
795       @$target[$T_TYPE]=$opt_target_type;
796       @$target[$T_INIT]=get_default_init($opt_target_type);
797       $basename=$target_name;
798       push @exe_list,$target;
799     }
800     # This is the default link list of Visual Studio, except odbccp32
801     # which we don't have in Wine. Also I add ntdll which seems
802     # necessary for Winelib.
803     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);
804     if (@$target[$T_FLAGS] & $TF_NODLLS == 0) {
805       @$target[$T_DLLS]=\@std_dlls;
806     } else {
807       @$target[$T_DLLS]=[];
808     }
809     push @{@$project[$P_TARGETS]},$target;
810
811     # Ask for target-specific options
812     if ($opt_ask_target_options == $OPT_ASK_YES) {
813       my $flag_desc="";
814       if ((@$target[$T_FLAGS] & $TF_MFC)!=0) {
815         $flag_desc=" (mfc";
816       }
817       if ((@$target[$T_FLAGS] & $TF_WRAP)!=0) {
818         if ($flag_desc ne "") {
819           $flag_desc.=", ";
820         } else {
821           $flag_desc=" (";
822         }
823         $flag_desc.="wrapped";
824       }
825       if ($flag_desc ne "") {
826         $flag_desc.=")";
827       }
828       print "* Specify any link option (-P/-i/-L/-l/--mfc/--wrap) specific to the target\n";
829       print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n";
830       while (1) {
831         my $options=<STDIN>;
832         chomp $options;
833         if ($options eq "never") {
834           $opt_ask_target_options=$OPT_ASK_NO;
835           last;
836         } elsif (source_set_options($target,$options)) {
837           last;
838         }
839         print "Please re-enter the options:\n";
840       }
841     }
842     push @{@$target[$T_DLL_PATH]},"-L\$(WINE_DLL_ROOT)";
843     if (@$target[$T_FLAGS] & $TF_MFC) {
844       @$project_settings[$T_FLAGS]|=$TF_MFC;
845       push @{@$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)";
846       push @{@$target[$T_DLLS]},"mfc.dll";
847       # FIXME: Link with the MFC in the Unix sense, until we
848       # start exporting the functions properly.
849       push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
850       push @{@$target[$T_LIBRARIES]},"mfc";
851     }
852
853     # Match sources...
854     if ($target_count == 1) {
855       push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c;
856       @$project_settings[$T_SOURCES_C]=[];
857       @sources_c=();
858
859       push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx;
860       @$project_settings[$T_SOURCES_CXX]=[];
861       @sources_cxx=();
862
863       push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc;
864       @$project_settings[$T_SOURCES_RC]=[];
865       @sources_rc=();
866
867       push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc;
868       # No need for sorting these sources
869       @$project_settings[$T_SOURCES_MISC]=[];
870       @sources_misc=();
871     } else {
872       foreach my $source (@sources_c) {
873         if ($source =~ /^$basename/i) {
874           push @{@$target[$T_SOURCES_C]},$source;
875           $source="";
876         }
877       }
878       foreach my $source (@sources_cxx) {
879         if ($source =~ /^$basename/i) {
880           push @{@$target[$T_SOURCES_CXX]},$source;
881           $source="";
882         }
883       }
884       foreach my $source (@sources_rc) {
885         if ($source =~ /^$basename/i) {
886           push @{@$target[$T_SOURCES_RC]},$source;
887           $source="";
888         }
889       }
890       foreach my $source (@sources_misc) {
891         if ($source =~ /^$basename/i) {
892           push @{@$target[$T_SOURCES_MISC]},$source;
893           $source="";
894         }
895       }
896     }
897     @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}];
898     @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}];
899     @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}];
900     @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}];
901   }
902   if ($opt_ask_target_options == $OPT_ASK_SKIP) {
903     $opt_ask_target_options=$OPT_ASK_YES;
904   }
905
906   if (@$project_settings[$T_FLAGS] & $TF_MFC) {
907     push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
908   }
909   # The sources that did not match, if any, go to the extra
910   # source list of the project settings
911   foreach my $source (@sources_c) {
912     if ($source ne "") {
913       push @{@$project_settings[$T_SOURCES_C]},$source;
914     }
915   }
916   @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}];
917   foreach my $source (@sources_cxx) {
918     if ($source ne "") {
919       push @{@$project_settings[$T_SOURCES_CXX]},$source;
920     }
921   }
922   @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}];
923   foreach my $source (@sources_rc) {
924     if ($source ne "") {
925       push @{@$project_settings[$T_SOURCES_RC]},$source;
926     }
927   }
928   @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}];
929   foreach my $source (@sources_misc) {
930     if ($source ne "") {
931       push @{@$project_settings[$T_SOURCES_MISC]},$source;
932     }
933   }
934   @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}];
935
936   # Finally if we are building both libraries and programs in
937   # this directory, then the programs should be linked with all
938   # the libraries
939   if (@local_dlls > 0 and @exe_list > 0) {
940     foreach my $target (@exe_list) {
941       push @{@$target[$T_DLL_PATH]},"-L.";
942       push @{@$target[$T_DLLS]},map { "$_.dll" } @local_dlls;
943       # Also link in the Unix sense since none of the functions
944       # will be exported.
945       push @{@$target[$T_LIBRARY_PATH]},"-L.";
946       push @{@$target[$T_LIBRARIES]},@local_dlls;
947       push @{@$target[$T_DEPENDS]},@local_depends;
948     }
949   }
950 }
951
952 ##
953 # Scan the source directories in search of things to build
954 sub source_scan()
955 {
956   # If there's a single target then this is going to be the default target
957   if (defined $opt_single_target) {
958     # Create the main target
959     my $main_target=[];
960     target_init($main_target);
961     if ($opt_target_type == $TT_DLL) {
962       @$main_target[$T_NAME]="lib$opt_single_target.so";
963     } else {
964       @$main_target[$T_NAME]="$opt_single_target";
965     }
966     @$main_target[$T_TYPE]=$opt_target_type;
967
968     # Add it to the list
969     push @{$main_project[$P_TARGETS]},$main_target;
970   }
971
972   # The main directory is always going to be there
973   push @projects,\@main_project;
974
975   # Now scan the directory tree looking for source files and, maybe, targets
976   print "Scanning the source directories...\n";
977   source_scan_directory(\@main_project,"","",0);
978
979   @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects;
980 }
981
982
983
984 #####
985 #
986 # 'vc.dsp'-based Project analysis
987 #
988 #####
989
990 #sub analyze_vc_dsp
991 #{
992 #
993 #}
994
995
996
997 #####
998 #
999 # Creating the wrapper targets
1000 #
1001 #####
1002
1003 sub postprocess_targets()
1004 {
1005   foreach my $project (@projects) {
1006     foreach my $target (@{@$project[$P_TARGETS]}) {
1007       if ((@$target[$T_FLAGS] & $TF_WRAP) != 0) {
1008         my $wrapper=[];
1009         target_init($wrapper);
1010         @$wrapper[$T_NAME]=@$target[$T_NAME];
1011         @$wrapper[$T_TYPE]=@$target[$T_TYPE];
1012         @$wrapper[$T_INIT]=get_default_init(@$target[$T_TYPE]);
1013         @$wrapper[$T_FLAGS]=$TF_WRAPPER | (@$target[$T_FLAGS] & $TF_MFC);
1014         @$wrapper[$T_DLLS]=[ "kernel32.dll", "ntdll.dll", "user32.dll" ];
1015         push @{@$wrapper[$T_LIBRARIES]}, "dl";
1016         push @{@$wrapper[$T_SOURCES_C]},"@$wrapper[$T_NAME]_wrapper.c";
1017
1018         my $index=bsearch(@$target[$T_SOURCES_C],"@$wrapper[$T_NAME]_wrapper.c");
1019         if (defined $index) {
1020           splice(@{@$target[$T_SOURCES_C]},$index,1);
1021         }
1022         @$target[$T_NAME]="lib@$target[$T_NAME].so";
1023         @$target[$T_TYPE]=$TT_DLL;
1024
1025         push @{@$project[$P_TARGETS]},$wrapper;
1026       }
1027       if ((@$target[$T_FLAGS] & $TF_MFC) != 0) {
1028         @{@$project[$P_SETTINGS]}[$T_FLAGS]|=$TF_MFC;
1029         $needs_mfc=1;
1030       }
1031     }
1032   }
1033 }
1034
1035
1036
1037 #####
1038 #
1039 # Source search
1040 #
1041 #####
1042
1043 ##
1044 # Performs a directory traversal and renames the files so that:
1045 # - they have the case desired by the user
1046 # - their extension is of the appropriate case
1047 # - they don't contain annoying characters like ' ', '$', '#', ...
1048 sub fix_file_and_directory_names($);
1049 sub fix_file_and_directory_names($)
1050 {
1051   my $dirname=$_[0];
1052
1053   if (opendir(DIRECTORY, "$dirname")) {
1054     foreach my $dentry (readdir DIRECTORY) {
1055       if ($dentry =~ /^\./ or $dentry eq "CVS") {
1056         next;
1057       }
1058       # Set $warn to 1 if the user should be warned of the renaming
1059       my $warn=0;
1060
1061       # autoconf and make don't support these characters well
1062       my $new_name=$dentry;
1063       $new_name =~ s/[ \$]/_/g;
1064
1065       # Only all lowercase extensions are supported (because of the
1066       # transformations ':.c=.o') .
1067       if (-f "$dirname/$new_name") {
1068         if ($new_name =~ /\.C$/) {
1069           $new_name =~ s/\.C$/.c/;
1070         }
1071         if ($new_name =~ /\.cpp$/i) {
1072           $new_name =~ s/\.cpp$/.cpp/i;
1073         }
1074         if ($new_name =~ s/\.cxx$/.cpp/i) {
1075           $warn=1;
1076         }
1077         if ($new_name =~ /\.rc$/i) {
1078           $new_name =~ s/\.rc$/.rc/i;
1079         }
1080         # And this last one is to avoid confusion then running make
1081         if ($new_name =~ s/^makefile$/makefile.win/) {
1082           $warn=1;
1083         }
1084       }
1085
1086       # Adjust the case to the user's preferences
1087       if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or
1088           ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/)
1089          ) {
1090         $new_name=lc $new_name;
1091       }
1092
1093       # And finally, perform the renaming
1094       if ($new_name ne $dentry) {
1095         if ($warn) {
1096           print STDERR "warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n";
1097         }
1098         if (!rename("$dirname/$dentry","$dirname/$new_name")) {
1099           print STDERR "error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n";
1100           print STDERR "       $!\n";
1101           $new_name=$dentry;
1102         }
1103       }
1104       if (-d "$dirname/$new_name") {
1105         fix_file_and_directory_names("$dirname/$new_name");
1106       }
1107     }
1108     closedir(DIRECTORY);
1109   }
1110 }
1111
1112
1113
1114 #####
1115 #
1116 # Source fixup
1117 #
1118 #####
1119
1120 ##
1121 # This maps a directory name to a reference to an array listing
1122 # its contents (files and directories)
1123 my %directories;
1124
1125 ##
1126 # Retrieves the contents of the specified directory.
1127 # We either get it from the directories hashtable which acts as a
1128 # cache, or use opendir, readdir, closedir and store the result
1129 # in the hashtable.
1130 sub get_directory_contents($)
1131 {
1132   my $dirname=$_[0];
1133   my $directory;
1134
1135   #print "getting the contents of $dirname\n";
1136
1137   # check for a cached version
1138   $dirname =~ s+/$++;
1139   if ($dirname eq "") {
1140     $dirname=cwd;
1141   }
1142   $directory=$directories{$dirname};
1143   if (defined $directory) {
1144     #print "->@$directory\n";
1145     return $directory;
1146   }
1147
1148   # Read this directory
1149   if (opendir(DIRECTORY, "$dirname")) {
1150     my @files=readdir DIRECTORY;
1151     closedir(DIRECTORY);
1152     $directory=\@files;
1153   } else {
1154     # Return an empty list
1155     #print "error: cannot open $dirname\n";
1156     my @files;
1157     $directory=\@files;
1158   }
1159   #print "->@$directory\n";
1160   $directories{$dirname}=$directory;
1161   return $directory;
1162 }
1163
1164 ##
1165 # Try to find a file for the specified filename. The attempt is
1166 # case-insensitive which is why it's not trivial. If a match is
1167 # found then we return the pathname with the correct case.
1168 sub search_from($$)
1169 {
1170   my $dirname=$_[0];
1171   my $path=$_[1];
1172   my $real_path="";
1173
1174   if ($dirname eq "" or $dirname eq ".") {
1175     $dirname=cwd;
1176   } elsif ($dirname =~ m+^[^/]+) {
1177     $dirname=cwd . "/" . $dirname;
1178   }
1179   if ($dirname !~ m+/$+) {
1180     $dirname.="/";
1181   }
1182
1183   foreach my $component (@$path) {
1184     #print "    looking for $component in \"$dirname\"\n";
1185     if ($component eq ".") {
1186       # Pass it as is
1187       $real_path.="./";
1188     } elsif ($component eq "..") {
1189       # Go up one level
1190       $dirname=dirname($dirname) . "/";
1191       $real_path.="../";
1192     } else {
1193       # The file/directory may have been renamed before. Also try to
1194       # match the renamed file.
1195       my $renamed=$component;
1196       $renamed =~ s/[ \$]/_/g;
1197       if ($renamed eq $component) {
1198         undef $renamed;
1199       }
1200
1201       my $directory=get_directory_contents $dirname;
1202       my $found;
1203       foreach my $dentry (@$directory) {
1204         if ($dentry =~ /^$component$/i or
1205             (defined $renamed and $dentry =~ /^$renamed$/i)
1206            ) {
1207           $dirname.="$dentry/";
1208           $real_path.="$dentry/";
1209           $found=1;
1210           last;
1211         }
1212       }
1213       if (!defined $found) {
1214         # Give up
1215         #print "    could not find $component in $dirname\n";
1216         return;
1217       }
1218     }
1219   }
1220   $real_path=~ s+/$++;
1221   #print "    -> found $real_path\n";
1222   return $real_path;
1223 }
1224
1225 ##
1226 # Performs a case-insensitive search for the specified file in the
1227 # include path.
1228 # $line is the line number that should be referenced when an error occurs
1229 # $filename is the file we are looking for
1230 # $dirname is the directory of the file containing the '#include' directive
1231 #    if '"' was used, it is an empty string otherwise
1232 # $project and $target specify part of the include path
1233 sub get_real_include_name($$$$$)
1234 {
1235   my $line=$_[0];
1236   my $filename=$_[1];
1237   my $dirname=$_[2];
1238   my $project=$_[3];
1239   my $target=$_[4];
1240
1241   if ($filename =~ /^([a-zA-Z]:)?[\/]/ or $filename =~ /^[a-zA-Z]:[\/]?/) {
1242     # This is not a relative path, we cannot make any check
1243     my $warning="path:$filename";
1244     if (!defined $warnings{$warning}) {
1245       $warnings{$warning}="1";
1246       print STDERR "warning: cannot check the case of absolute pathnames:\n";
1247       print STDERR "$line:   $filename\n";
1248     }
1249   } else {
1250     # Here's how we proceed:
1251     # - split the filename we look for into its components
1252     # - then for each directory in the include path
1253     #   - trace the directory components starting from that directory
1254     #   - if we fail to find a match at any point then continue with
1255     #     the next directory in the include path
1256     #   - otherwise, rejoice, our quest is over.
1257     my @file_components=split /[\/\\]+/, $filename;
1258     #print "  Searching for $filename from @$project[$P_PATH]\n";
1259
1260     my $real_filename;
1261     if ($dirname ne "") {
1262       # This is an 'include ""' -> look in dirname first.
1263       #print "    in $dirname (include \"\")\n";
1264       $real_filename=search_from($dirname,\@file_components);
1265       if (defined $real_filename) {
1266         return $real_filename;
1267       }
1268     }
1269     my $project_settings=@$project[$P_SETTINGS];
1270     foreach my $include (@{@$target[$T_INCLUDE_PATH]}, @{@$project_settings[$T_INCLUDE_PATH]}) {
1271       my $dirname=$include;
1272       $dirname=~ s+^-I++;
1273       if (!is_absolute($dirname)) {
1274         $dirname="@$project[$P_PATH]$dirname";
1275       } else {
1276         $dirname=~ s+^\$\(TOPSRCDIR\)/++;
1277         $dirname=~ s+^\$\(SRCDIR\)/+@$project[$P_PATH]+;
1278       }
1279       #print "    in $dirname\n";
1280       $real_filename=search_from("$dirname",\@file_components);
1281       if (defined $real_filename) {
1282         return $real_filename;
1283       }
1284     }
1285     my $dotdotpath=@$project[$P_PATH];
1286     $dotdotpath =~ s/[^\/]+/../g;
1287     foreach my $include (@{$global_settings[$T_INCLUDE_PATH]}) {
1288       my $dirname=$include;
1289       $dirname=~ s+^-I++;
1290       $dirname=~ s+^\$\(TOPSRCDIR\)\/++;
1291       $dirname=~ s+^\$\(SRCDIR\)\/+@$project[$P_PATH]+;
1292       #print "    in $dirname  (global setting)\n";
1293       $real_filename=search_from("$dirname",\@file_components);
1294       if (defined $real_filename) {
1295         return $real_filename;
1296       }
1297     }
1298   }
1299   $filename =~ s+\\\\+/+g; # in include ""
1300   $filename =~ s+\\+/+g; # in include <> !
1301   if ($opt_lower_include) {
1302     return lc "$filename";
1303   }
1304   return $filename;
1305 }
1306
1307 sub print_pack($$$)
1308 {
1309   my $indent=$_[0];
1310   my $size=$_[1];
1311   my $trailer=$_[2];
1312
1313   if ($size =~ /^(1|2|4|8)$/) {
1314     print FILEO "$indent#include <pshpack$size.h>$trailer";
1315   } else {
1316     print FILEO "$indent/* winemaker:warning: Unknown size \"$size\". Defaulting to 4 */\n";
1317     print FILEO "$indent#include <pshpack4.h>$trailer";
1318   }
1319 }
1320
1321 ##
1322 # 'Parses' a source file and fixes constructs that would not work with
1323 # Winelib. The parsing is rather simple and not all non-portable features
1324 # are corrected. The most important feature that is corrected is the case
1325 # and path separator of '#include' directives. This requires that each
1326 # source file be associated to a project & target so that the proper
1327 # include path is used.
1328 # Also note that the include path is relative to the directory in which the
1329 # compiler is run, i.e. that of the project, not to that of the file.
1330 sub fix_file($$$)
1331 {
1332   my $filename=$_[0];
1333   my $project=$_[1];
1334   my $target=$_[2];
1335   $filename="@$project[$P_PATH]$filename";
1336   if (! -e $filename) {
1337     return;
1338   }
1339
1340   my $is_rc=($filename =~ /\.(rc2?|dlg)$/i);
1341   my $dirname=dirname($filename);
1342   my $is_mfc=0;
1343   if (defined $target and (@$target[$T_FLAGS] & $TF_MFC)) {
1344     $is_mfc=1;
1345   }
1346
1347   print "  $filename\n";
1348   #FIXME:assuming that because there is a .bak file, this is what we want is
1349   #probably flawed. Or is it???
1350   if (! -e "$filename.bak") {
1351     if (!copy("$filename","$filename.bak")) {
1352       print STDERR "error: unable to make a backup of $filename:\n";
1353       print STDERR "       $!\n";
1354       return;
1355     }
1356   }
1357   if (!open(FILEI,"$filename.bak")) {
1358     print STDERR "error: unable to open $filename.bak for reading:\n";
1359     print STDERR "       $!\n";
1360     return;
1361   }
1362   if (!open(FILEO,">$filename")) {
1363     print STDERR "error: unable to open $filename for writing:\n";
1364     print STDERR "       $!\n";
1365     return;
1366   }
1367   my $line=0;
1368   my $modified=0;
1369   my $rc_block_depth=0;
1370   my $rc_textinclude_state=0;
1371   my @pack_stack;
1372   while (<FILEI>) {
1373     # Remove any trailing CtrlZ, which isn't strictly in the file
1374     if (/\x1A/) {
1375       s/\x1A//;
1376       last if (/^$/)
1377     }
1378     $line++;
1379     s/\r\n$/\n/;
1380     if (!/\n$/) {
1381       # Make sure all files are '\n' terminated
1382       $_ .= "\n";
1383     }
1384     if ($is_rc and !$is_mfc and /^(\s*)(\#\s*include\s*)\"afxres\.h\"/) {
1385       # VC6 automatically includes 'afxres.h', an MFC specific header, in
1386       # the RC files it generates (even in non-MFC projects). So we replace
1387       # it with 'winres.h' its very close standard cousin so that non MFC
1388       # projects can compile in Wine without the MFC sources.
1389       my $warning="mfc:afxres.h";
1390       if (!defined $warnings{$warning}) {
1391         $warnings{$warning}="1";
1392         print STDERR "warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winres.h'\n";
1393         print STDERR "warning: the above warning is issued only once\n";
1394       }
1395       print FILEO "$1/* winemaker: $2\"afxres.h\" */\n";
1396       print FILEO "$1/* winemaker:warning: 'afxres.h' is an MFC specific header. Replacing it with 'winres.h' */\n";
1397       print FILEO "$1$2\"winres.h\"$'";
1398       $modified=1;
1399
1400     } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) {
1401       my $from_file=($2 eq "<"?"":$dirname);
1402       my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1403       print FILEO "$1$2$real_include_name$4$'";
1404       $modified|=($real_include_name ne $3);
1405
1406     } elsif (s/^(\s*)(\#\s*pragma\s+pack\s*\(\s*)//) {
1407       # Pragma pack handling
1408       #
1409       # pack_stack is an array of references describing the stack of
1410       # pack directives currently in effect. Each directive if described
1411       # by a reference to an array containing:
1412       # - "push" for pack(push,...) directives, "" otherwise
1413       # - the directive's identifier at index 1
1414       # - the directive's alignement value at index 2
1415       #
1416       # Don't believe a word of what the documentation says: it's all wrong.
1417       # The code below is based on the actual behavior of Visual C/C++ 6.
1418       my $pack_indent=$1;
1419       my $pack_header=$2;
1420       if (/^(\))/) {
1421         # pragma pack()
1422         # Pushes the default stack alignment
1423         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1424         print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1425         print_pack($pack_indent,4,$');
1426         push @pack_stack, [ "", "", 4 ];
1427
1428       } elsif (/^(pop\s*(,\s*\d+\s*)?\))/) {
1429         # pragma pack(pop)
1430         # pragma pack(pop,n)
1431         # Goes up the stack until it finds a pack(push,...), and pops it
1432         # Ignores any pack(n) entry
1433         # Issues a warning if the pack is of the form pack(push,label)
1434         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1435         my $pack_comment=$';
1436         $pack_comment =~ s/^\s*//;
1437         if ($pack_comment ne "") {
1438           print FILEO "$pack_indent$pack_comment";
1439         }
1440         while (1) {
1441           my $alignment=pop @pack_stack;
1442           if (!defined $alignment) {
1443             print FILEO "$pack_indent/* winemaker:warning: No pack(push,...) found. All the stack has been popped */\n";
1444             last;
1445           }
1446           if (@$alignment[1]) {
1447             print FILEO "$pack_indent/* winemaker:warning: Anonymous pop of pack(push,@$alignment[1]) (@$alignment[2]) */\n";
1448           }
1449           print FILEO "$pack_indent#include <poppack.h>\n";
1450           if (@$alignment[0]) {
1451             last;
1452           }
1453         }
1454
1455       } elsif (/^(pop\s*,\s*(\w+)\s*(,\s*\d+\s*)?\))/) {
1456         # pragma pack(pop,label[,n])
1457         # Goes up the stack until finding a pack(push,...) and pops it.
1458         # 'n', if specified, is ignored.
1459         # Ignores any pack(n) entry
1460         # Issues a warning if the label of the pack does not match,
1461         # or if it is in fact a pack(push,n)
1462         my $label=$2;
1463         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1464         my $pack_comment=$';
1465         $pack_comment =~ s/^\s*//;
1466         if ($pack_comment ne "") {
1467           print FILEO "$pack_indent$pack_comment";
1468         }
1469         while (1) {
1470           my $alignment=pop @pack_stack;
1471           if (!defined $alignment) {
1472             print FILEO "$pack_indent/* winemaker:warning: No pack(push,$label) found. All the stack has been popped */\n";
1473             last;
1474           }
1475           if (@$alignment[1] and @$alignment[1] ne $label) {
1476             print FILEO "$pack_indent/* winemaker:warning: Push/pop mismatch: \"@$alignment[1]\" (@$alignment[2]) != \"$label\" */\n";
1477           }
1478           print FILEO "$pack_indent#include <poppack.h>\n";
1479           if (@$alignment[0]) {
1480             last;
1481           }
1482         }
1483
1484       } elsif (/^(push\s*\))/) {
1485         # pragma pack(push)
1486         # Push the current alignment
1487         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1488         if (@pack_stack > 0) {
1489           my $alignment=$pack_stack[$#pack_stack];
1490           print_pack($pack_indent,@$alignment[2],$');
1491           push @pack_stack, [ "push", "", @$alignment[2] ];
1492         } else {
1493           print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1494           print_pack($pack_indent,4,$');
1495           push @pack_stack, [ "push", "", 4 ];
1496         }
1497
1498       } elsif (/^((push\s*,\s*)?(\d+)\s*\))/) {
1499         # pragma pack([push,]n)
1500         # Push new alignment n
1501         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1502         print_pack($pack_indent,$3,"$'");
1503         push @pack_stack, [ ($2 ? "push" : ""), "", $3 ];
1504
1505       } elsif (/^((\w+)\s*\))/) {
1506         # pragma pack(label)
1507         # label must in fact be a macro that resolves to an integer
1508         # Then behaves like 'pragma pack(n)'
1509         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1510         print FILEO "$pack_indent/* winemaker:warning: Assuming $2 == 4 */\n";
1511         print_pack($pack_indent,4,$');
1512         push @pack_stack, [ "", "", 4 ];
1513
1514       } elsif (/^(push\s*,\s*(\w+)\s*(,\s*(\d+)\s*)?\))/) {
1515         # pragma pack(push,label[,n])
1516         # Pushes a new label on the stack. It is possible to push the same
1517         # label multiple times. If 'n' is omitted then the alignment is
1518         # unchanged. Otherwise it becomes 'n'.
1519         print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
1520         my $size;
1521         if (defined $4) {
1522           $size=$4;
1523         } elsif (@pack_stack > 0) {
1524           my $alignment=$pack_stack[$#pack_stack];
1525           $size=@$alignment[2];
1526         } else {
1527           print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
1528           $size=4;
1529         }
1530         print_pack($pack_indent,$size,$');
1531         push @pack_stack, [ "push", $2, $size ];
1532
1533       } else {
1534         # pragma pack(???               -> What's that?
1535         print FILEO "$pack_indent/* winemaker:warning: Unknown type of pragma pack directive */\n";
1536         print FILEO "$pack_indent$pack_header$_";
1537
1538       }
1539       $modified=1;
1540
1541     } elsif ($is_rc) {
1542       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]+)([\">]?)/) {
1543         my $from_file=($5 eq "<"?"":$dirname);
1544         my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target);
1545         print FILEO "$1$5$real_include_name$7$'";
1546         $modified|=($real_include_name ne $6);
1547
1548       } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
1549         my $from_file=($2 eq "<"?"":$dirname);
1550         my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
1551         print FILEO "$1$2$real_include_name$4$'";
1552         $modified|=($real_include_name ne $3);
1553
1554       } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) {
1555         $rc_textinclude_state=1;
1556         print FILEO;
1557
1558       } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) {
1559         print FILEO "$1winres.h$2$'";
1560         $modified=1;
1561
1562       } elsif (/^\s*BEGIN(\W.*)?$/) {
1563         $rc_textinclude_state|=2;
1564         $rc_block_depth++;
1565         print FILEO;
1566
1567       } elsif (/^\s*END(\W.*)?$/) {
1568         $rc_textinclude_state=0;
1569         if ($rc_block_depth>0) {
1570           $rc_block_depth--;
1571         }
1572         print FILEO;
1573
1574       } else {
1575         print FILEO;
1576       }
1577
1578     } else {
1579       print FILEO;
1580     }
1581   }
1582
1583   close(FILEI);
1584   close(FILEO);
1585   if ($opt_backup == 0 or $modified == 0) {
1586     if (!unlink("$filename.bak")) {
1587       print STDERR "error: unable to delete $filename.bak:\n";
1588       print STDERR "       $!\n";
1589     }
1590   }
1591 }
1592
1593 ##
1594 # Analyzes each source file in turn to find and correct issues
1595 # that would cause it not to compile.
1596 sub fix_source()
1597 {
1598   print "Fixing the source files...\n";
1599   foreach my $project (@projects) {
1600     foreach my $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) {
1601       if (@$target[$T_FLAGS] & $TF_WRAPPER) {
1602         next;
1603       }
1604       foreach my $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) {
1605         fix_file($source,$project,$target);
1606       }
1607     }
1608   }
1609 }
1610
1611
1612
1613 #####
1614 #
1615 # File generation
1616 #
1617 #####
1618
1619 ##
1620 # Generates a target's .spec file
1621 sub generate_spec_file($$$)
1622 {
1623   if ($opt_no_generated_specs) {
1624     return;
1625   }
1626   my $path=$_[0];
1627   my $target=$_[1];
1628   my $project_settings=$_[2];
1629
1630   my $basename=@$target[$T_NAME];
1631   $basename =~ s+\.so$++;
1632   if (@$target[$T_FLAGS] & $TF_WRAP) {
1633     $basename =~ s+^lib++;
1634   } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1635     $basename.="_wrapper";
1636   }
1637   if (@$target[$T_TYPE] != $TT_DLL) {
1638       $basename .= '.exe';
1639   }
1640
1641   if (!open(FILEO,">$path$basename.spec")) {
1642     print STDERR "error: could not open \"$path$basename.spec\" for writing\n";
1643     print STDERR "       $!\n";
1644     return;
1645   }
1646
1647   if (defined @$target[$T_INIT] and ((@$target[$T_FLAGS] & $TF_WRAP) == 0)) {
1648     print FILEO "init    @$target[$T_INIT]\n";
1649   }
1650   print FILEO "\n";
1651
1652   # Don't forget to export the 'Main' function for wrapped executables,
1653   # except for MFC ones!
1654   if ((@$target[$T_FLAGS]&($TF_WRAP|$TF_WRAPPER|$TF_MFC)) == $TF_WRAP) {
1655     if (@$target[$T_TYPE] == $TT_GUIEXE) {
1656       print FILEO "\n@ stdcall @$target[$T_INIT](long long ptr long) @$target[$T_INIT]\n";
1657     } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1658       print FILEO "\n@ stdcall @$target[$T_INIT](long ptr ptr) @$target[$T_INIT]\n";
1659     } else {
1660       print FILEO "\n@ stdcall @$target[$T_INIT](ptr long ptr) @$target[$T_INIT]\n";
1661     }
1662   }
1663
1664   close(FILEO);
1665 }
1666
1667 ##
1668 # Generates a target's wrapper file
1669 sub generate_wrapper_file($$)
1670 {
1671   my $path=$_[0];
1672   my $target=$_[1];
1673
1674   if (!defined $templates{"wrapper.c"}) {
1675     print STDERR "winemaker: internal error: No template called 'wrapper.c'\n";
1676     return;
1677   }
1678
1679   if (!open(FILEO,">$path@$target[$T_NAME]_wrapper.c")) {
1680     print STDERR "error: unable to open \"$path@$target[$T_NAME]_wrapper.c\" for writing:\n";
1681     print STDERR "       $!\n";
1682     return;
1683   }
1684   my $app_name="\"@$target[$T_NAME]\"";
1685   my $app_type=(@$target[$T_TYPE]==$TT_GUIEXE?"GUIEXE":"CUIEXE");
1686   my $app_init=(@$target[$T_TYPE]==$TT_GUIEXE?"\"WinMain\"":"\"main\"");
1687   my $app_mfc=(@$target[$T_FLAGS] & $TF_MFC?"\"mfc\"":"NULL");
1688   foreach my $line (@{$templates{"wrapper.c"}}) {
1689     my $l=$line;
1690     $l =~ s/\#\#WINEMAKER_APP_NAME\#\#/$app_name/;
1691     $l =~ s/\#\#WINEMAKER_APP_TYPE\#\#/$app_type/;
1692     $l =~ s/\#\#WINEMAKER_APP_INIT\#\#/$app_init/;
1693     $l =~ s/\#\#WINEMAKER_APP_MFC\#\#/$app_mfc/;
1694     print FILEO $l;
1695   }
1696   close(FILEO);
1697 }
1698
1699 ##
1700 # A convenience function to generate all the lists (defines,
1701 # C sources, C++ source, etc.) in the Makefile
1702 sub generate_list($$$;$)
1703 {
1704   my $name=$_[0];
1705   my $last=$_[1];
1706   my $list=$_[2];
1707   my $data=$_[3];
1708   my $first=$name;
1709
1710   if ($name) {
1711     printf FILEO "%-22s=",$name;
1712   }
1713   if (defined $list) {
1714     foreach my $item (@$list) {
1715       my $value;
1716       if (defined $data) {
1717         $value=&$data($item);
1718       } else {
1719         $value=$item;
1720       }
1721       if ($value ne "") {
1722         if ($first) {
1723           print FILEO " $value";
1724           $first=0;
1725         } else {
1726           print FILEO " \\\n\t\t\t$value";
1727         }
1728       }
1729     }
1730   }
1731   if ($last) {
1732     print FILEO "\n";
1733   }
1734 }
1735
1736 ##
1737 # Generates a project's Makefile.in and all the target files
1738 sub generate_project_files($)
1739 {
1740   my $project=$_[0];
1741   my $project_settings=@$project[$P_SETTINGS];
1742   my @dll_list=();
1743   my @exe_list=();
1744
1745   # Then sort the targets and separate the libraries from the programs
1746   foreach my $target (sort { @$a[$T_NAME] cmp @$b[$T_NAME] } @{@$project[$P_TARGETS]}) {
1747     if (@$target[$T_TYPE] == $TT_DLL) {
1748       push @dll_list,$target;
1749     } else {
1750       push @exe_list,$target;
1751     }
1752   }
1753   @$project[$P_TARGETS]=[];
1754   push @{@$project[$P_TARGETS]}, @dll_list;
1755   push @{@$project[$P_TARGETS]}, @exe_list;
1756
1757   if (!open(FILEO,">@$project[$P_PATH]Makefile.in")) {
1758     print STDERR "error: could not open \"@$project[$P_PATH]/Makefile.in\" for writing\n";
1759     print STDERR "       $!\n";
1760     return;
1761   }
1762
1763   print FILEO "### Generated by Winemaker\n";
1764   print FILEO "\n\n";
1765
1766   print FILEO "### Generic autoconf variables\n\n";
1767   generate_list("TOPSRCDIR",1,[ "\@top_srcdir\@" ]);
1768   my $dotdotpath=@$project[$P_PATH];
1769   $dotdotpath =~ s%[^/]+%..%g;
1770   $dotdotpath =~ s%/$%%;
1771   $dotdotpath = "." if ($dotdotpath eq "");
1772   generate_list("TOPOBJDIR",1,[ $dotdotpath ]);
1773   generate_list("SRCDIR",1,[ "\@srcdir\@" ]);
1774   generate_list("VPATH",1,[ "\@srcdir\@" ]);
1775   print FILEO "\n";
1776   if (@$project[$P_PATH] eq "") {
1777     # This is the main project. It is also responsible for recursively
1778     # calling the other projects
1779     generate_list("SUBDIRS",1,\@projects,sub
1780                   {
1781                     if ($_[0] != \@main_project) {
1782                       my $subdir=@{$_[0]}[$P_PATH];
1783                       $subdir =~ s+/$++;
1784                       return $subdir;
1785                     }
1786                     # Eliminating the main project by returning undefined!
1787                   });
1788   }
1789   if (@{@$project[$P_TARGETS]} > 0) {
1790     generate_list("DLLS",1,\@dll_list,sub
1791                   {
1792                     return @{$_[0]}[$T_NAME];
1793                   });
1794     generate_list("EXES",1,\@exe_list,sub
1795                   {
1796                     return "@{$_[0]}[$T_NAME].exe";
1797                   });
1798     print FILEO "\n\n\n";
1799
1800     print FILEO "### Global settings\n\n";
1801     # Make it so that the project-wide settings override the global settings
1802     # FIXME: We should be setting no_extra for each list but this does not
1803     # really matter since global settings will very soon move to Make.rules
1804     my $no_extra;
1805     generate_list("DEFINES",0,@$project_settings[$T_DEFINES]);
1806     generate_list("",1,$global_settings[$T_DEFINES]);
1807     generate_list("INCLUDE_PATH",$no_extra,@$project_settings[$T_INCLUDE_PATH]);
1808     generate_list("",1,$global_settings[$T_INCLUDE_PATH],sub
1809                   {
1810                     if ($_[0] !~ /^-I/ or is_absolute($')) {
1811                       return "$_[0]";
1812                     }
1813                     return "-I\$(TOPSRCDIR)/$'";
1814                   });
1815     generate_list("DLL_PATH",$no_extra,@$project_settings[$T_DLL_PATH]);
1816     generate_list("",1,$global_settings[$T_DLL_PATH],sub
1817                   {
1818                     if ($_[0] !~ /^-L/ or is_absolute($')) {
1819                       return "$_[0]";
1820                     }
1821                     return "-L\$(TOPSRCDIR)/$'";
1822                   });
1823     generate_list("LIBRARY_PATH",$no_extra,@$project_settings[$T_LIBRARY_PATH]);
1824     generate_list("",1,$global_settings[$T_LIBRARY_PATH],sub
1825                   {
1826                     if ($_[0] !~ /^-L/ or is_absolute($')) {
1827                       return "$_[0]";
1828                     }
1829                     return "-L\$(TOPSRCDIR)/$'";
1830                   });
1831     generate_list("LIBRARIES",$no_extra,@$project_settings[$T_LIBRARIES]);
1832     generate_list("",1,$global_settings[$T_LIBRARIES]);
1833     print FILEO "\n\n";
1834
1835     my $extra_source_count=@{@$project_settings[$T_SOURCES_C]}+
1836                            @{@$project_settings[$T_SOURCES_CXX]}+
1837                            @{@$project_settings[$T_SOURCES_RC]};
1838     $no_extra=($extra_source_count == 0);
1839     if (!$no_extra) {
1840       print FILEO "### Extra source lists\n\n";
1841       generate_list("EXTRA_C_SRCS",1,@$project_settings[$T_SOURCES_C]);
1842       generate_list("EXTRA_CXX_SRCS",1,@$project_settings[$T_SOURCES_CXX]);
1843       generate_list("EXTRA_RC_SRCS",1,@$project_settings[$T_SOURCES_RC]);
1844       print FILEO "\n";
1845       generate_list("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:.cpp=.o)"]);
1846       print FILEO "\n\n\n";
1847     }
1848
1849     # Iterate over all the targets...
1850     foreach my $target (@{@$project[$P_TARGETS]}) {
1851       print FILEO "### @$target[$T_NAME] sources and settings\n\n";
1852       my $canon=canonize("@$target[$T_NAME]");
1853       $canon =~ s+_so$++;
1854       generate_list("${canon}_C_SRCS",1,@$target[$T_SOURCES_C]);
1855       generate_list("${canon}_CXX_SRCS",1,@$target[$T_SOURCES_CXX]);
1856       generate_list("${canon}_RC_SRCS",1,@$target[$T_SOURCES_RC]);
1857       my $basename=@$target[$T_NAME];
1858       $basename =~ s+\.so$++;
1859       if (@$target[$T_FLAGS] & $TF_WRAP) {
1860         $basename =~ s+^lib++;
1861       } elsif (@$target[$T_FLAGS] & $TF_WRAPPER) {
1862         $basename.="_wrapper";
1863       }
1864       if (@$target[$T_TYPE] != $TT_DLL) {
1865         generate_list("${canon}_SPEC_SRCS",1,[ "$basename.exe.spec" ]);
1866       } else {
1867         generate_list("${canon}_SPEC_SRCS",1,[ "$basename.spec" ]);
1868       }
1869       generate_list("${canon}_DLL_PATH",1,@$target[$T_DLL_PATH]);
1870       generate_list("${canon}_DLLS",1,@$target[$T_DLLS]);
1871       generate_list("${canon}_LIBRARY_PATH",1,@$target[$T_LIBRARY_PATH]);
1872       generate_list("${canon}_LIBRARIES",1,@$target[$T_LIBRARIES]);
1873       generate_list("${canon}_DEPENDS",1,@$target[$T_DEPENDS]);
1874       print FILEO "\n";
1875       generate_list("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:.cpp=.o)","\$(EXTRA_OBJS)"]);
1876       print FILEO "\n\n\n";
1877     }
1878     print FILEO "### Global source lists\n\n";
1879     generate_list("C_SRCS",$no_extra,@$project[$P_TARGETS],sub
1880                   {
1881                     my $canon=canonize(@{$_[0]}[$T_NAME]);
1882                     $canon =~ s+_so$++;
1883                     return "\$(${canon}_C_SRCS)";
1884                   });
1885     if (!$no_extra) {
1886       generate_list("",1,[ "\$(EXTRA_C_SRCS)" ]);
1887     }
1888     generate_list("CXX_SRCS",$no_extra,@$project[$P_TARGETS],sub
1889                   {
1890                     my $canon=canonize(@{$_[0]}[$T_NAME]);
1891                     $canon =~ s+_so$++;
1892                     return "\$(${canon}_CXX_SRCS)";
1893                   });
1894     if (!$no_extra) {
1895       generate_list("",1,[ "\$(EXTRA_CXX_SRCS)" ]);
1896     }
1897     generate_list("RC_SRCS",$no_extra,@$project[$P_TARGETS],sub
1898                   {
1899                     my $canon=canonize(@{$_[0]}[$T_NAME]);
1900                     $canon =~ s+_so$++;
1901                     return "\$(${canon}_RC_SRCS)";
1902                   });
1903     if (!$no_extra) {
1904       generate_list("",1,[ "\$(EXTRA_RC_SRCS)" ]);
1905     }
1906     generate_list("SPEC_SRCS",1,@$project[$P_TARGETS],sub
1907                   {
1908                     my $canon=canonize(@{$_[0]}[$T_NAME]);
1909                     $canon =~ s+_so$++;
1910                     return "\$(${canon}_SPEC_SRCS)";
1911                   });
1912   }
1913   print FILEO "\n\n\n";
1914
1915   print FILEO "### Generic autoconf targets\n\n";
1916   print FILEO "all:";
1917   if (@$project[$P_PATH] eq "") {
1918     print FILEO " wineapploader";
1919     print FILEO " \$(SUBDIRS)";
1920   }
1921   if (@{@$project[$P_TARGETS]} > 0) {
1922     print FILEO " \$(DLLS) \$(EXES:%=%.so)";
1923   }
1924   print FILEO "\n\n";
1925   if (@$project[$P_PATH] eq "") {
1926       print FILEO "wineapploader: wineapploader.in\n";
1927       print FILEO "\tsed -e 's,\@bindir\\\@,\$(bindir),g' " .
1928           "-e 's,\@winelibdir\\\@,.,g' " .
1929           "\$(SRCDIR)/wineapploader.in >\$\@ || \$(RM) \$\@\n";
1930       print FILEO "\n";
1931   }
1932   print FILEO "\@MAKE_RULES\@\n";
1933   print FILEO "\n";
1934   print FILEO "install::\n";
1935   if (@$project[$P_PATH] eq "") {
1936     # This is the main project. It is also responsible for recursively
1937     # calling the other projects
1938     print FILEO "\t_list=\"\$(SUBDIRS)\"; for i in \$\$_list; do (cd \$\$i; \$(MAKE) install) || exit 1; done\n";
1939   }
1940   if (@{@$project[$P_TARGETS]} > 0) {
1941     print FILEO "\t_list=\"\$(EXES:%=%.so)\"; for i in \$\$_list; do \$(INSTALL_PROGRAM) \$\$i \$(libdir); done\n";
1942     print FILEO "\t_list=\"\$(EXES)\"; for i in \$\$_list; do \$(INSTALL_SCRIPT) \$\$i \$(bindir); done\n";
1943     print FILEO "\t_list=\"\$(DLLS)\"; for i in \$\$_list; do \$(INSTALL_PROGRAM) \$\$i \$(libdir); done\n";
1944   }
1945   print FILEO "\n";
1946   print FILEO "uninstall::\n";
1947   if (@$project[$P_PATH] eq "") {
1948     # This is the main project. It is also responsible for recursively
1949     # calling the other projects
1950     print FILEO "\t_list=\"\$(SUBDIRS)\"; for i in \$\$_list; do (cd \$\$i; \$(MAKE) uninstall) || exit 1; done\n";
1951   }
1952   if (@{@$project[$P_TARGETS]} > 0) {
1953     print FILEO "\t_list=\"\$(EXES) \$(EXES:%=%.so)\"; for i in \$\$_list; do \$(RM) \$(libdir)/\$\$i;done\n";
1954     print FILEO "\t_list=\"\$(EXES)\"; for i in \$\$_list; do \$(RM) \$(bindir)/\$\$i;done\n";
1955     print FILEO "\t_list=\"\$(DLLS)\"; for i in \$\$_list; do \$(RM) \$(libdir)/\$\$i;done\n";
1956   }
1957   print FILEO "\n";
1958   print FILEO "clean::\n";
1959   print FILEO "\t\$(RM)";
1960   if (@$project[$P_PATH] eq "") {
1961       print FILEO " wineapploader";
1962   }
1963   if (@{@$project[$P_TARGETS]} > 0) {
1964       print FILEO " \$(EXES)";
1965   }
1966   print FILEO "\n\n";
1967
1968   if (@{@$project[$P_TARGETS]} > 0) {
1969     print FILEO "### Target specific build rules\n\n";
1970     foreach my $target (@{@$project[$P_TARGETS]}) {
1971       my $canon=canonize("@$target[$T_NAME]");
1972       my $mode;
1973
1974       $canon =~ s/_so$//;
1975       if (@$target[$T_TYPE] == $TT_GUIEXE) {
1976           $mode = '-m gui';
1977       } elsif (@$target[$T_TYPE] == $TT_CUIEXE) {
1978           $mode = '-m cui';
1979       } else {
1980           $mode = '';
1981       }
1982
1983       print FILEO "\$(${canon}_SPEC_SRCS:.spec=.spec.c): \$(${canon}_SPEC_SRCS) \$(${canon}_OBJS) \$(${canon}_RC_SRCS:.rc=.res)\n";
1984       print FILEO "\t\$(LD_PATH) \$(WINEBUILD) -fPIC \$(${canon}_DLL_PATH) \$(WINE_DLL_PATH) \$(${canon}_DLLS:%=-l%) \$(${canon}_RC_SRCS:%.rc=-res %.res) $mode \$(${canon}_OBJS) -o \$\@ -spec \$(SRCDIR)/\$(${canon}_SPEC_SRCS)\n";
1985       print FILEO "\n";
1986       my $t_name=@$target[$T_NAME];
1987       if (@$target[$T_TYPE]!=$TT_DLL) {
1988         $t_name.=".exe.so";
1989       }
1990       print FILEO "$t_name: \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_OBJS) \$(${canon}_DEPENDS) \n";
1991       if (@{@$target[$T_SOURCES_CXX]} > 0 or @{@$project_settings[$T_SOURCES_CXX]} > 0) {
1992         print FILEO "\t\$(LDXXSHARED)";
1993       } else {
1994         print FILEO "\t\$(LDSHARED)";
1995       }
1996       print FILEO " \$(LDDLLFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_SPEC_SRCS:.spec=.spec.o) \$(${canon}_LIBRARY_PATH) \$(${canon}_LIBRARIES:%=-l%) \$(DLL_LINK) \$(LIBS)\n";
1997       if (@$target[$T_TYPE] ne $TT_DLL) {
1998         print FILEO "\ttest -f @$target[$T_NAME] || \$(INSTALL_SCRIPT) wineapploader @$target[$T_NAME]\n";
1999       }
2000       print FILEO "\n\n";
2001     }
2002   }
2003   close(FILEO);
2004
2005   foreach my $target (@{@$project[$P_TARGETS]}) {
2006     generate_spec_file(@$project[$P_PATH],$target,$project_settings);
2007     if (@$target[$T_FLAGS] & $TF_WRAPPER) {
2008       generate_wrapper_file(@$project[$P_PATH],$target);
2009     }
2010   }
2011 }
2012
2013 ##
2014 # Perform the replacements in the template configure files
2015 # Return 1 for success, 0 for failure
2016 sub generate_configure($$)
2017 {
2018   my $filename=$_[0];
2019   my $a_source_file=$_[1];
2020
2021   if (!defined $templates{$filename}) {
2022     if ($filename ne "configure") {
2023       print STDERR "winemaker: internal error: No template called '$filename'\n";
2024     }
2025     return 0;
2026   }
2027
2028   if (!open(FILEO,">$filename")) {
2029     print STDERR "error: unable to open \"$filename\" for writing:\n";
2030     print STDERR "       $!\n";
2031     return 0;
2032   }
2033   foreach my $line (@{$templates{$filename}}) {
2034     if ($line =~ /^\#\#WINEMAKER_PROJECTS\#\#$/) {
2035       foreach my $project (@projects) {
2036         print FILEO "@$project[$P_PATH]Makefile\n";
2037       }
2038     } else {
2039       $line =~ s+\#\#WINEMAKER_SOURCE\#\#+$a_source_file+;
2040       $line =~ s+\#\#WINEMAKER_NEEDS_MFC\#\#+$needs_mfc+;
2041       print FILEO $line;
2042     }
2043   }
2044   close(FILEO);
2045   return 1;
2046 }
2047
2048 sub generate_generic($)
2049 {
2050   my $filename=$_[0];
2051
2052   if (!defined $templates{$filename}) {
2053     print STDERR "winemaker: internal error: No template called '$filename'\n";
2054     return;
2055   }
2056   if (!open(FILEO,">$filename")) {
2057     print STDERR "error: unable to open \"$filename\" for writing:\n";
2058     print STDERR "       $!\n";
2059     return;
2060   }
2061   foreach my $line (@{$templates{$filename}}) {
2062     print FILEO $line;
2063   }
2064   close(FILEO);
2065 }
2066
2067 ##
2068 # Generates the global files:
2069 # configure
2070 # configure.in
2071 # Make.rules.in
2072 # wineapploader.in
2073 sub generate_global_files()
2074 {
2075   generate_generic("Make.rules.in");
2076   generate_generic("wineapploader.in");
2077
2078   # Get the name of a source file for configure.in
2079   my $a_source_file;
2080   search_a_file: foreach my $project (@projects) {
2081     foreach my $target (@{@$project[$P_TARGETS]}, @$project[$P_SETTINGS]) {
2082       $a_source_file=@{@$target[$T_SOURCES_C]}[0];
2083       if (!defined $a_source_file) {
2084         $a_source_file=@{@$target[$T_SOURCES_CXX]}[0];
2085       }
2086       if (!defined $a_source_file) {
2087         $a_source_file=@{@$target[$T_SOURCES_RC]}[0];
2088       }
2089       if (defined $a_source_file) {
2090         $a_source_file="@$project[$P_PATH]$a_source_file";
2091         last search_a_file;
2092       }
2093     }
2094   }
2095   if (!defined $a_source_file) {
2096     $a_source_file="Makefile.in";
2097   }
2098
2099   generate_configure("configure.in",$a_source_file);
2100   unlink("configure");
2101   if (generate_configure("configure",$a_source_file) == 0) {
2102     system("autoconf");
2103   }
2104   # Add execute permission to configure for whoever has the right to read it
2105   my @st=stat("configure");
2106   if (@st) {
2107     my $mode=$st[2];
2108     $mode|=($mode & 0444) >>2;
2109     chmod($mode,"configure");
2110   } else {
2111     print "warning: could not generate the configure script. You need to run autoconf\n";
2112   }
2113 }
2114
2115 ##
2116 #
2117 sub generate_read_templates()
2118 {
2119   my $file;
2120
2121   while (<DATA>) {
2122     if (/^--- ((\w\.?)+) ---$/) {
2123       my $filename=$1;
2124       if (defined $templates{$filename}) {
2125         print STDERR "winemaker: internal error: There is more than one template for $filename\n";
2126         undef $file;
2127       } else {
2128         $file=[];
2129         $templates{$filename}=$file;
2130       }
2131     } elsif (defined $file) {
2132       push @$file, $_;
2133     }
2134   }
2135 }
2136
2137 ##
2138 # This is where we finally generate files. In fact this method does not
2139 # do anything itself but calls the methods that do the actual work.
2140 sub generate()
2141 {
2142   print "Generating project files...\n";
2143   generate_read_templates();
2144   generate_global_files();
2145
2146   foreach my $project (@projects) {
2147     my $path=@$project[$P_PATH];
2148     if ($path eq "") {
2149       $path=".";
2150     } else {
2151       $path =~ s+/$++;
2152     }
2153     print "  $path\n";
2154     generate_project_files($project);
2155   }
2156 }
2157
2158
2159
2160 #####
2161 #
2162 # Option defaults
2163 #
2164 #####
2165
2166 $opt_backup=1;
2167 $opt_lower=$OPT_LOWER_UPPERCASE;
2168 $opt_lower_include=1;
2169
2170 # $opt_work_dir=<undefined>
2171 # $opt_single_target=<undefined>
2172 $opt_target_type=$TT_GUIEXE;
2173 $opt_flags=0;
2174 $opt_is_interactive=$OPT_ASK_NO;
2175 $opt_ask_project_options=$OPT_ASK_NO;
2176 $opt_ask_target_options=$OPT_ASK_NO;
2177 $opt_no_generated_files=0;
2178 $opt_no_generated_specs=0;
2179 $opt_no_source_fix=0;
2180 $opt_no_banner=0;
2181
2182
2183
2184 #####
2185 #
2186 # Main
2187 #
2188 #####
2189
2190 sub print_banner()
2191 {
2192   print "Winemaker $version\n";
2193   print "Copyright 2000 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
2194 }
2195
2196 sub usage()
2197 {
2198   print_banner();
2199   print STDERR "Usage: winemaker [--nobanner] [--backup|--nobackup] [--nosource-fix]\n";
2200   print STDERR "                 [--lower-none|--lower-all|--lower-uppercase]\n";
2201   print STDERR "                 [--lower-include|--nolower-include]\n";
2202   print STDERR "                 [--guiexe|--windows|--cuiexe|--console|--dll|--nodlls]\n";
2203   print STDERR "                 [--wrap|--nowrap] [--mfc|--nomfc]\n";
2204   print STDERR "                 [-Dmacro[=defn]] [-Idir] [-Pdir] [-idll] [-Ldir] [-llibrary]\n";
2205   print STDERR "                 [--interactive] [--single-target name]\n";
2206   print STDERR "                 [--generated-files|--nogenerated-files] [--nogenerated-specs]\n";
2207   print STDERR "                 work_directory\n";
2208   print STDERR "\nWinemaker is designed to recursively convert all the Windows sources found in\n";
2209   print STDERR "the specified directory so that they can be compiled with Winelib. During this\n";
2210   print STDERR "process it will modify and rename some of the files in that directory.\n";
2211   print STDERR "\tPlease read the manual page before use.\n";
2212   exit (2);
2213 }
2214
2215 while (@ARGV>0) {
2216   my $arg=shift @ARGV;
2217   # General options
2218   if ($arg eq "--nobanner") {
2219     $opt_no_banner=1;
2220   } elsif ($arg eq "--backup") {
2221     $opt_backup=1;
2222   } elsif ($arg eq "--nobackup") {
2223     $opt_backup=0;
2224   } elsif ($arg eq "--single-target") {
2225     $opt_single_target=shift @ARGV;
2226   } elsif ($arg eq "--lower-none") {
2227     $opt_lower=$OPT_LOWER_NONE;
2228   } elsif ($arg eq "--lower-all") {
2229     $opt_lower=$OPT_LOWER_ALL;
2230   } elsif ($arg eq "--lower-uppercase") {
2231     $opt_lower=$OPT_LOWER_UPPERCASE;
2232   } elsif ($arg eq "--lower-include") {
2233     $opt_lower_include=1;
2234   } elsif ($arg eq "--nolower-include") {
2235     $opt_lower_include=0;
2236   } elsif ($arg eq "--nosource-fix") {
2237     $opt_no_source_fix=1;
2238   } elsif ($arg eq "--generated-files") {
2239     $opt_no_generated_files=0;
2240   } elsif ($arg eq "--nogenerated-files") {
2241     $opt_no_generated_files=1;
2242   } elsif ($arg eq "--nogenerated-specs") {
2243     $opt_no_generated_specs=1;
2244
2245   } elsif ($arg =~ /^-D/) {
2246     push @{$global_settings[$T_DEFINES]},$arg;
2247   } elsif ($arg =~ /^-I/) {
2248     push @{$global_settings[$T_INCLUDE_PATH]},$arg;
2249   } elsif ($arg =~ /^-P/) {
2250     push @{$global_settings[$T_DLL_PATH]},"-L$'";
2251   } elsif ($arg =~ /^-i/) {
2252     push @{$global_settings[$T_DLLS]},$';
2253   } elsif ($arg =~ /^-L/) {
2254     push @{$global_settings[$T_LIBRARY_PATH]},$arg;
2255   } elsif ($arg =~ /^-l/) {
2256     push @{$global_settings[$T_LIBRARIES]},$';
2257
2258   # 'Source'-based method options
2259   } elsif ($arg eq "--dll") {
2260     $opt_target_type=$TT_DLL;
2261   } elsif ($arg eq "--guiexe" or $arg eq "--windows") {
2262     $opt_target_type=$TT_GUIEXE;
2263   } elsif ($arg eq "--cuiexe" or $arg eq "--console") {
2264     $opt_target_type=$TT_CUIEXE;
2265   } elsif ($arg eq "--interactive") {
2266     $opt_is_interactive=$OPT_ASK_YES;
2267     $opt_ask_project_options=$OPT_ASK_YES;
2268     $opt_ask_target_options=$OPT_ASK_YES;
2269   } elsif ($arg eq "--wrap") {
2270     $opt_flags|=$TF_WRAP;
2271   } elsif ($arg eq "--nowrap") {
2272     $opt_flags&=~$TF_WRAP;
2273   } elsif ($arg eq "--mfc") {
2274     $opt_flags|=$TF_MFC;
2275     $needs_mfc=1;
2276   } elsif ($arg eq "--nomfc") {
2277     $opt_flags&=~$TF_MFC;
2278     $opt_flags|=$TF_NOMFC;
2279     $needs_mfc=0;
2280   } elsif ($arg eq "--nodlls") {
2281     $opt_flags|=$TF_NODLLS;
2282
2283   # Catch errors
2284   } else {
2285     if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") {
2286       if (!defined $opt_work_dir) {
2287         $opt_work_dir=$arg;
2288       } else {
2289         print STDERR "error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n";
2290         usage();
2291       }
2292     } else {
2293       usage();
2294     }
2295   }
2296
2297   if ($opt_flags & $TF_MFC && $opt_target_type != $TT_DLL) {
2298     print STDERR "info: option --mfc requires --wrap\n";
2299     $opt_flags |= $TF_WRAP;
2300   };
2301 }
2302
2303 if (!defined $opt_work_dir) {
2304   print STDERR "error: you must specify the directory containing the sources to be converted\n";
2305   usage();
2306 } elsif (!chdir $opt_work_dir) {
2307   print STDERR "error: could not chdir to the work directory\n";
2308   print STDERR "       $!\n";
2309   usage();
2310 }
2311
2312 if ($opt_no_banner == 0) {
2313   print_banner();
2314 }
2315
2316 project_init(\@main_project,"");
2317
2318 # Fix the file and directory names
2319 fix_file_and_directory_names(".");
2320
2321 # Scan the sources to identify the projects and targets
2322 source_scan();
2323
2324 # Create targets for wrappers, etc.
2325 postprocess_targets();
2326
2327 # Fix the source files
2328 if (! $opt_no_source_fix) {
2329   fix_source();
2330 }
2331
2332 # Generate the Makefile and the spec file
2333 if (! $opt_no_generated_files) {
2334   generate();
2335 }
2336
2337
2338 __DATA__
2339 --- configure.in ---
2340 dnl Process this file with autoconf to produce a configure script.
2341 dnl Author: Michael Patra   <micky@marie.physik.tu-berlin.de>
2342 dnl                         <patra@itp1.physik.tu-berlin.de>
2343 dnl         Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
2344
2345 AC_REVISION([configure.in 1.00])
2346 AC_INIT(##WINEMAKER_SOURCE##)
2347
2348 NEEDS_MFC=##WINEMAKER_NEEDS_MFC##
2349
2350 dnl **** Command-line arguments ****
2351
2352 AC_SUBST(OPTIONS)
2353
2354 dnl **** Check for some programs ****
2355
2356 AC_PROG_MAKE_SET
2357 AC_PROG_CC
2358 AC_PROG_CXX
2359 AC_PROG_CPP
2360 AC_PROG_LN_S
2361
2362 dnl **** Check for some libraries ****
2363
2364 dnl Check for -lm for BeOS
2365 AC_CHECK_LIB(m,sqrt)
2366 dnl Check for -lw for Solaris
2367 AC_CHECK_LIB(w,iswalnum)
2368 dnl Check for -lnsl for Solaris
2369 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))
2370 dnl Check for -lsocket for Solaris
2371 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
2372
2373 dnl **** Check for gcc strength-reduce bug ****
2374
2375 if test "x${GCC}" = "xyes"
2376 then
2377   AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
2378                   AC_TRY_RUN([
2379 int main(void) {
2380   static int Array[[3]];
2381   unsigned int B = 3;
2382   int i;
2383   for(i=0; i<B; i++) Array[[i]] = i - 3;
2384   exit( Array[[1]] != -2 );
2385 }],
2386     ac_cv_c_gcc_strength_bug="no",
2387     ac_cv_c_gcc_strength_bug="yes",
2388     ac_cv_c_gcc_strength_bug="yes") )
2389   if test "$ac_cv_c_gcc_strength_bug" = "yes"
2390   then
2391     CFLAGS="$CFLAGS -fno-strength-reduce"
2392   fi
2393 fi
2394
2395 dnl **** Check for underscore on external symbols ****
2396
2397 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
2398                ac_cv_c_extern_prefix,
2399 [saved_libs=$LIBS
2400 LIBS="conftest_asm.s $LIBS"
2401 cat > conftest_asm.s <<EOF
2402         .globl _ac_test
2403 _ac_test:
2404         .long 0
2405 EOF
2406 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
2407             ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
2408 LIBS=$saved_libs])
2409 if test "$ac_cv_c_extern_prefix" = "yes"
2410 then
2411   AC_DEFINE(NEED_UNDERSCORE_PREFIX)
2412 fi
2413
2414 dnl **** Check for working dll ****
2415
2416 LDSHARED=""
2417 LDXXSHARED=""
2418 LDDLLFLAGS=""
2419 AC_CACHE_CHECK("whether we can build a Linux dll",
2420                ac_cv_c_dll_linux,
2421 [saved_cflags=$CFLAGS
2422 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
2423 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
2424 CFLAGS=$saved_cflags
2425 ])
2426 if test "$ac_cv_c_dll_linux" = "yes"
2427 then
2428   LDSHARED="\$(CC) -shared"
2429   LDXXSHARED="\$(CXX) -shared"
2430   LDDLLFLAGS="-Wl,-Bsymbolic"
2431 else
2432   AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
2433                 ac_cv_c_dll_unixware,
2434   [saved_cflags=$CFLAGS
2435   CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
2436   AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
2437   CFLAGS=$saved_cflags
2438   ])
2439   if test "$ac_cv_c_dll_unixware" = "yes"
2440   then
2441     LDSHARED="\$(CC) -Wl,-G"
2442     LDXXSHARED="\$(CXX) -Wl,-G"
2443     LDDLLFLAGS="-Wl,-B,symbolic"
2444   else
2445     AC_CACHE_CHECK("whether we can build a NetBSD dll",
2446                    ac_cv_c_dll_netbsd,
2447     [saved_cflags=$CFLAGS
2448     CFLAGS="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
2449     AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
2450     CFLAGS=$saved_cflags
2451     ])
2452     if test "$ac_cv_c_dll_netbsd" = "yes"
2453     then
2454       LDSHARED="\$(CC) -Wl,-Bshareable,-Bforcearchive"
2455       LDXXSHARED="\$(CXX) -Wl,-Bshareable,-Bforcearchive"
2456       LDDLLFLAGS="" #FIXME
2457     fi
2458   fi
2459 fi
2460 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
2461 then
2462   AC_MSG_ERROR([Could not find how to build a dynamically linked library])
2463 fi
2464
2465 CFLAGS="$CFLAGS -fPIC"
2466
2467 AC_SUBST(LDSHARED)
2468 AC_SUBST(LDXXSHARED)
2469 AC_SUBST(LDDLLFLAGS)
2470
2471 dnl *** check for the need to define __i386__
2472
2473 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
2474  AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
2475 yes
2476 #endif],
2477  ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
2478 if test "$ac_cv_cpp_def_i386" = "yes"
2479 then
2480     CFLAGS="$CFLAGS -D__i386__"
2481 fi
2482
2483 dnl *** check for the need to define __sparc__
2484
2485 AC_CACHE_CHECK("whether we need to define __sparc__",ac_cv_cpp_def_sparc,
2486  AC_EGREP_CPP(yes,[#if (defined(sparc) || defined(__sparc)) && !defined(__sparc__)
2487 yes
2488 #endif],
2489  ac_cv_cpp_def_sparc="yes", ac_cv_cpp_def_sparc="no"))
2490 if test "$ac_cv_cpp_def_sparc" = "yes"
2491 then
2492     CFLAGS="$CFLAGS -D__sparc__"
2493     CXXFLAGS="$CXXFLAGS -D__sparc__"
2494 fi
2495
2496 dnl *** check for the need to define __sun__
2497
2498 AC_CACHE_CHECK("whether we need to define __sun__",ac_cv_cpp_def_sun,
2499  AC_EGREP_CPP(yes,[#if (defined(sun) || defined(__sun)) && !defined(__sun__)
2500 yes
2501 #endif],
2502  ac_cv_cpp_def_sun="yes", ac_cv_cpp_def_sun="no"))
2503 if test "$ac_cv_cpp_def_sun" = "yes"
2504 then
2505     CFLAGS="$CFLAGS -D__sun__"
2506     CXXFLAGS="$CXXFLAGS -D__sun__"
2507 fi
2508
2509 dnl $GCC is set by autoconf
2510 GCC_NO_BUILTIN=""
2511 if test "$GCC" = "yes"
2512 then
2513     GCC_NO_BUILTIN="-fno-builtin"
2514 fi
2515 AC_SUBST(GCC_NO_BUILTIN)
2516
2517 dnl **** Test Winelib-related features of the C++ compiler
2518 AC_LANG_CPLUSPLUS()
2519 if test "x${GCC}" = "xyes"
2520 then
2521   OLDCXXFLAGS="$CXXFLAGS";
2522   CXXFLAGS="-fpermissive";
2523   AC_CACHE_CHECK("for g++ -fpermissive option", has_gxx_permissive,
2524     AC_TRY_COMPILE(,[
2525         for (int i=0;i<2;i++);
2526         i=0;
2527       ],
2528       [has_gxx_permissive="yes"],
2529       [has_gxx_permissive="no"])
2530    )
2531   CXXFLAGS="-fno-for-scope";
2532   AC_CACHE_CHECK("for g++ -fno-for-scope option", has_gxx_no_for_scope,
2533     AC_TRY_COMPILE(,[
2534         for (int i=0;i<2;i++);
2535         i=0;
2536       ],
2537       [has_gxx_no_for_scope="yes"],
2538       [has_gxx_no_for_scope="no"])
2539    )
2540   CXXFLAGS="$OLDCXXFLAGS";
2541   if test "$has_gxx_permissive" = "yes"
2542   then
2543     CXXFLAGS="$CXXFLAGS -fpermissive"
2544   fi
2545   if test "$has_gxx_no_for_scope" = "yes"
2546   then
2547     CXXFLAGS="$CXXFLAGS -fno-for-scope"
2548   fi
2549 fi
2550 AC_LANG_C()
2551
2552 dnl **** Test Winelib-related features of the C compiler
2553 dnl none for now
2554
2555 dnl **** Macros for finding a headers/libraries in a collection of places
2556
2557 dnl AC_PATH_FILE(variable,file,action-if-not-found,default-locations)
2558 AC_DEFUN(AC_PATH_FILE,[
2559 AC_MSG_CHECKING([for $2])
2560 AC_CACHE_VAL(ac_cv_pfile_$1,
2561 [
2562   ac_found=
2563   ac_dummy="ifelse([$4], , , [$4])"
2564   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
2565   for ac_dir in $ac_dummy; do
2566     IFS="$ac_save_ifs"
2567     if test -z "$ac_dir"
2568     then
2569       ac_file="$2"
2570     else
2571       ac_file="$ac_dir/$2"
2572     fi
2573     if test -f "$ac_file"
2574     then
2575       ac_found=1
2576       ac_cv_pfile_$1="$ac_dir"
2577       break
2578     fi
2579   done
2580   ifelse([$3],,,[if test -z "$ac_found"
2581     then
2582       $3
2583     fi
2584   ])
2585 ])
2586 $1="$ac_cv_pfile_$1"
2587 if test -n "$ac_found" -o -n "[$]$1"
2588 then
2589   AC_MSG_RESULT([$]$1)
2590 else
2591   AC_MSG_RESULT(no)
2592 fi
2593 AC_SUBST($1)
2594 ])
2595
2596 dnl AC_PATH_HEADER(variable,header,action-if-not-found,default-locations)
2597 dnl Note that the above may set variable to an empty value if the header is
2598 dnl already in the include path
2599 AC_DEFUN(AC_PATH_HEADER,[
2600 AC_MSG_CHECKING([for $2 header])
2601 AC_CACHE_VAL(ac_cv_pheader_$1,
2602 [
2603   ac_found=
2604   ac_dummy="ifelse([$4], , :/usr/local/include, [$4])"
2605   save_CPPFLAGS="$CPPFLAGS"
2606   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
2607   for ac_dir in $ac_dummy; do
2608     IFS="$ac_save_ifs"
2609     if test -z "$ac_dir"
2610     then
2611       CPPFLAGS="$save_CPPFLAGS"
2612     else
2613       CPPFLAGS="-I$ac_dir $save_CPPFLAGS"
2614     fi
2615     AC_TRY_COMPILE([#include <$2>],,ac_found=1;ac_cv_pheader_$1="$ac_dir";break)
2616   done
2617   CPPFLAGS="$save_CPPFLAGS"
2618   ifelse([$3],,,[if test -z "$ac_found"
2619     then
2620       $3
2621     fi
2622   ])
2623 ])
2624 $1="$ac_cv_pheader_$1"
2625 if test -n "$ac_found" -o -n "[$]$1"
2626 then
2627   AC_MSG_RESULT([$]$1)
2628 else
2629   AC_MSG_RESULT(no)
2630 fi
2631 AC_SUBST($1)
2632 ])
2633
2634 dnl AC_PATH_LIBRARY(variable,libraries,extra libs,action-if-not-found,default-locations)
2635 AC_DEFUN(AC_PATH_LIBRARY,[
2636 AC_MSG_CHECKING([for $2])
2637 AC_CACHE_VAL(ac_cv_plibrary_$1,
2638 [
2639   ac_found=
2640   ac_dummy="ifelse([$5], , :/usr/local/lib, [$5])"
2641   save_LIBS="$LIBS"
2642   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
2643   for ac_dir in $ac_dummy; do
2644     IFS="$ac_save_ifs"
2645     if test -z "$ac_dir"
2646     then
2647       LIBS="$2 $3 $save_LIBS"
2648     else
2649       LIBS="-L$ac_dir $2 $3 $save_LIBS"
2650     fi
2651     AC_TRY_LINK(,,ac_found=1;ac_cv_plibrary_$1="$ac_dir";break)
2652   done
2653   LIBS="$save_LIBS"
2654   ifelse([$4],,,[if test -z "$ac_found"
2655     then
2656       $4
2657     fi
2658   ])
2659 ])
2660 $1="$ac_cv_plibrary_$1"
2661 if test -n "$ac_found" -o -n "[$]$1"
2662 then
2663   AC_MSG_RESULT([$]$1)
2664 else
2665   AC_MSG_RESULT(no)
2666 fi
2667 AC_SUBST($1)
2668 ])
2669
2670 dnl **** Try to find where winelib is located ****
2671
2672 LD_PATH=""
2673 WINE_INCLUDE_ROOT=""
2674 WINE_INCLUDE_PATH=""
2675 WINE_LIBRARY_ROOT=""
2676 WINE_LIBRARY_PATH=""
2677 WINE_DLL_ROOT=""
2678 WINE_DLL_PATH=""
2679 WINE_TOOL_PATH=""
2680 WINE=""
2681 WINEBUILD=""
2682 WRC=""
2683
2684 AC_ARG_WITH(wine,
2685 [  --with-wine=DIR           the Wine package (or sources) is in DIR],
2686 [if test "$withval" != "no"; then
2687   WINE_ROOT="$withval";
2688   WINE_INCLUDES="";
2689   WINE_LIBRARIES="";
2690   WINE_TOOLS="";
2691 else
2692   WINE_ROOT="";
2693 fi])
2694 if test -n "$WINE_ROOT"
2695 then
2696   WINE_INCLUDE_ROOT="$WINE_ROOT/include:$WINE_ROOT/include/wine"
2697   WINE_LIBRARY_ROOT="$WINE_ROOT:$WINE_ROOT/lib:$WINE_ROOT/library"
2698   WINE_UNICODE_ROOT="$WINE_ROOT:$WINE_ROOT/lib:$WINE_ROOT/unicode"
2699   WINE_UUID_ROOT="$WINE_ROOT:$WINE_ROOT/lib:$WINE_ROOT/ole"
2700   WINE_TOOL_PATH="$WINE_ROOT:$WINE_ROOT/bin:$WINE_ROOT/tools/wrc:$WINE_ROOT/tools/winebuild"
2701   WINE_DLL_ROOT="$WINE_ROOT/dlls:$WINE_ROOT/lib"
2702 fi
2703
2704 AC_ARG_WITH(wine-includes,
2705 [  --with-wine-includes=DIR  the Wine includes are in DIR],
2706 [if test "$withval" != "no"; then
2707   WINE_INCLUDES="$withval";
2708 else
2709   WINE_INCLUDES="";
2710 fi])
2711 if test -n "$WINE_INCLUDES"
2712 then
2713   WINE_INCLUDE_ROOT="$WINE_INCLUDES"
2714 fi
2715
2716 AC_ARG_WITH(wine-libraries,
2717 [  --with-wine-libraries=DIR the Wine libraries are in DIR],
2718 [if test "$withval" != "no"; then
2719   WINE_LIBRARIES="$withval";
2720 else
2721   WINE_LIBRARIES="";
2722 fi])
2723 if test -n "$WINE_LIBRARIES"
2724 then
2725   WINE_LIBRARY_ROOT="$WINE_LIBRARIES"
2726   WINE_UNICODE_ROOT="$WINE_LIBRARIES:$WINE_LIBRARIES/unicode:$WINE_LIBRARIES/../unicode"
2727   WINE_UUID_ROOT="$WINE_LIBRARIES:$WINE_LIBRARIES/ole:$WINE_LIBRARIES/../ole"
2728 fi
2729
2730 AC_ARG_WITH(wine-dlls,
2731 [  --with-wine-dlls=DIR      the Wine dlls are in DIR],
2732 [if test "$withval" != "no"; then
2733   WINE_DLLS="$withval";
2734 else
2735   WINE_DLLS="";
2736 fi])
2737 if test -n "$WINE_DLLS"
2738 then
2739   WINE_DLL_ROOT="$WINE_DLLS"
2740 fi
2741
2742 AC_ARG_WITH(wine-tools,
2743 [  --with-wine-tools=DIR     the Wine tools are in DIR],
2744 [if test "$withval" != "no"; then
2745   WINE_TOOLS="$withval";
2746 else
2747   WINE_TOOLS="";
2748 fi])
2749 if test -n "$WINE_TOOLS"
2750 then
2751   WINE_TOOL_PATH="$WINE_TOOLS:$WINE_TOOLS/tools/wrc:$WINE_TOOLS/tools/winebuild"
2752 fi
2753
2754 if test -z "$WINE_INCLUDE_ROOT"
2755 then
2756   WINE_INCLUDE_ROOT=":/usr/include/wine:/usr/local/include/wine:/opt/wine/include:/opt/wine/include/wine";
2757 else
2758   AC_PATH_FILE(WINE_INCLUDE_ROOT,[windef.h],[
2759     AC_MSG_ERROR([Could not find the Wine headers (windef.h)])
2760   ],$WINE_INCLUDE_ROOT)
2761 fi
2762 AC_PATH_HEADER(WINE_INCLUDE_ROOT,[windef.h],[
2763   AC_MSG_ERROR([Could not include the Wine headers (windef.h)])
2764 ],$WINE_INCLUDE_ROOT)
2765 if test -n "$WINE_INCLUDE_ROOT"
2766 then
2767   WINE_INCLUDE_PATH="-I$WINE_INCLUDE_ROOT"
2768 else
2769   WINE_INCLUDE_PATH=""
2770 fi
2771
2772 if test -z "$WINE_LIBRARY_ROOT"
2773 then
2774   WINE_LIBRARY_ROOT=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib"
2775 else
2776   AC_PATH_FILE(WINE_LIBRARY_ROOT,[libwine.so],[
2777     AC_MSG_ERROR([Could not find the Wine libraries (libwine.so)])
2778   ],$WINE_LIBRARY_ROOT)
2779 fi
2780 AC_PATH_LIBRARY(WINE_LIBRARY_ROOT,[-lwine],[],[
2781   AC_MSG_ERROR([Could not link with the Wine libraries (libwine.so)])
2782 ],$WINE_LIBRARY_ROOT)
2783 if test -n "$WINE_LIBRARY_ROOT"
2784 then
2785   WINE_LIBRARY_PATH="-L$WINE_LIBRARY_ROOT"
2786   LD_PATH="$WINE_LIBRARY_ROOT"
2787 else
2788   WINE_LIBRARY_PATH=""
2789 fi
2790
2791 if test -z "$WINE_UNICODE_ROOT"
2792 then
2793   WINE_UNICODE_ROOT=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib"
2794 else
2795   AC_PATH_FILE(WINE_UNICODE_ROOT,[libwine_unicode.so],[
2796     AC_MSG_ERROR([Could not find the Wine libraries (libwine_unicode.so)])
2797   ],$WINE_UNICODE_ROOT)
2798 fi
2799 AC_PATH_LIBRARY(WINE_UNICODE_ROOT,[-lwine_unicode],[$WINE_LIBRARY_PATH -lwine],[
2800   AC_MSG_ERROR([Could not link with the Wine libraries (libwine_unicode.so)])
2801 ],[$WINE_UNICODE_ROOT])
2802
2803 if test -n "$WINE_UNICODE_ROOT" -a "$WINE_UNICODE_ROOT" != "$WINE_LIBRARY_ROOT"
2804 then
2805   WINE_LIBRARY_PATH="$WINE_LIBRARY_PATH -L$WINE_UNICODE_ROOT"
2806   LD_PATH="$LD_PATH:$WINE_UNICODE_ROOT"
2807 fi
2808
2809 if test -z "$WINE_UUID_ROOT"
2810 then
2811   WINE_UUID_ROOT=":/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine:/opt/wine/lib"
2812 else
2813   AC_PATH_FILE(WINE_UUID_ROOT,[libwine_uuid.a],[
2814     AC_MSG_ERROR([Could not find the Wine libraries (libwine_uuid.a)])
2815   ],$WINE_UUID_ROOT)
2816 fi
2817 AC_PATH_LIBRARY(WINE_UUID_ROOT,[-lwine_uuid],[$WINE_LIBRARY_PATH -lwine],[
2818   AC_MSG_ERROR([Could not link with the Wine libraries (libwine_uuid.a)])
2819 ],[$WINE_UUID_ROOT])
2820
2821 if test -n "$WINE_UUID_ROOT" -a "$WINE_UUID_ROOT" != "$WINE_LIBRARY_ROOT"
2822 then
2823   WINE_LIBRARY_PATH="$WINE_LIBRARY_PATH -L$WINE_UUID_ROOT"
2824   LD_PATH="$LD_PATH:$WINE_UUID_ROOT"
2825 fi
2826
2827 if test -z "$WINE_DLL_ROOT"
2828 then
2829   if test -n "$WINE_LIBRARY_ROOT"
2830   then
2831     WINE_DLL_ROOT="$WINE_LIBRARY_ROOT:$WINE_LIBRARY_ROOT/dlls"
2832   else
2833     WINE_DLL_ROOT="/lib:/lib/wine:/usr/lib:/usr/lib/wine:/usr/local/lib:/usr/local/lib/wine"
2834   fi
2835 fi
2836 AC_PATH_FILE(WINE_DLL_ROOT,[libntdll.dll.so],[
2837   AC_MSG_ERROR([Could not find the Wine dlls (libntdll.dll.so)])
2838 ],[$WINE_DLL_ROOT])
2839
2840 AC_PATH_LIBRARY(WINE_DLL_ROOT,[-lntdll.dll],[$WINE_LIBRARY_PATH -lwine -lwine_unicode],[
2841   AC_MSG_ERROR([Could not link with the Wine dlls (libntdll.dll.so)])
2842 ],[$WINE_DLL_ROOT])
2843 WINE_DLL_PATH="-L$WINE_DLL_ROOT/wine"
2844
2845 if test -n "$LD_PATH"
2846 then
2847   LD_PATH="$LD_PATH:$WINE_DLL_ROOT"
2848 else
2849   LD_PATH="$WINE_DLL_ROOT"
2850 fi
2851 LD_PATH="LD_LIBRARY_PATH=\"$LD_PATH:\$\$LD_LIBRARY_PATH\""
2852
2853 if test -z "$WINE_TOOL_PATH"
2854 then
2855   WINE_TOOL_PATH="$PATH:/usr/local/bin:/opt/wine/bin"
2856 fi
2857 AC_PATH_PROG(WINE,wine,,$WINE_TOOL_PATH)
2858 if test -z "$WINE"
2859 then
2860   AC_MSG_ERROR([Could not find Wine's wine tool])
2861 fi
2862 AC_PATH_PROG(WINEBUILD,winebuild,,$WINE_TOOL_PATH)
2863 if test -z "$WINEBUILD"
2864 then
2865   AC_MSG_ERROR([Could not find Wine's winebuild tool])
2866 fi
2867 AC_PATH_PROG(WRC,wrc,,$WINE_TOOL_PATH)
2868 if test -z "$WRC"
2869 then
2870   AC_MSG_ERROR([Could not find Wine's wrc tool])
2871 fi
2872
2873 AC_SUBST(LD_PATH)
2874 AC_SUBST(WINE_INCLUDE_PATH)
2875 AC_SUBST(WINE_LIBRARY_PATH)
2876 AC_SUBST(WINE_DLL_PATH)
2877
2878 dnl **** Try to find where the MFC are located ****
2879 AC_LANG_CPLUSPLUS()
2880
2881 if test "x$NEEDS_MFC" = "x1"
2882 then
2883   ATL_INCLUDE_ROOT="";
2884   ATL_INCLUDE_PATH="";
2885   MFC_INCLUDE_ROOT="";
2886   MFC_INCLUDE_PATH="";
2887   MFC_LIBRARY_ROOT="";
2888   MFC_LIBRARY_PATH="";
2889
2890   AC_ARG_WITH(mfc,
2891   [  --with-mfc=DIR            the MFC package (or sources) is in DIR],
2892   [if test "$withval" != "no"; then
2893     MFC_ROOT="$withval";
2894     ATL_INCLUDES="";
2895     MFC_INCLUDES="";
2896     MFC_LIBRARIES="";
2897   else
2898     MFC_ROOT="";
2899   fi])
2900   if test -n "$MFC_ROOT"
2901   then
2902     ATL_INCLUDE_ROOT="$MFC_ROOT";
2903     MFC_INCLUDE_ROOT="$MFC_ROOT";
2904     MFC_LIBRARY_ROOT="$MFC_ROOT";
2905   fi
2906
2907   AC_ARG_WITH(atl-includes,
2908   [  --with-atl-includes=DIR   the ATL includes are in DIR],
2909   [if test "$withval" != "no"; then
2910     ATL_INCLUDES="$withval";
2911   else
2912     ATL_INCLUDES="";
2913   fi])
2914   if test -n "$ATL_INCLUDES"
2915   then
2916     ATL_INCLUDE_ROOT="$ATL_INCLUDES";
2917   fi
2918
2919   AC_ARG_WITH(mfc-includes,
2920   [  --with-mfc-includes=DIR   the MFC includes are in DIR],
2921   [if test "$withval" != "no"; then
2922     MFC_INCLUDES="$withval";
2923   else
2924     MFC_INCLUDES="";
2925   fi])
2926   if test -n "$MFC_INCLUDES"
2927   then
2928     MFC_INCLUDE_ROOT="$MFC_INCLUDES";
2929   fi
2930
2931   AC_ARG_WITH(mfc-libraries,
2932   [  --with-mfc-libraries=DIR  the MFC libraries are in DIR],
2933   [if test "$withval" != "no"; then
2934     MFC_LIBRARIES="$withval";
2935   else
2936     MFC_LIBRARIES="";
2937   fi])
2938   if test -n "$MFC_LIBRARIES"
2939   then
2940     MFC_LIBRARY_ROOT="$MFC_LIBRARIES";
2941   fi
2942
2943   OLDCPPFLAGS="$CPPFLAGS"
2944   dnl FIXME: We should not have defines in any of the include paths
2945   CPPFLAGS="$WINE_INCLUDE_PATH -I$WINE_INCLUDE_ROOT/msvcrt -D_DLL -D_MT $CPPFLAGS"
2946   ATL_INCLUDE_PATH="-I\$(WINE_INCLUDE_ROOT)/msvcrt -D_DLL -D_MT"
2947   if test -z "$ATL_INCLUDE_ROOT"
2948   then
2949     ATL_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/atl:/usr/include/atl:/usr/local/include/atl:/opt/mfc/include/atl:/opt/atl/include"
2950   else
2951     ATL_INCLUDE_ROOT="$ATL_INCLUDE_ROOT:$ATL_INCLUDE_ROOT/atl:$ATL_INCLUDE_ROOT/atl/include"
2952   fi
2953   AC_PATH_HEADER(ATL_INCLUDE_ROOT,atldef.h,[
2954     AC_MSG_ERROR([Could not find the ATL includes])
2955   ],$ATL_INCLUDE_ROOT)
2956   if test -n "$ATL_INCLUDE_ROOT"
2957   then
2958     ATL_INCLUDE_PATH="$ATL_INCLUDE_PATH -I$ATL_INCLUDE_ROOT"
2959   fi
2960
2961   MFC_INCLUDE_PATH="$ATL_INCLUDE_PATH"
2962   if test -z "$MFC_INCLUDE_ROOT"
2963   then
2964     MFC_INCLUDE_ROOT=":$WINE_INCLUDE_ROOT/mfc:/usr/include/mfc:/usr/local/include/mfc:/opt/mfc/include/mfc:/opt/mfc/include"
2965   else
2966     MFC_INCLUDE_ROOT="$MFC_INCLUDE_ROOT:$MFC_INCLUDE_ROOT/mfc:$MFC_INCLUDE_ROOT/mfc/include"
2967   fi
2968   AC_PATH_HEADER(MFC_INCLUDE_ROOT,afx.h,[
2969     AC_MSG_ERROR([Could not find the MFC includes])
2970   ],$MFC_INCLUDE_ROOT)
2971   if test -n "$MFC_INCLUDE_ROOT" -a "$ATL_INCLUDE_ROOT" != "$MFC_INCLUDE_ROOT"
2972   then
2973     MFC_INCLUDE_PATH="$MFC_INCLUDE_PATH -I$MFC_INCLUDE_ROOT"
2974   fi
2975   CPPFLAGS="$OLDCPPFLAGS"
2976
2977   if test -z "$MFC_LIBRARY_ROOT"
2978   then
2979     MFC_LIBRARY_ROOT=":$WINE_LIBRARY_ROOT:/usr/lib/mfc:/usr/local/lib:/usr/local/lib/mfc:/opt/mfc/lib";
2980   else
2981     MFC_LIBRARY_ROOT="$MFC_LIBRARY_ROOT:$MFC_LIBRARY_ROOT/lib:$MFC_LIBRARY_ROOT/mfc/src";
2982   fi
2983   AC_PATH_LIBRARY(MFC_LIBRARY_ROOT,[-lmfc],[$WINE_LIBRARY_PATH -lwine -lwine_unicode],[
2984     AC_MSG_ERROR([Could not find the MFC library])
2985   ],$MFC_LIBRARY_ROOT)
2986   if test -n "$MFC_LIBRARY_ROOT" -a "$MFC_LIBRARY_ROOT" != "$WINE_LIBRARY_ROOT"
2987   then
2988     MFC_LIBRARY_PATH="-L$MFC_LIBRARY_ROOT"
2989   else
2990     MFC_LIBRARY_PATH=""
2991   fi
2992
2993   AC_SUBST(ATL_INCLUDE_PATH)
2994   AC_SUBST(MFC_INCLUDE_PATH)
2995   AC_SUBST(MFC_LIBRARY_PATH)
2996 fi
2997
2998 AC_LANG_C()
2999
3000 dnl **** Generate output files ****
3001
3002 MAKE_RULES=Make.rules
3003 AC_SUBST_FILE(MAKE_RULES)
3004
3005 AC_OUTPUT([
3006 Make.rules
3007 ##WINEMAKER_PROJECTS##
3008  ])
3009
3010 echo
3011 echo "Configure finished.  Do 'make' to build the project."
3012 echo
3013
3014 dnl Local Variables:
3015 dnl comment-start: "dnl "
3016 dnl comment-end: ""
3017 dnl comment-start-skip: "\\bdnl\\b\\s *"
3018 dnl compile-command: "autoconf"
3019 dnl End:
3020 --- Make.rules.in ---
3021 # Copyright 2000 Francois Gouget for CodeWeavers
3022 # fgouget@codeweavers.com
3023 #
3024 # Global rules shared by all makefiles     -*-Makefile-*-
3025 #
3026 # Each individual makefile must define the following variables:
3027 # TOPOBJDIR    : top-level object directory
3028 # SRCDIR       : source directory for this module
3029 #
3030 # Each individual makefile may define the following additional variables:
3031 #
3032 # SUBDIRS      : subdirectories that contain a Makefile
3033 # DLLS         : WineLib libraries to be built
3034 # EXES         : WineLib executables to be built
3035 #
3036 # CEXTRA       : extra c flags (e.g. '-Wall')
3037 # CXXEXTRA     : extra c++ flags (e.g. '-Wall')
3038 # WRCEXTRA     : extra wrc flags (e.g. '-p _SysRes')
3039 # DEFINES      : defines (e.g. -DSTRICT)
3040 # INCLUDE_PATH : additional include path
3041 # LIBRARY_PATH : additional library path
3042 # LIBRARIES    : additional Unix libraries to link with
3043 #
3044 # C_SRCS       : C sources for the module
3045 # CXX_SRCS     : C++ sources for the module
3046 # RC_SRCS      : resource source files
3047 # SPEC_SRCS    : interface definition files
3048
3049
3050 # Where is Wine
3051
3052 WINE_INCLUDE_ROOT = @WINE_INCLUDE_ROOT@
3053 WINE_INCLUDE_PATH = @WINE_INCLUDE_PATH@
3054 WINE_LIBRARY_ROOT = @WINE_LIBRARY_ROOT@
3055 WINE_LIBRARY_PATH = @WINE_LIBRARY_PATH@
3056 WINE_DLL_ROOT     = @WINE_DLL_ROOT@
3057 WINE_DLL_PATH     = @WINE_DLL_PATH@
3058
3059 LD_PATH           = @LD_PATH@
3060
3061 # Where are the MFC
3062
3063 ATL_INCLUDE_ROOT = @ATL_INCLUDE_ROOT@
3064 ATL_INCLUDE_PATH = @ATL_INCLUDE_PATH@
3065 MFC_INCLUDE_ROOT = @MFC_INCLUDE_ROOT@
3066 MFC_INCLUDE_PATH = @MFC_INCLUDE_PATH@
3067 MFC_LIBRARY_ROOT = @MFC_LIBRARY_ROOT@
3068 MFC_LIBRARY_PATH = @MFC_LIBRARY_PATH@
3069
3070 # First some useful definitions
3071
3072 SHELL     = /bin/sh
3073 CC        = @CC@
3074 CPP       = @CPP@
3075 CXX       = @CXX@
3076 WRC       = @WRC@
3077 CFLAGS    = @CFLAGS@
3078 CXXFLAGS  = @CXXFLAGS@
3079 WRCFLAGS  = -r -L
3080 OPTIONS   = @OPTIONS@ -D_REENTRANT -DWINELIB
3081 LIBS      = @LIBS@ $(LIBRARY_PATH)
3082 ALLFLAGS  = $(DEFINES) -I$(SRCDIR) $(INCLUDE_PATH) $(WINE_INCLUDE_PATH)
3083 ALLCFLAGS = $(CFLAGS) $(CEXTRA) $(OPTIONS) $(ALLFLAGS)
3084 ALLCXXFLAGS=$(CXXFLAGS) $(CXXEXTRA) $(OPTIONS) $(ALLFLAGS)
3085 ALLWRCFLAGS=$(WRCFLAGS) $(WRCEXTRA) $(OPTIONS) $(ALLFLAGS)
3086 DLL_LINK  = $(LIBRARY_PATH) $(LIBRARIES:%=-l%) $(WINE_LIBRARY_PATH) -lwine -lwine_unicode -lwine_uuid
3087 LDCOMBINE = ld -r
3088 LDSHARED  = @LDSHARED@
3089 LDXXSHARED= @LDXXSHARED@
3090 LDDLLFLAGS= @LDDLLFLAGS@
3091 STRIP     = strip
3092 STRIPFLAGS= --strip-unneeded
3093 LN_S      = @LN_S@
3094 RM        = rm -f
3095 MV        = mv
3096 MKDIR     = mkdir -p
3097 WINE      = @WINE@
3098 WINEBUILD = @WINEBUILD@
3099 @SET_MAKE@
3100
3101 # Installation infos
3102
3103 INSTALL         = install
3104 INSTALL_PROGRAM = $(INSTALL)
3105 INSTALL_SCRIPT  = $(INSTALL)
3106 INSTALL_DATA    = $(INSTALL) -m 644
3107 prefix          = @prefix@
3108 exec_prefix     = @exec_prefix@
3109 bindir          = @bindir@
3110 libdir          = @libdir@
3111 infodir         = @infodir@
3112 mandir          = @mandir@
3113 prog_manext     = 1
3114 conf_manext     = 5
3115
3116 OBJS            = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \
3117                   $(SPEC_SRCS:.spec=.spec.o)
3118 CLEAN_FILES     = *.spec.c y.tab.c y.tab.h lex.yy.c \
3119                   core *.orig *.rej \
3120                   \\\#*\\\# *~ *% .\\\#*
3121
3122 # Implicit rules
3123
3124 .SUFFIXES: .cpp .rc .res .spec .spec.c .spec.o
3125
3126 .c.o:
3127         $(CC) -c $(ALLCFLAGS) -o $@ $<
3128
3129 .cpp.o:
3130         $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
3131
3132 .cxx.o:
3133         $(CXX) -c $(ALLCXXFLAGS) -o $@ $<
3134
3135 .rc.res:
3136         $(LD_PATH) $(WRC) $(ALLWRCFLAGS) -o $@ $<
3137
3138 .PHONY: all install uninstall clean distclean depend dummy
3139
3140 # 'all' target first in case the enclosing Makefile didn't define any target
3141
3142 all: Makefile
3143
3144 # Rules for makefile
3145
3146 Makefile: Makefile.in $(TOPSRCDIR)/configure
3147         @echo $@ is older than $?, please rerun $(TOPSRCDIR)/configure
3148         @exit 1
3149
3150 # Rules for cleaning
3151
3152 $(SUBDIRS:%=%/__clean__): dummy
3153         cd `dirname $@` && $(MAKE) clean
3154
3155 $(EXTRASUBDIRS:%=%/__clean__): dummy
3156         -cd `dirname $@` && $(RM) $(CLEAN_FILES)
3157
3158 clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
3159         $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(EXES) $(EXES:%=%.so) $(DLLS)
3160
3161 # Rules for installing
3162
3163 $(SUBDIRS:%=%/__install__): dummy
3164         cd `dirname $@` && $(MAKE) install
3165
3166 $(SUBDIRS:%=%/__uninstall__): dummy
3167         cd `dirname $@` && $(MAKE) uninstall
3168
3169 # Misc. rules
3170
3171 $(SUBDIRS): dummy
3172         @cd $@ && $(MAKE)
3173
3174 dummy:
3175
3176 # End of global rules
3177 --- wineapploader.in ---
3178 #!/bin/sh
3179 #
3180 # Wrapper script to start a Winelib application once it is installed
3181 #
3182 # Copyright (C) 2002 Alexandre Julliard
3183
3184 # determine the app Winelib library name
3185 appname=`basename "$0" .exe`.exe
3186
3187 #allow Wine to load Winelib application from the current directory
3188 export WINEDLLPATH=$WINEDLLPATH:@winelibdir@
3189
3190 # first try explicit WINELOADER
3191 if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
3192
3193 # then default bin directory
3194 if [ -x "@bindir@/wine" ]; then exec "@bindir@/wine" "$appname" "$@"; fi
3195
3196 # now try the directory containing $0
3197 appdir=""
3198 case "$0" in
3199   */*)
3200     # $0 contains a path, use it
3201     appdir=`dirname "$0"`
3202     ;;
3203   *)
3204     # no directory in $0, search in PATH
3205     saved_ifs=$IFS
3206     IFS=:
3207     for d in $PATH
3208     do
3209       IFS=$saved_ifs
3210       if [ -x "$d/$0" ]; then appdir="$d"; break; fi
3211     done
3212     ;;
3213 esac
3214 if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
3215
3216 # finally look in PATH
3217 exec wine "$appname" "$@"
3218 --- wrapper.c ---
3219 /*
3220  * Copyright 2000 Francois Gouget <fgouget@codeweavers.com> for CodeWeavers
3221  */
3222
3223 #ifndef STRICT
3224 #define STRICT
3225 #endif
3226
3227 #include <dlfcn.h>
3228 #include <windows.h>
3229
3230
3231
3232 /*
3233  * Describe the wrapped application
3234  */
3235
3236 /**
3237  * This is either CUIEXE for a console based application or
3238  * GUIEXE for a regular windows application.
3239  */
3240 #define GUIEXE 0
3241 #define CUIEXE 1
3242 #define      APP_TYPE      ##WINEMAKER_APP_TYPE##
3243
3244 /**
3245  * This is the application library's base name, i.e. 'hello' if the
3246  * library is called 'libhello.so'.
3247  */
3248 static char* appName     = ##WINEMAKER_APP_NAME##;
3249
3250 /**
3251  * This is the name of the application's Windows module. If left NULL
3252  * then appName is used.
3253  */
3254 static char* appModule   = NULL;
3255
3256 /**
3257  * This is the application's entry point. This is usually "WinMain" for a
3258  * GUIEXE and 'main' for a CUIEXE application.
3259  */
3260 static char* appInit     = ##WINEMAKER_APP_INIT##;
3261
3262 /**
3263  * This is either non-NULL for MFC-based applications and is the name of the
3264  * MFC's module. This is the module in which we will take the 'WinMain'
3265  * function.
3266  */
3267 static char* mfcModule   = ##WINEMAKER_APP_MFC##;
3268
3269
3270
3271 /*
3272  * Implement the main.
3273  */
3274
3275 #if APP_TYPE == GUIEXE
3276 typedef int WINAPI (*WinMainFunc)(HINSTANCE hInstance, HINSTANCE hPrevInstance,
3277                                   PSTR szCmdLine, int iCmdShow);
3278 #else
3279 typedef int WINAPI (*MainFunc)(int argc, char** argv, char** envp);
3280 #endif
3281
3282 #if APP_TYPE == GUIEXE
3283 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
3284                    PSTR szCmdLine, int iCmdShow)
3285 #else
3286 int WINAPI main(int argc, char** argv, char** envp)
3287 #endif
3288 {
3289     void* appLibrary;
3290     HINSTANCE hApp = 0, hMFC = 0, hMain = 0;
3291     void* appMain;
3292     char* libName;
3293     int retcode;
3294
3295     /* Load the application's library */
3296     libName=(char*)malloc(strlen(appName)+5+3+1);
3297     /* FIXME: we should get the wrapper's path and use that as the base for
3298      * the library
3299      */
3300     sprintf(libName,"./lib%s.so",appName);
3301     appLibrary=dlopen(libName,RTLD_NOW);
3302     if (appLibrary==NULL) {
3303         sprintf(libName,"lib%s.so",appName);
3304         appLibrary=dlopen(libName,RTLD_NOW);
3305     }
3306     if (appLibrary==NULL) {
3307         char format[]="Could not load the %s library:\r\n%s";
3308         char* error;
3309         char* msg;
3310
3311         error=dlerror();
3312         msg=(char*)malloc(strlen(format)+strlen(libName)+strlen(error));
3313         sprintf(msg,format,libName,error);
3314         MessageBox(NULL,msg,"dlopen error",MB_OK);
3315         free(msg);
3316         return 1;
3317     }
3318
3319     /* Then if this application is MFC based, load the MFC module */
3320     /* FIXME: I'm not sure this is really necessary */
3321     if (mfcModule!=NULL) {
3322         hMFC=LoadLibrary(mfcModule);
3323         if (hMFC==NULL) {
3324             char format[]="Could not load the MFC module %s (%d)";
3325             char* msg;
3326
3327             msg=(char*)malloc(strlen(format)+strlen(mfcModule)+11);
3328             sprintf(msg,format,mfcModule,GetLastError());
3329             MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
3330             free(msg);
3331             return 1;
3332         }
3333         /* MFC is a special case: the WinMain is in the MFC library,
3334          * instead of the application's library.
3335          */
3336         hMain=hMFC;
3337     } else {
3338         hMFC=NULL;
3339     }
3340
3341     /* Load the application's module */
3342     if (appModule==NULL) {
3343         appModule=appName;
3344     }
3345     hApp=LoadLibrary(appModule);
3346     if (hApp==NULL) {
3347         char format[]="Could not load the application's module %s (%d)";
3348         char* msg;
3349
3350         msg=(char*)malloc(strlen(format)+strlen(appModule)+11);
3351         sprintf(msg,format,appModule,GetLastError());
3352         MessageBox(NULL,msg,"LoadLibrary error",MB_OK);
3353         free(msg);
3354         return 1;
3355     } else if (hMain==NULL) {
3356         hMain=hApp;
3357     }
3358
3359     /* Get the address of the application's entry point */
3360     appMain=GetProcAddress(hMain, appInit);
3361     if (appMain==NULL) {
3362         char format[]="Could not get the address of %s (%d)";
3363         char* msg;
3364
3365         msg=(char*)malloc(strlen(format)+strlen(appInit)+11);
3366         sprintf(msg,format,appInit,GetLastError());
3367         MessageBox(NULL,msg,"GetProcAddress error",MB_OK);
3368         free(msg);
3369         return 1;
3370     }
3371
3372     /* And finally invoke the application's entry point */
3373 #if APP_TYPE == GUIEXE
3374     retcode=(*((WinMainFunc)appMain))(hApp,hPrevInstance,szCmdLine,iCmdShow);
3375 #else
3376     retcode=(*((MainFunc)appMain))(argc,argv,envp);
3377 #endif
3378
3379     /* Cleanup and done */
3380     FreeLibrary(hApp);
3381     if (hMFC!=NULL) {
3382         FreeLibrary(hMFC);
3383     }
3384     dlclose(appLibrary);
3385     free(libName);
3386
3387     return retcode;
3388 }