]> git.pld-linux.org Git - packages/php.git/blobdiff - php-sapi-ini-file.patch
- shared libevent (merged again: 1.5 -> 1.6)
[packages/php.git] / php-sapi-ini-file.patch
index 5047b0262ce6b78650335b3dfa9e48327d940e49..1c051b5bb256f09c76b434d2f7ff86fed1fcbfed 100644 (file)
@@ -1,6 +1,6 @@
---- php-5.0.4/main/php_ini.c.orig      2004-09-17 04:48:47.000000000 +0200
-+++ php-5.0.4/main/php_ini.c   2005-04-04 23:07:48.461211584 +0200
-@@ -430,6 +430,24 @@
+--- php-5.2.7/main/php_ini.c   2008-08-14 19:34:30.000000000 +0300
++++ php-5.2.7-inidir/main/php_ini.c    2008-12-05 12:53:24.747685251 +0200
+@@ -474,6 +474,24 @@
                                }
                        }
                }
 +                              fh.filename = php_ini_opened_path = NULL;
 +                      }
 +              }
-               /* Search php-%sapi-module-name%.ini file in search path */
+               /* Otherwise search for php-%sapi-module-name%.ini file in search path */
                if (!fh.handle.fp) {
-                       const char *fmt = "php-%s.ini";
-@@ -441,13 +459,6 @@
+@@ -486,14 +504,6 @@
                                fh.filename = php_ini_opened_path;
                        }
                }
--              /* Search php.ini file in search path */
+-
+-              /* If still no ini file found, search for php.ini file in search path */
 -              if (!fh.handle.fp) {
 -                      fh.handle.fp = php_fopen_with_path("php.ini", "r", php_ini_search_path, &php_ini_opened_path TSRMLS_CC);
 -                      if (fh.handle.fp) {
        }
  
        if (free_ini_search_path) {
+@@ -533,9 +543,13 @@
+       /* Scan and parse any .ini files found in scan path if path not empty. */
+       if (!sapi_module.php_ini_ignore && php_ini_scanned_path_len) {
+               struct dirent **namelist;
+-              int ndir, i;
++              int ndir, i, found = 0;
++              const char *fmt = PHP_CONFIG_FILE_PATH "/%s.d";
++              char *sapi_scan_dir = emalloc(strlen(fmt) + strlen(sapi_module.name));
++              sprintf(sapi_scan_dir, fmt, sapi_module.name);
+               if ((ndir = php_scandir(php_ini_scanned_path, &namelist, 0, php_alphasort)) > 0) {
++                      found += ndir;
+                       for (i = 0; i < ndir; i++) {
+                               /* check for a .ini extension */
+                               if (!(p = strrchr(namelist[i]->d_name, '.')) || (p && strcmp(p, ".ini"))) {
+@@ -556,6 +570,35 @@
+                                                       /* Here, add it to the list of ini files read */
+                                                       l = strlen(ini_file);
+                                                       total_l += l + 2;
++                                                      p = estrndup(ini_file, l); 
++                                                      zend_llist_add_element(&scanned_ini_list, &p);
++                                              }
++                                      }
++                              }
++                              free(namelist[i]);
++                      }
++                      free(namelist);
++              }
++
++              if ((ndir = php_scandir(sapi_scan_dir, &namelist, 0, php_alphasort)) > 0) {
++                      found += ndir;
++
++                      for (i = 0; i < ndir; i++) {
++                              /* check for a .ini extension */
++                              if (!(p = strrchr(namelist[i]->d_name, '.')) || (p && strcmp(p, ".ini"))) {
++                                      free(namelist[i]);
++                                      continue;
++                              }
++                              snprintf(ini_file, MAXPATHLEN, "%s%c%s", sapi_scan_dir, DEFAULT_SLASH, namelist[i]->d_name);
++                              if (VCWD_STAT(ini_file, &sb) == 0) {
++                                      if (S_ISREG(sb.st_mode)) {
++                                              if ((fh.handle.fp = VCWD_FOPEN(ini_file, "r"))) {
++                                                      fh.filename = ini_file;
++                                                      fh.type = ZEND_HANDLE_FP;
++                                                      zend_parse_ini_file(&fh, 1, php_config_ini_parser_cb, &extension_lists);
++                                                      /* Here, add it to the list of ini files read */
++                                                      l = strlen(ini_file);
++                                                      total_l += l + 2;
+                                                       p = estrndup(ini_file, l);
+                                                       zend_llist_add_element(&scanned_ini_list, &p);
+                                               }
+@@ -564,8 +607,11 @@
+                               free(namelist[i]);
+                       }
+                       free(namelist);
++              }
++              efree(sapi_scan_dir);
+-                      /*
++              if (found) {
++                      /* 
+                        * Don't need an extra byte for the \0 in this malloc as the last
+                        * element will not get a trailing , which gives us the byte for the \0
+                        */
This page took 0.029451 seconds and 4 git commands to generate.