1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
|
#!/usr/bin/perl
'di ';
'ds 00 \"';
'ig 00 ';
use Getopt::Std;
$usage='h2xs [-Aachfm] [-n module_name] [headerfile [extra_libraries]]
-a Omit AutoLoad facilities from .pm file.
-c Omit the constant() function from the XS file.
-A Equivalent to -a -c
-f Force creation of the extension even if the C header does not exist.
-m Also create an old-style Makefile.SH
-h help
-n Specify a name to use for the extension.
extra_libraries are any libraries that might be needed for loading
the extension, e.g. -lm would try to link in the math library.
';
sub usage{ die "Usage: $usage\n" }
getopts("fhcaAmn:") || &usage;
&usage if $opt_h;
if( @ARGV ){
$path_h = shift;
}
elsif( ! @ARGV && ! $opt_n ){
die "Must supply header file or module name\n";
}
$extralibs = "@ARGV";
if( $opt_A ){
$opt_a = $opt_c = 1;
}
$write_makefile_sh = ($opt_m) ? 1 : 0;
if( $path_h ){
$name = $path_h;
if( $path_h =~ s#::#/#g && $opt_n ){
warn "Nesting of headerfile ignored with -n\n";
}
$path_h .= ".h" unless $path_h =~ /\.h$/;
$path_h = "/usr/include/$path_h" unless $path_h =~ m#^[./]#;
die "Can't find $path_h\n" if( ! $opt_f && ! -f $path_h );
}
$module = $opt_n || do {
$name =~ s/\.h$//;
if( $name !~ /::/ ){
$name =~ s#^.*/##;
$name = "\u$name";
}
$name;
};
chdir 'ext' if -d 'ext';
if( $module =~ /::/ ){
$nested = 1;
@modparts = split(/::/,$module);
$modfname = $modparts[-1];
$modpname = join('/',@modparts);
}
else {
$nested = 0;
@modparts = ();
$modfname = $modpname = $module;
}
die "Won't overwrite existing ext/$modpname\n" if -e $modpname;
# quick hack, should really loop over @modparts
mkdir($modparts[0], 0777) if $nested;
mkdir($modpname, 0777);
chdir($modpname) || die "Can't chdir ext/$modpname: $!\n";
open(XS, ">$modfname.xs") || die "Can't create ext/$modpname/$modfname.xs: $!\n";
open(PM, ">$modfname.pm") || die "Can't create ext/$modpname/$modfname.pm: $!\n";
if( -r $path_h ){
open(CH, "<$path_h") || die "Can't open $path_h: $!\n";
while (<CH>) {
if (/^#[ \t]*define\s+(\w+)\b\s*[^("]/) {
$_ = $1;
next if /^_.*_h_*$/i;
$names{$_}++;
@AZ = 'A' .. 'Z' if !@AZ && /^[A-Z]/;
@az = 'a' .. 'z' if !@az && /^[a-z]/;
@under = '_' if !@under && /^_/;
}
}
close(CH);
@names = sort keys %names;
}
$" = "\n\t";
warn "Writing ext/$modpname/$modfname.pm\n";
if( ! $opt_a ){
print PM <<"END";
package $module;
require Exporter;
require AutoLoader;
require DynaLoader;
\@ISA = qw(Exporter AutoLoader DynaLoader);
# Items to export into callers namespace by default
# (move infrequently used names to \@EXPORT_OK below)
\@EXPORT = qw(
@names
);
# Other items we are prepared to export if requested
\@EXPORT_OK = qw(
);
sub AUTOLOAD {
if (\@_ > 1) {
\$AutoLoader::AUTOLOAD = \$AUTOLOAD;
goto &AutoLoader::AUTOLOAD;
}
local(\$constname);
(\$constname = \$AUTOLOAD) =~ s/.*:://;
\$val = constant(\$constname, \@_ ? \$_[0] : 0);
if (\$! != 0) {
if (\$! =~ /Invalid/) {
\$AutoLoader::AUTOLOAD = \$AUTOLOAD;
goto &AutoLoader::AUTOLOAD;
}
else {
(\$pack,\$file,\$line) = caller;
die "Your vendor has not defined $module macro \$constname, used at \$file line \$line.\n";
}
}
eval "sub \$AUTOLOAD { \$val }";
goto &\$AUTOLOAD;
}
bootstrap $module;
# Preloaded methods go here. Autoload methods go after __END__, and are
# processed by the autosplit program.
1;
__END__
END
}
else{
print PM <<"END";
package $module;
require Exporter;
require DynaLoader;
\@ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default
\@EXPORT = qw();
# Other items we are prepared to export if requested
\@EXPORT_OK = qw();
bootstrap $module;
1;
END
}
close PM;
warn "Writing ext/$modpname/$modfname.xs\n";
print XS <<"END";
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
END
if( $path_h ){
my($h) = $path_h;
$h =~ s#^/usr/include/##;
print XS <<"END";
#include <$h>
END
}
if( ! $opt_c ){
print XS <<"END";
static int
not_here(s)
char *s;
{
croak("$module::%s not implemented on this architecture", s);
return -1;
}
static double
constant(name, arg)
char *name;
int arg;
{
errno = 0;
switch (*name) {
END
foreach $letter (@AZ, @az, @under) {
last if $letter eq 'a' && !@names;
print XS " case '$letter':\n";
my($name);
while (substr($names[0],0,1) eq $letter) {
$name = shift(@names);
print XS <<"END";
if (strEQ(name, "$name"))
#ifdef $name
return $name;
#else
goto not_there;
#endif
END
}
print XS <<"END";
break;
END
}
print XS <<"END";
}
errno = EINVAL;
return 0;
not_there:
errno = ENOENT;
return 0;
}
MODULE = $module PACKAGE = $module
double
constant(name,arg)
char * name
int arg
END
}
else{
print XS <<"END";
MODULE = $module PACKAGE = $module
END
}
close XS;
{
warn "Writing ext/$modpname/Makefile.PL\n";
open(PL, ">Makefile.PL") || die "Can't create ext/$modpname/Makefile.PL: $!\n";
# Ideally this should have a #!../.. ... miniperl etc header
print PL <<'END';
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile being created.
END
print PL "&writeMakefile(\n";
print PL " 'potential_libs' => '$extralibs', # e.g., '-lm' \n";
print PL " 'INC' => '', # e.g., '-I/usr/include/other' \n";
print PL " 'DISTNAME' => 'myname',\n";
print PL " 'VERSION' => '0.1',\n";
print PL ");\n";
}
if ($write_makefile_sh){
warn "Writing ext/$modpname/Makefile.SH\n";
open(MF, ">Makefile.SH") || die "Can't create ext/$modpname/Makefile.SH: $!\n";
print MF <<'END';
: This forces SH files to create target in same directory as SH file.
: This is so that make depend always knows where to find SH derivatives.
case "$0" in
*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
esac
if test -f config.sh; then TOP=.;
elif test -f ../config.sh; then TOP=..;
elif test -f ../../config.sh; then TOP=../..;
elif test -f ../../../config.sh; then TOP=../../..;
elif test -f ../../../../config.sh; then TOP=../../../..;
else
echo "Can't find config.sh."; exit 1
fi
: Find absolute path name for TOP. This is needed when we cd to TOP
: to run perl on autosplit.
oldpwd=`pwd`; cd $TOP; ABSTOP=`pwd`; cd $oldpwd
case $CONFIG in
'')
. $TOP/config.sh
;;
esac
: Find out directory name. This is also the extension name.
ext=`pwd | $sed -e 's@.*/@@'`
: This extension might have its own typemap
if test -f typemap; then
exttypemap='typemap'
else
exttypemap=''
fi
: This extension might need additional libraries.
END
print MF "potential_libs=\"$extralibs\"\n";
print MF <<'END';
. $TOP/ext/util/extliblist
: This extension might need bootstrap support
if test -f ${ext}_BS; then
bootdep=${ext}_BS
else
bootdep=''
fi
case "$dlsrc" in
dl_aix*)
echo "#!" > $ext.exp
echo "boot_$ext" >> $ext.exp
;;
esac
echo "Extracting ext/$ext/Makefile (with variable substitutions)"
: This section of the file will have variable substitutions done on it.
: Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
: Protect any dollar signs and backticks that you do not want interpreted
: by putting a backslash in front. You may delete these comments.
$spitshell >Makefile << !GROK!THIS!
#
# This Makefile is for the $ext extension to perl.
#
CC = $cc
RANLIB = $ranlib
TOP = $TOP
ABSTOP = $ABSTOP
LDFLAGS = $ldflags
CLDFLAGS = $ldflags
SMALL = $small
LARGE = $large $split
# To use an alternate make, set \\$altmake in config.sh.
MAKE = ${altmake-make}
EXT = $ext
# $ext might have its own typemap
EXTTYPEMAP = $exttypemap
# $ext might have its own bootstrap support
BOOTDEP = $bootdep
BOOTSTRAP = $ext.bs
# The following are used to build and install shared libraries for
# dynamic loading.
LDDLFLAGS = $lddlflags
CCDLFLAGS = $ccdlflags
CCCDLFLAGS = $cccdlflags
SO = $so
# $ext might need to be linked with some extra libraries.
# EXTRALIBS = full list of libraries needed for static linking.
# Only those libraries that actually exist are included.
# DYNLOADLIBS = list of those libraries that are needed but can be
# linked in dynamically on this platform. On SunOS, for
# example, this would be .so* libraries, but not archive
# libraries. The bootstrap file is installed only if
# this list is not empty.
# STATLOADLIBS = list of those libraries which must be statically
# linked into the shared library. On SunOS 4.1.3,
# for example, I have only an archive version of
# -lm, and it must be linked in statically.
EXTRALIBS = $extralibs
DYNALOADLIBS = $dynaloadlibs
STATLOADLIBS = $statloadlibs
!GROK!THIS!
$spitshell >>Makefile <<'!NO!SUBS!'
# Where to put things:
AUTO = $(TOP)/lib/auto
INSTALLBOOT = $(AUTO)/$(EXT)/$(EXT).bs
INSTALLDYNAMIC = $(AUTO)/$(EXT)/$(EXT).$(SO)
INSTALLSTATIC = $(EXT).a
INSTALLPM = $(TOP)/lib/$(EXT).pm
PERL = $(ABSTOP)/miniperl
XSUBPP = $(TOP)/ext/xsubpp
SHELL = /bin/sh
CCCMD = `sh $(shellflags) $(TOP)/cflags $@`
.c.o:
$(CCCMD) $(CCCDLFLAGS) -I$(TOP) $*.c
all: dynamic
# Phony target to force checking subdirectories.
FORCE:
# Target for Dynamic Loading:
dynamic: $(INSTALLDYNAMIC) $(INSTALLPM) $(INSTALLBOOT)
$(INSTALLDYNAMIC): $(EXT).o
@test -d $(AUTO) || mkdir $(AUTO)
@test -d $(AUTO)/$(EXT) || mkdir $(AUTO)/$(EXT)
ld $(LDDLFLAGS) -o $@ $(EXT).o $(STATLOADLIBS)
$(BOOTSTRAP): Makefile $(BOOTDEP)
$(PERL) -I$(TOP)/lib $(TOP)/ext/util/mkbootstrap $(DYNALOADLIBS)
touch $(BOOTSTRAP)
$(INSTALLBOOT): $(BOOTSTRAP)
@test ! -s $(BOOTSTRAP) || cp $(BOOTSTRAP) $@
# Target for Static Loading:
static: $(INSTALLSTATIC) $(INSTALLPM)
$(INSTALLSTATIC): $(EXT).o
ar cr $@ $(EXT).o
$(RANLIB) $@
echo $(EXTRALIBS) >> $(TOP)/ext.libs
$(EXT).c: $(EXT).xs $(XSUBPP) $(TOP)/ext/typemap $(EXTTYPEMAP) $(TOP)/cflags Makefile
$(PERL) $(XSUBPP) $(EXT).xs >tmp
mv tmp $@
END
if( ! $opt_a ){
print MF <<'END';
$(INSTALLPM): $(EXT).pm
rm -f $@
cp $(EXT).pm $@
cd $(TOP); $(PERL) autosplit $(EXT)
END
}
else {
print MF <<'END';
$(INSTALLPM): $(EXT).pm
cp $(EXT).pm $@
END
}
print MF <<'END';
clean:
rm -f *.o *.a mon.out core $(EXT).c so_locations $(BOOTSTRAP) $(EXT).exp
realclean: clean
rm -f makefile Makefile
rm -f $(INSTALLPM) $(INSTALLDYNAMIC) $(INSTALLSTATIC) $(INSTALLBOOT)
rm -rf $(AUTO)/$(EXT)
purge: realclean
$(EXT).o : $(TOP)/EXTERN.h
$(EXT).o : $(TOP)/perl.h
$(EXT).o : $(TOP)/embed.h
$(EXT).o : $(TOP)/config.h
$(EXT).o : $(TOP)/unixish.h
$(EXT).o : $(TOP)/handy.h
$(EXT).o : $(TOP)/regexp.h
$(EXT).o : $(TOP)/sv.h
$(EXT).o : $(TOP)/util.h
$(EXT).o : $(TOP)/form.h
$(EXT).o : $(TOP)/gv.h
$(EXT).o : $(TOP)/cv.h
$(EXT).o : $(TOP)/opcode.h
$(EXT).o : $(TOP)/op.h
$(EXT).o : $(TOP)/cop.h
$(EXT).o : $(TOP)/av.h
$(EXT).o : $(TOP)/hv.h
$(EXT).o : $(TOP)/mg.h
$(EXT).o : $(TOP)/scope.h
$(EXT).o : $(TOP)/pp.h
$(EXT).o : $(TOP)/proto.h
$(EXT).o : $(TOP)/XSUB.h
Makefile: Makefile.SH $(TOP)/config.sh ; /bin/sh Makefile.SH
$(TOP)/config.h: $(TOP)/config.sh; cd $(TOP); /bin/sh config_h.SH
$(TOP)/embed.h: $(TOP)/config.sh; cd $(TOP); /bin/sh embed_h.SH
$(TOP)/cflags: $(TOP)/config.sh; cd $(TOP); /bin/sh cflags.SH
!NO!SUBS!
chmod 755 Makefile
$eunicefix Makefile
END
close MF;
}
system '/bin/ls > MANIFEST';
# this needs fixing
# system '[ -f Makefile.SH ] && sh Makefile.SH';
# system '[ -f Makefile.PL ] && perl Makefile.PL';
##############################################################################
# These next few lines are legal in both Perl and nroff.
.00 ; # finish .ig
'di \" finish diversion--previous line must be blank
.nr nl 0-1 \" fake up transition to first page again
.nr % 0 \" start at page 1
'; __END__ ############# From here on it's a standard manual page ############
.TH H2XS 1 "August 9, 1994"
.AT 3
.SH NAME
h2xs \- convert .h C header files to Perl extensions
.SH SYNOPSIS
.B h2xs [-Aachfm] [-n module_name] [headerfile [extra_libraries]]
.SH DESCRIPTION
.I h2xs
builds a Perl extension from any C header file. The extension will include
functions which can be used to retrieve the value of any #define statement
which was in the C header.
.PP
The
.I module_name
will be used for the name of the extension. If module_name is not supplied
then the name of the header file will be used, with the first character
capitalized.
.PP
If the extension might need extra libraries, they should be included
here. The extension Makefile.SH will take care of checking whether
the libraries actually exist and how they should be loaded.
The extra libraries should be specified in the form -lm -lposix, etc,
just as on the cc command line. By default, the Makefile.SH will
search through the library path determined by Configure. That path
can be augmented by including arguments of the form -L/another/library/path
in the extra-libraries argument.
.SH OPTIONS
.TP
.B \-f
Allows an extension to be created for a header even if that
header is not found in /usr/include.
.TP
.B \-a
Omit AutoLoad(), AUTOLOAD, and autosplit from the .pm and Makefile files.
.TP
.B \-c
Omit constant() from the .xs file.
.TP
.B \-n module_name
Specifies a name to be used for the extension.
.TP
.B \-A
Turns on both -a and -c.
.TP
.B \-m
Causes an old-style Makefile.SH to be created.
.SH EXAMPLES
.nf
# Default behavior, extension is Rusers
h2xs rpcsvc/rusers
# Same, but extension is RUSERS
h2xs -n RUSERS rpcsvc/rusers
# Extension is rpcsvc::rusers. Still finds <rpcsvc/rusers.h>
h2xs rpcsvc::rusers
# Extension is ONC::RPC. Still finds <rpcsvc/rusers.h>
h2xs -n ONC::RPC rpcsvc/rusers
# Without AUTOLOAD, AutoLoad, autosplit
h2xs -a rpcsvc/rusers
# Creates templates for an extension named RPC
h2xs -Afn RPC
# Extension is ONC::RPC.
h2xs -An ONC::RPC
# Makefile.SH will look for library -lrpc in
# additional directory /opt/net/lib
h2xs rpcsvc/rusers -L/opt/net/lib -lrpc
.fi
.SH ENVIRONMENT
No environment variables are used.
.SH AUTHOR
Larry Wall
.SH "SEE ALSO"
perl(1)
.SH DIAGNOSTICS
The usual warnings if it can't read or write the files involved.
.ex
|