IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

AIX Discussion :

Compilation PHP pour IBM HTTP Server (IHS)


Sujet :

AIX

  1. #1
    Nouveau Candidat au Club
    Inscrit en
    Juin 2010
    Messages
    2
    Détails du profil
    Informations forums :
    Inscription : Juin 2010
    Messages : 2
    Points : 1
    Points
    1
    Par défaut Compilation PHP pour IBM HTTP Server (IHS)
    J'essaie de compiler PHP en suivant la démarche fournie par IBM. La configuration est la suivante :

    AIX 5.3
    IHS 7.0
    PHP 5.3.2

    J'ai aussi essayer avec IHS 6.1 et PHP 5.2.13, mais j'obtiens le même résultat.

    Lorsque je fais la configuration avec la commande suivante:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    ./configure –-with-apxs2=/usr/IBM/HTTPServer/bin/apxs -–with-config-file-path=/usr/IBM/HTTPServer/conf –-enable-maintainer-zts
    NOTE: J'ai enlevé la partie "mysql" de la démarche citée, car MySQL ne sera pas utilisé pas ce serveur.

    J'obtiens le résultat suivant (voir à la fin pour message d'erreur):
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
     
    creating cache ./config.cache
    checking for Cygwin environment... no
    checking for mingw32 environment... no
    checking for egrep... grep -E
    checking for a sed that does not truncate output... /usr/bin/sed
    checking host system type... powerpc-ibm-aix5.3.0.0
    checking target system type... powerpc-ibm-aix5.3.0.0
    checking for gcc... gcc
    checking whether the C compiler (gcc  ) works... yes
    checking whether the C compiler (gcc  ) is a cross-compiler... no
    checking whether we are using GNU C... yes
    checking whether gcc accepts -g... yes
    checking how to run the C preprocessor... gcc -E
    checking for icc... no
    checking for suncc... no
    checking whether gcc and cc understand -c and -o together... yes
    checking how to run the C preprocessor... gcc -E
    checking for AIX... yes
    checking whether ln -s works... yes
    checking for system library directory... lib
    checking whether to enable runpaths... yes
    checking if compiler supports -R... no
    checking if compiler supports -Wl,-rpath,... no
    checking for gawk... no
    checking for nawk... nawk
    checking if nawk is broken... no
    checking for bison... no
    checking for byacc... no
    checking for bison version... invalid
    configure: warning: bison versions supported for regeneration of the Zend/PHP parsers: 1.28 1.35 1.75 1.875 2.0 2.1 2.2 2.3 2.4 2.4.1 (found: none).
    checking for re2c... no
    configure: warning: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
    checking whether to enable computed goto gcc extension with re2c... no
    checking whether to force non-PIC code in shared modules... no
    checking whether /dev/urandom exists... yes
    checking for pthreads_cflags... -pthread
    checking for pthreads_lib...
     
    Configuring SAPI modules
    checking for AOLserver support... no
    checking for Apache 1.x module support via DSO through APXS... no
    checking for Apache 1.x module support... no
    checking whether to enable Apache charset compatibility option... no
    checking for Apache 2.0 filter-module support via DSO through APXS... no
    checking for Apache 2.0 handler-module support via DSO through APXS... APACHE_CFLAGS=' -I/usr/IBM/HTTPServer7/include  -U__STR__ -D_THREAD_SAFE -D_USE_IRS -D_LARGEFILE64_SOURCE -I/usr/IBM/HTTPServer7/include   -I/usr/IBM/HTTPServer7/include  '
    APR_BINDIR=/usr/IBM/HTTPServer7/bin
    APR_CFLAGS=' -U__STR__ -D_THREAD_SAFE -D_USE_IRS -D_LARGEFILE64_SOURCE -I/usr/IBM/HTTPServer7/include '
    APR_CONFIG=/usr/IBM/HTTPServer7/bin/apr-1-config
    APU_BINDIR=/usr/IBM/HTTPServer7/bin
    APU_CFLAGS=' -I/usr/IBM/HTTPServer7/include  '
    APU_CONFIG=/usr/IBM/HTTPServer7/bin/apu-1-config
    APXS=/usr/IBM/HTTPServer7/bin/apxs
    APXS_BINDIR=/usr/IBM/HTTPServer7/bin
    APXS_CFLAGS='-O2 -qmaxmem=8192'
    APXS_HTTPD=/usr/IBM/HTTPServer7/bin/httpd
    APXS_INCLUDEDIR=/usr/IBM/HTTPServer7/include
    APXS_MPM=worker
    AUTHSTATE=files
    AWK=nawk
    CC=gcc
    CFLAGS='-g -O2 -fvisibility=hidden'
    CONFIGURE_COMMAND=' '\''./configure'\''  '\''--with-apxs2=/usr/IBM/HTTPServer7/bin/apxs'\'' '\''--with-config-file-path=/usr/IBM/HTTPServer7/conf'\'' '\''--enable-maintainer-zts'\'
    CONFIGURE_OPTIONS=' '\''--with-apxs2=/usr/IBM/HTTPServer7/bin/apxs'\'' '\''--with-config-file-path=/usr/IBM/HTTPServer7/conf'\'' '\''--enable-maintainer-zts'\'
    CONFIG_SITE='/usr/local/share/config.site /usr/local/etc/config.site'
    CPP='gcc -E'
    CYGWIN=''
    ECHO='print -r'
    EGREP='grep -E'
    ENV=/.kshrc
    ERRNO=10
    FCEDIT=/usr/bin/ed
    GCC=yes
    GCC_MAJOR_VERSION=4
    HISTFILE=/var/adm/rootlog/root.amerlae283354.amer.bombardier.com.Jun09.17:18:37.log
    HOME=/
    ICC=no
    IFS='- /.
    '
    LANG=C
    LC__FASTMSG=true
    LIBS=''
    LINENO=6300
    LN_S='ln -s'
    LOCPATH=/usr/lib/nls/loc
    LOGIN=root
    LOGNAME=root
    MAIL=/usr/spool/mail/root
    MAILCHECK=600
    MAILMSG='[YOU HAVE NEW MAIL]'
    MAKEFLAGS=''
    MFLAGS=''
    MINGW32=''
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    ODMDIR=/etc/objrepos
    OPTIND=1
    OVERALL_TARGET=php
    PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java14/jre/bin:/usr/java14/bin:/opt/soe/local/bin:/opt/freeware/bin
    PATH_SEPARATOR=:
    PHP_AOLSERVER=no
    PHP_APACHE=no
    PHP_APXS=no
    PHP_APXS2=/usr/IBM/HTTPServer7/bin/apxs
    PHP_APXS2FILTER=no
    PHP_EXTRA_VERSION=''
    PHP_LIBDIR=lib
    PHP_MAJOR_VERSION=5
    PHP_MINOR_VERSION=3
    PHP_MOD_CHARSET=no
    PHP_RE2C_CGOTO=no
    PHP_RELEASE_VERSION=2
    PHP_RPATH=yes
    PHP_SAPI=default
    PHP_VAR_SUBST=' EGREP SED CONFIGURE_COMMAND CONFIGURE_OPTIONS PHP_MAJOR_VERSION PHP_MINOR_VERSION PHP_RELEASE_VERSION PHP_EXTRA_VERSION AWK YACC RE2C RE2C_FLAGS SHLIB_SUFFIX_NAME SHLIB_DL_SUFFIX_NAME'
    PHP_VERSION=5.3.2
    PHP_VERSION_ID=50302
    PPID=536746
    PS1='root@dcom9902:$PWD > '
    PS2='> '
    PS3='#? '
    PS4='+ '
    PWD=/opt/freeware/php-5.3.2
    RANDOM=13924
    RE2C='exit 0;'
    RE2C_FLAGS=''
    SAPI_LIBTOOL=libphp5.la
    SAPI_SHARED=libs/libphp5.so
    SAPI_STATIC=libs/libphp5.a
    SAVE_LIBS=''
    SECONDS=5
    SED=/usr/bin/sed
    SHELL=/bin/sh
    SHLIB_DL_SUFFIX_NAME=so
    SHLIB_SUFFIX_NAME=so
    SUNCC=no
    TERM=xterm
    TMOUT=0
    TZ=EST5EDT
    T_MD=''
    T_ME=''
    UNAME=AIX
    USER=root
    VISUAL=vi
    YACC='exit 0;'
    _='configure:6232: checking for Apache 2.0 handler-module support via DSO through APXS'
    abs_builddir=/opt/freeware/php-5.3.2
    abs_srcdir=/opt/freeware/php-5.3.2
    ac_IFS='
    '
    ac_arg=--enable-maintainer-zts
    ac_aux_dir=.
    ac_c='\c'
    ac_cc=gcc
    ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
    ac_confdir=.
    ac_config_guess=./config.guess
    ac_config_sub=./config.sub
    ac_configure=./configure
    ac_configure_args=' --with-apxs2=/usr/IBM/HTTPServer7/bin/apxs --with-config-file-path=/usr/IBM/HTTPServer7/conf --enable-maintainer-zts'
    ac_cpp='$CPP $CPPFLAGS'
    ac_cv_cygwin=no
    ac_cv_mingw32=no
    ac_cv_prog_AWK=nawk
    ac_cv_prog_CC=gcc
    ac_cv_prog_CPP='gcc -E'
    ac_cv_prog_LN_S='ln -s'
    ac_cv_prog_cc_cross=no
    ac_cv_prog_cc_g=yes
    ac_cv_prog_cc_gcc_c_o=yes
    ac_cv_prog_cc_works=yes
    ac_cv_prog_egrep='grep -E'
    ac_cv_prog_gcc=yes
    ac_cv_pthreads_cflags=-pthread
    ac_cv_pthreads_lib=''
    ac_default_prefix=/usr/local
    ac_dir=/opt/freeware/bin
    ac_dummy=/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java14/jre/bin:/usr/java14/bin:/opt/soe/local/bin:/opt/freeware/bin
    ac_err=''
    ac_exec_ext=''
    ac_exeext=''
    ac_ext=c
    ac_feature=maintainer_zts
    ac_help='
      --with-libdir=NAME      Look for libraries in .../NAME rather than .../lib
      --disable-rpath         Disable passing additional runtime library
                              search paths
      --enable-re2c-cgoto     Enable -g flag to re2c to use computed goto gcc extension
     
    SAPI modules:
     
      --with-aolserver=DIR    Specify path to the installed AOLserver
      --with-apxs[=FILE]      Build shared Apache 1.x module. FILE is the optional
                              pathname to the Apache apxs tool [apxs]
      --with-apache[=DIR]     Build Apache 1.x module. DIR is the top-level Apache
                              build directory [/usr/local/apache]
      --enable-mod-charset      APACHE: Enable transfer tables for mod_charset (Rus Apache)
      --with-apxs2filter[=FILE]
                              EXPERIMENTAL: Build shared Apache 2.0 Filter module. FILE is the optional
                              pathname to the Apache apxs tool [apxs]
      --with-apxs2[=FILE]     Build shared Apache 2.0 Handler module. FILE is the optional
                              pathname to the Apache apxs tool [apxs]
      --with-apache-hooks[=FILE]
                              EXPERIMENTAL: Build shared Apache 1.x module. FILE is the optional
                              pathname to the Apache apxs tool [apxs]
      --with-apache-hooks-static[=DIR]
                              EXPERIMENTAL: Build Apache 1.x module. DIR is the top-level Apache
                              build directory [/usr/local/apache]
      --enable-mod-charset      APACHE (hooks): Enable transfer tables for mod_charset (Rus Apache)
      --with-caudium[=DIR]    Build PHP as a Pike module for use with Caudium.
                              DIR is the Caudium server dir [/usr/local/caudium/server]
      --disable-cli           Disable building CLI version of PHP
                              (this forces --without-pear)
      --with-continuity=DIR   Build PHP as Continuity Server module.
                              DIR is path to the installed Continuity Server root
      --enable-embed[=TYPE]   EXPERIMENTAL: Enable building of embedded SAPI library
                              TYPE is either '\''shared'\'' or '\''static'\''. [TYPE=shared]
      --with-isapi[=DIR]      Build PHP as an ISAPI module for use with Zeus
      --with-litespeed        Build PHP as litespeed module
      --with-milter[=DIR]     Build PHP as Milter application
      --with-nsapi=DIR        Build PHP as NSAPI module for Netscape/iPlanet/Sun Webserver
      --with-phttpd=DIR       Build PHP as phttpd module
      --with-pi3web[=DIR]     Build PHP as Pi3Web module
      --with-roxen=DIR        Build PHP as a Pike module. DIR is the base Roxen
                              directory, normally /usr/local/roxen/server
      --enable-roxen-zts        ROXEN: Build the Roxen module using Zend Thread Safety
      --with-thttpd=SRCDIR    Build PHP as thttpd module
      --with-tux=MODULEDIR    Build PHP as a TUX module (Linux only)
      --with-webjames=SRCDIR  Build PHP as a WebJames module (RISC OS only)
      --disable-cgi           Disable building CGI version of PHP
     
    General settings:
     
      --enable-gcov           Enable GCOV code coverage (requires LTP) - FOR DEVELOPERS ONLY!!
      --enable-debug          Compile with debugging symbols
      --with-layout=TYPE      Set how installed files will be laid out.  Type can
                              be either PHP or GNU [PHP]
      --with-config-file-path=PATH
                              Set the path in which to look for php.ini [PREFIX/lib]
      --with-config-file-scan-dir=PATH
                              Set the path where to scan for configuration files
      --enable-safe-mode      Enable safe mode by default
      --with-exec-dir[=DIR]   Only allow executables in DIR under safe-mode
                              [/usr/local/php/bin]
      --enable-sigchild       Enable PHP'\''s own SIGCHLD handler
      --enable-magic-quotes   Enable magic quotes by default.
      --enable-libgcc         Enable explicitly linking against libgcc
      --disable-short-tags    Disable the short-form <? start tag by default
      --enable-dmalloc        Enable dmalloc
      --disable-ipv6          Disable IPv6 support
      --enable-fd-setsize     Set size of descriptor sets
     
    Extensions:
     
      --with-EXTENSION=[shared[,PATH]]
     
        NOTE: Not all extensions can be build as '\''shared'\''.
     
        Example: --with-foobar=shared,/usr/local/foobar/
     
          o Builds the foobar extension as shared extension.
          o foobar package install prefix is /usr/local/foobar/
     
     
     --disable-all   Disable all extensions which are enabled by default
     
      --with-regex=TYPE       regex library type: system, php. [TYPE=php]
                              WARNING: Do NOT use unless you know what you are doing!
      --disable-libxml        Disable LIBXML support
      --with-libxml-dir[=DIR]   LIBXML: libxml2 install prefix
      --with-openssl[=DIR]    Include OpenSSL support (requires OpenSSL >= 0.9.6)
      --with-kerberos[=DIR]     OPENSSL: Include Kerberos support
      --with-pcre-regex=DIR   Include Perl Compatible Regular Expressions support.
                              DIR is the PCRE install prefix [BUNDLED]
      --without-sqlite3[=DIR] Do not include SQLite3 support. DIR is the prefix to
                              SQLite3 installation directory.
      --with-zlib[=DIR]       Include ZLIB support (requires zlib >= 1.0.9)
      --with-zlib-dir=<DIR>   Define the location of zlib install directory
      --enable-bcmath         Enable bc style precision math functions
      --with-bz2[=DIR]        Include BZip2 support
      --enable-calendar       Enable support for calendar conversion
      --disable-ctype         Disable ctype functions
      --with-curl[=DIR]       Include cURL support
      --with-curlwrappers     EXPERIMENTAL: Use cURL for url streams
      --enable-dba            Build DBA with bundled modules. To build shared DBA
                              extension use --enable-dba=shared
      --with-qdbm[=DIR]         DBA: QDBM support
      --with-gdbm[=DIR]         DBA: GDBM support
      --with-ndbm[=DIR]         DBA: NDBM support
      --with-db4[=DIR]          DBA: Berkeley DB4 support
      --with-db3[=DIR]          DBA: Berkeley DB3 support
      --with-db2[=DIR]          DBA: Berkeley DB2 support
      --with-db1[=DIR]          DBA: Berkeley DB1 support/emulation
      --with-dbm[=DIR]          DBA: DBM support
      --without-cdb[=DIR]       DBA: CDB support (bundled)
      --disable-inifile         DBA: INI support (bundled)
      --disable-flatfile        DBA: FlatFile support (bundled)
      --disable-dom           Disable DOM support
      --with-libxml-dir[=DIR]   DOM: libxml2 install prefix
      --with-enchant[=DIR]     Include enchant support.
                              GNU Aspell version 1.1.3 or higher required.
      --enable-exif           Enable EXIF (metadata from images) support
      --disable-fileinfo      Disable fileinfo support
      --disable-filter        Disable input filter support
      --with-pcre-dir           FILTER: pcre install prefix
      --enable-ftp            Enable FTP support
      --with-openssl-dir[=DIR]  FTP: openssl install prefix
      --with-gd[=DIR]         Include GD support.  DIR is the GD library base
                              install directory [BUNDLED]
      --with-jpeg-dir[=DIR]     GD: Set the path to libjpeg install prefix
      --with-png-dir[=DIR]      GD: Set the path to libpng install prefix
      --with-zlib-dir[=DIR]     GD: Set the path to libz install prefix
      --with-xpm-dir[=DIR]      GD: Set the path to libXpm install prefix
      --with-freetype-dir[=DIR] GD: Set the path to FreeType 2 install prefix
      --with-t1lib[=DIR]        GD: Include T1lib support. T1lib version >= 5.0.0 required
      --enable-gd-native-ttf    GD: Enable TrueType string function
      --enable-gd-jis-conv      GD: Enable JIS-mapped Japanese font support
      --with-gettext[=DIR]    Include GNU gettext support
      --with-gmp[=DIR]        Include GNU MP support
      --with-mhash[=DIR]      Include mhash support
      --disable-hash          Disable hash support
      --without-iconv[=DIR]   Exclude iconv support
      --with-imap[=DIR]       Include IMAP support. DIR is the c-client install prefix
      --with-kerberos[=DIR]     IMAP: Include Kerberos support. DIR is the Kerberos install prefix
      --with-imap-ssl[=DIR]     IMAP: Include SSL support. DIR is the OpenSSL install prefix
      --with-interbase[=DIR]  Include InterBase support.  DIR is the InterBase base
                              install directory [/usr/interbase]
      --enable-intl           Enable internationalization support
      --with-icu-dir=DIR      Specify where ICU libraries and headers can be found
      --disable-json          Disable JavaScript Object Serialization support
      --with-ldap[=DIR]       Include LDAP support
      --with-ldap-sasl[=DIR]    LDAP: Include Cyrus SASL support
      --enable-mbstring       Enable multibyte string support
      --disable-mbregex         MBSTRING: Disable multibyte regex support
      --disable-mbregex-backtrack
                                MBSTRING: Disable multibyte regex backtrack check
      --with-libmbfl[=DIR]      MBSTRING: Use external libmbfl.  DIR is the libmbfl base
                                install directory [BUNDLED]
      --with-onig[=DIR]         MBSTRING: Use external oniguruma. DIR is the oniguruma install prefix.
                                If DIR is not set, the bundled oniguruma will be used
      --with-mcrypt[=DIR]     Include mcrypt support
      --with-mssql[=DIR]      Include MSSQL-DB support.  DIR is the FreeTDS home
                              directory [/usr/local/freetds]
      --with-mysql[=DIR]      Include MySQL support.  DIR is the MySQL base
                              directory.  If mysqlnd is passed as DIR,
                              the MySQL native driver will be used [/usr/local]
      --with-mysql-sock[=DIR]   MySQL/MySQLi/PDO_MYSQL: Location of the MySQL unix socket pointer.
                                If unspecified, the default locations are searched
      --with-zlib-dir[=DIR]     MySQL: Set the path to libz install prefix
      --with-mysqli[=FILE]    Include MySQLi support.  FILE is the path
                              to mysql_config.  If mysqlnd is passed as FILE,
                              the MySQL native driver will be used [mysql_config]
      --enable-embedded-mysqli  MYSQLi: Enable embedded support
                                Note: Does not work with MySQL native driver!
      --with-oci8[=DIR]       Include Oracle (OCI8) support. DIR defaults to $ORACLE_HOME.
                              Use --with-oci8=instantclient,/path/to/instant/client/lib
                              to use an Oracle Instant Client installation
      --with-adabas[=DIR]     Include Adabas D support [/usr/local]
      --with-sapdb[=DIR]      Include SAP DB support [/usr/local]
      --with-solid[=DIR]      Include Solid support [/usr/local/solid]
      --with-ibm-db2[=DIR]    Include IBM DB2 support [/home/db2inst1/sqllib]
      --with-ODBCRouter[=DIR] Include ODBCRouter.com support [/usr]
      --with-empress[=DIR]    Include Empress support [$EMPRESSPATH]
                              (Empress Version >= 8.60 required)
      --with-empress-bcs[=DIR]
                              Include Empress Local Access support [$EMPRESSPATH]
                              (Empress Version >= 8.60 required)
      --with-birdstep[=DIR]   Include Birdstep support [/usr/local/birdstep]
      --with-custom-odbc[=DIR]
                              Include user defined ODBC support. DIR is ODBC install base
                              directory [/usr/local]. Make sure to define CUSTOM_ODBC_LIBS and
                              have some odbc.h in your include dirs. f.e. you should define
                              following for Sybase SQL Anywhere 5.5.00 on QNX, prior to
                              running this configure script:
                                  CPPFLAGS="-DODBC_QNX -DSQLANY_BUG"
                                  LDFLAGS=-lunix
                                  CUSTOM_ODBC_LIBS="-ldblib -lodbc"
      --with-iodbc[=DIR]      Include iODBC support [/usr/local]
      --with-esoob[=DIR]      Include Easysoft OOB support [/usr/local/easysoft/oob/client]
      --with-unixODBC[=DIR]   Include unixODBC support [/usr/local]
      --with-dbmaker[=DIR]    Include DBMaker support
      --enable-pcntl          Enable pcntl support (CLI/CGI only)
      --disable-pdo           Disable PHP Data Objects support
      --with-pdo-dblib[=DIR]    PDO: DBLIB-DB support.  DIR is the FreeTDS home directory
      --with-pdo-firebird[=DIR] PDO: Firebird support.  DIR is the Firebird base
                                install directory [/opt/firebird]
      --with-pdo-mysql[=DIR]    PDO: MySQL support. DIR is the MySQL base directoy
                                     If mysqlnd is passed as DIR, the MySQL native
                                     native driver will be used [/usr/local]
      --with-zlib-dir[=DIR]       PDO_MySQL: Set the path to libz install prefix
      --with-pdo-oci[=DIR]      PDO: Oracle OCI support. DIR defaults to $ORACLE_HOME.
                                Use --with-pdo-oci=instantclient,prefix,version
                                for an Oracle Instant Client SDK.
                                For Linux with 10.2.0.3 RPMs (for example) use:
                                --with-pdo-oci=instantclient,/usr,10.2.0.3
      --with-pdo-odbc=flavour,dir
                                PDO: Support for '\''flavour'\'' ODBC driver.
                                include and lib dirs are looked for under '\''dir'\''.
     
                                '\''flavour'\'' can be one of:  ibm-db2, iODBC, unixODBC, generic
                                If '\'',dir'\'' part is omitted, default for the flavour
                                you have selected will used. e.g.:
     
                                  --with-pdo-odbc=unixODBC
     
                                will check for unixODBC under /usr/local. You may attempt
                                to use an otherwise unsupported driver using the "generic"
                                flavour.  The syntax for generic ODBC support is:
     
                                  --with-pdo-odbc=generic,dir,libname,ldflags,cflags
     
                                When build as shared the extension filename is always pdo_odbc.so
      --with-pdo-pgsql[=DIR]    PDO: PostgreSQL support.  DIR is the PostgreSQL base
                                install directory or the path to pg_config
      --without-pdo-sqlite[=DIR]
                                PDO: sqlite 3 support.  DIR is the sqlite base
                                install directory [BUNDLED]
      --with-pgsql[=DIR]      Include PostgreSQL support.  DIR is the PostgreSQL
                              base install directory or the path to pg_config
      --disable-phar          Disable phar support
      --disable-posix         Disable POSIX-like functions
      --with-pspell[=DIR]     Include PSPELL support.
                              GNU Aspell version 0.50.0 or higher required
      --with-libedit[=DIR]    Include libedit readline replacement (CLI/CGI only)
      --with-readline[=DIR]   Include readline support (CLI/CGI only)
      --with-recode[=DIR]     Include recode support
      --disable-session       Disable session support
      --with-mm[=DIR]           SESSION: Include mm support for session storage
      --enable-shmop          Enable shmop support
      --disable-simplexml     Disable SimpleXML support
      --with-libxml-dir=DIR     SimpleXML: libxml2 install prefix
      --with-snmp[=DIR]       Include SNMP support
      --with-openssl-dir[=DIR]  SNMP: openssl install prefix
      --enable-ucd-snmp-hack    SNMP: Enable UCD SNMP hack
      --enable-soap           Enable SOAP support
      --with-libxml-dir=DIR     SOAP: libxml2 install prefix
      --enable-sockets        Enable sockets support
      --without-sqlite=DIR    Do not include sqlite support.  DIR is the sqlite base
                              install directory [BUNDLED]
      --enable-sqlite-utf8      SQLite: Enable UTF-8 support for SQLite
      --with-sybase-ct[=DIR]  Include Sybase-CT support.  DIR is the Sybase home
                              directory [/home/sybase]
      --enable-sysvmsg        Enable sysvmsg support
      --enable-sysvsem        Enable System V semaphore support
      --enable-sysvshm        Enable the System V shared memory support
      --with-tidy[=DIR]       Include TIDY support
      --disable-tokenizer     Disable tokenizer support
      --enable-wddx           Enable WDDX support
      --with-libxml-dir=DIR     WDDX: libxml2 install prefix
      --with-libexpat-dir=DIR   WDDX: libexpat dir for XMLRPC-EPI (deprecated)
      --disable-xml           Disable XML support
      --with-libxml-dir=DIR     XML: libxml2 install prefix
      --with-libexpat-dir=DIR   XML: libexpat install prefix (deprecated)
      --disable-xmlreader     Disable XMLReader support
      --with-libxml-dir=DIR     XMLReader: libxml2 install prefix
      --with-xmlrpc[=DIR]     Include XMLRPC-EPI support
      --with-libxml-dir=DIR     XMLRPC-EPI: libxml2 install prefix
      --with-libexpat-dir=DIR   XMLRPC-EPI: libexpat dir for XMLRPC-EPI (deprecated)
      --with-iconv-dir=DIR      XMLRPC-EPI: iconv dir for XMLRPC-EPI
      --disable-xmlwriter     Disable XMLWriter support
      --with-libxml-dir=DIR     XMLWriter: libxml2 install prefix
      --with-xsl[=DIR]        Include XSL support.  DIR is the libxslt base
                              install directory (libxslt >= 1.1.0 required)
      --enable-zip            Include Zip read/write support
      --with-zlib-dir[=DIR]     ZIP: Set the path to libz install prefix
      --with-pcre-dir           ZIP: pcre install prefix
      --disable-mysqlnd-compression-support
                                Enable support for the MySQL compressed protocol in mysqlnd
      --with-zlib-dir[=DIR]       mysqlnd: Set the path to libz install prefix
     
    PEAR:
     
      --with-pear=DIR         Install PEAR in DIR [PREFIX/lib/php]
      --without-pear          Do not install PEAR
     
    Zend:
     
      --with-zend-vm=TYPE     Set virtual machine dispatch method. Type is
                              one of CALL, SWITCH or GOTO [TYPE=CALL]
      --enable-maintainer-zts Enable thread safety - for code maintainers only!!
      --disable-inline-optimization
                              If building zend_execute.lo fails, try this switch
      --enable-zend-multibyte Compile with zend multibyte support
     
    TSRM:
     
      --with-tsrm-pth[=pth-config]
                              Use GNU Pth
      --with-tsrm-st          Use SGI'\''s State Threads
      --with-tsrm-pthreads    Use POSIX threads (default)
     
    Libtool:
     
      --enable-shared[=PKGS]  build shared libraries [default=yes]
      --enable-static[=PKGS]  build static libraries [default=yes]
      --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]
      --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
      --disable-libtool-lock  avoid locking (might break parallel builds)
      --with-pic              try to use only PIC/non-PIC objects [default=use both]
      --with-tags[=TAGS]      include additional configurations [automatic]
     
      --with-gnu-ld           assume the C compiler uses GNU ld [default=no]'
    ac_install_sh='./install-sh -c'
    ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
    ac_max_here_lines=12
    ac_n=''
    ac_objext=o
    ac_optarg=yes
    ac_option=--enable-maintainer-zts
    ac_output=''
    ac_package=config_file_path
    ac_prev=''
    ac_prog=byacc
    ac_save='-g -O2 -fvisibility=hidden'
    ac_save_CFLAGS=''
    ac_save_ifs='
    '
    ac_site_file=/usr/local/etc/config.site
    ac_srcdir_defaulted=yes
    ac_t=''
    ac_test_CFLAGS=''
    ac_try='cc -c conftest.c 1>&5'
    ac_unique_file=README.SVN-RULES
    ac_word=re2c
    arg=--enable-maintainer-zts
    as_dir=/opt/freeware/bin
    as_save_IFS='
    '
    auto_cflags=1
    bindir='${exec_prefix}/bin'
    bison_msg='bison versions supported for regeneration of the Zend/PHP parsers: 1.28 1.35 1.75 1.875 2.0 2.1 2.2 2.3 2.4 2.4.1 (found: none).'
    bison_version=none
    bison_version_list='1.28 1.35 1.75 1.875 2.0 2.1 2.2 2.3 2.4 2.4.1'
    bison_version_vars=''
    build=NONE
    cache_file=./config.cache
    cmd='sed 50q "$0"'
    cross_compiling=no
    cwd=/opt/freeware/php-5.3.2
    datadir='${prefix}/share'
    dir=/usr/ucb
    echo='print -r'
    echo_test_string='#! /bin/sh'
    echo_testing_string='#! /bin/sh'
    enable_maintainer_zts=yes
    exec_prefix=NONE
    ext_output=/usr/IBM/HTTPServer7/bin/apxs
    flag=-qmaxmem=8192
    host=powerpc-ibm-aix5.3.0.0
    host_alias=powerpc-ibm-aix5.3.0.0
    host_cpu=powerpc
    host_os=aix5.3.0.0
    host_vendor=ibm
    includedir='${prefix}/include'
    infodir='${prefix}/info'
    ld_runpath_switch=-L
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localstatedir='${prefix}/var'
    lt_ac_count=11
    lt_ac_max=11
    lt_ac_prog=gsed
    lt_ac_sed=/usr/xpg4/bin/sed
    lt_ac_sed_list=' /usr/bin/sed'
    lt_cv_path_SED=/usr/bin/sed
    lt_cv_sys_path_separator=:
    lt_save_ifs='
    '
    mandir='${prefix}/man'
    no_create=''
    no_recursion=''
    nonopt=NONE
    oldincludedir=/usr/include
    pattern=define
    php_abs_top_builddir=/opt/freeware/php-5.3.2
    php_abs_top_srcdir=/opt/freeware/php-5.3.2
    php_build_target=program
    php_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS)'
    php_c_post=''
    php_c_pre='$(LIBTOOL) --mode=compile $(CC)'
    php_cv_bison_version=invalid
    php_cv_cc_dashr=no
    php_cv_cc_rpath=no
    php_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS)'
    php_cxx_post=''
    php_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)'
    php_enable_mod_charset=no
    php_enable_re2c_cgoto=no
    php_enable_rpath=yes
    php_lo=lo
    php_shtool=./build/shtool
    php_with_aolserver=no
    php_with_apache=no
    php_with_apxs=no
    php_with_apxs2=no
    php_with_apxs2filter=no
    php_with_libdir=lib
    prefix=NONE
    program_prefix=NONE
    program_suffix=NONE
    program_transform_name=s,x,x,
    pthreads_working=yes
    save_CFLAGS='-g -O2 -fvisibility=hidden'
    save_LIBS=''
    sbindir='${exec_prefix}/sbin'
    shared_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) '
    shared_c_post=''
    shared_c_pre='$(LIBTOOL) --mode=compile $(CC)'
    shared_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) '
    shared_cxx_post=''
    shared_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)'
    shared_lo=lo
    sharedstatedir='${prefix}/com'
    silent=''
    site=''
    srcdir=.
    subdirs=''
    sysconfdir='${prefix}/etc'
    tagnames=CXX
    target=powerpc-ibm-aix5.3.0.0
    target_alias=powerpc-ibm-aix5.3.0.0
    target_cpu=powerpc
    target_os=aix5.3.0.0
    target_vendor=ibm
    threads_result='POSIX-Threads found'
    val=''
    var=CXX
    verbose=''
    with_apxs2=/usr/IBM/HTTPServer7/bin/apxs
    with_config_file_path=/usr/IBM/HTTPServer7/conf
    withval=/usr/IBM/HTTPServer7/bin/apxs
    x_includes=NONE
    x_libraries=NONE
    expr: syntax error
    configure: error: You have enabled Apache 2 support while your server is Apache 1.3.  Please use the appropiate switch --with-apxs (without the 2)
    Pourtant il est clair que IHS 7 utilise apache 2.2.8 (Alors que IHS 6.1 quant à lui utilise apache 2.0.47).
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    root@localhost:/usr/IBM/HTTPServer7/bin > ./apachectl -V
    Server version: IBM_HTTP_Server/7.0.0.0 (Unix)
    Apache version: 2.2.8 (with additional fixes)

  2. #2
    Nouveau Candidat au Club
    Inscrit en
    Juin 2010
    Messages
    2
    Détails du profil
    Informations forums :
    Inscription : Juin 2010
    Messages : 2
    Points : 1
    Points
    1
    Par défaut Solution
    Voici la solution Forum IBM (en)

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 15
    Dernier message: 12/10/2012, 08h06
  2. Réponses: 15
    Dernier message: 12/10/2012, 08h06
  3. IBM HTTP SERVER + PHP5
    Par yanis97 dans le forum Apache
    Réponses: 1
    Dernier message: 12/07/2009, 19h09
  4. Sécuriser IBM HTTP Server
    Par lorie52 dans le forum Apache
    Réponses: 11
    Dernier message: 03/06/2009, 16h39
  5. [CSV] Fonction PHP pour SQL Server
    Par wolflinger dans le forum Langage
    Réponses: 2
    Dernier message: 17/05/2006, 12h57

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo