forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtml.C.in
114 lines (111 loc) · 4.32 KB
/
html.C.in
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
// -*- mode: C++ -*-
Bool_t enable_afs = @enable_afs@;
Bool_t enable_alien = @enable_alien@;
Bool_t enable_asimage = @enable_asimage@;
Bool_t enable_cern = @enable_cern@;
Bool_t enable_chirp = @enable_chirp@;
Bool_t enable_clarens = @enable_clarens@;
Bool_t enable_dcache = @enable_dcache@;
Bool_t enable_globus = @enable_globus@;
Bool_t enable_krb5 = @enable_krb5@;
Bool_t enable_ldap = @enable_ldap@;
Bool_t enable_mysql = @enable_mysql@;
Bool_t enable_opengl = @enable_opengl@;
Bool_t enable_oracle = @enable_oracle@;
Bool_t enable_peac = @enable_peac@;
Bool_t enable_pgsql = @enable_pgsql@;
Bool_t enable_pythia6 = @enable_pythia6@;
Bool_t enable_python = @enable_python@;
Bool_t enable_qt = @enable_qt@;
Bool_t enable_ruby = @enable_ruby@;
Bool_t enable_rfio = @enable_rfio@;
Bool_t enable_sapdb = @enable_sapdb@;
Bool_t enable_srp = @enable_srp@;
Bool_t enable_ssl = @enable_ssl@;
Bool_t enable_table = @enable_table@;
Bool_t enable_thread = @enable_thread@;
Bool_t enable_xml = @enable_xml@;
Bool_t enable_xrootd = @enable_xrootd@;
void html()
{
gSystem->Load("libEG");
gSystem->Load("libFumili.so");
gSystem->Load("libGX11.so");
gSystem->Load("libGX11TTF.so");
gSystem->Load("libGed.so");
gSystem->Load("libGeom.so");
gSystem->Load("libGeomPainter.so");
gSystem->Load("libGpad.so");
gSystem->Load("libGraf.so");
gSystem->Load("libGraf3d.so");
gSystem->Load("libGui.so");
gSystem->Load("libGuiBld.so");
gSystem->Load("libHist");
gSystem->Load("libHist.so");
gSystem->Load("libHistPainter");
gSystem->Load("libHtml.so");
gSystem->Load("libMLP.so");
gSystem->Load("libMatrix.so");
gSystem->Load("libMinuit.so");
gSystem->Load("libNew.so");
gSystem->Load("libPhysics");
gSystem->Load("libPostscript.so");
gSystem->Load("libProof");
gSystem->Load("libQuadp.so");
gSystem->Load("libRGL");
gSystem->Load("libRint.so");
gSystem->Load("libSrvAuth.so");
gSystem->Load("libThread");
gSystem->Load("libTree.so");
gSystem->Load("libTreePlayer");
gSystem->Load("libTreeViewer");
gSystem->Load("libTreeViewer.so");
gSystem->Load("libVMC.so");
gSystem->Load("libX3d");
gSystem->Load("libX3d.so");
gSystem->Load("libXMLIO.so");
if (enable_alien) gSystem->Load("libRAliEn");
if (enable_asimage) gSystem->Load("libASImage");
if (enable_cern) gSystem->Load("libHbook");
if (enable_chirp) gSystem->Load("libChirp");
if (enable_clarens) {
gSystem->Load("libClarens");
if (enable_peac) {
gSystem->Load("libPeacGui");
gSystem->Load("libPeac");
}
}
if (enable_dcache) gSystem->Load("libDCache");
if (enable_globus) gSystem->Load("libGlobusAuth");
if (enable_krb5) gSystem->Load("libKrb5Auth");
if (enable_ldap) gSystem->Load("libRLDAP");
if (enable_mysql) gSystem->Load("libMySQL");
if (enable_opengl) gSystem->Load("libRGL");
if (enable_oracle) gSystem->Load("libOracle");
if (enable_pgsql) gSystem->Load("libPgSQL");
if (enable_pythia6) gSystem->Load("libEGPythia6");
if (enable_python) gSystem->Load("libPyROOT");
if (enable_qt) {
gSystem->Load("libGQt");
gSystem->Load("libQtRoot");
}
if (enable_ruby) gSystem->Load("libRuby");
if (enable_rfio) gSystem->Load("libRFIO");
if (enable_sapdb) gSystem->Load("libSapDB");
if (enable_srp) gSystem->Load("libSRPAuth");
if (enable_table) gSystem->Load("libTable");
if (enable_thread) gSystem->Load("libThread");
if (enable_xml) gSystem->Load("libXMLParser");
if (enable_xrootd) {
gSystem->Load("libNetx.so");
gSystem->Load("libXrdOfs");
gSystem->Load("libXrdRootd");
gSystem->Load("libXrdSec.so");
if (enable_krb5) {
gSystem->Load("libXrdSeckrb4");
gSystem->Load("libXrdSeckrb5");
}
}
THtml html;
html.MakeAll();
}