Rename base package from `engine` to `php`

This commit is contained in:
Alex Palaistras 2017-01-28 20:57:39 +00:00
parent 7320fffdf5
commit dcdb07961f
12 changed files with 12 additions and 12 deletions

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
// #cgo CFLAGS: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM
// #cgo CFLAGS: -I/usr/include/php/Zend -Iinclude

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
import (
"bytes"

View File

@ -4,7 +4,7 @@
// Package engine provides methods allowing for the initialization and teardown
// of PHP engine bindings, off which execution contexts can be launched.
package engine
package php
// #cgo CFLAGS: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM
// #cgo CFLAGS: -I/usr/include/php/Zend -Iinclude

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
import (
"io/ioutil"

View File

@ -4,7 +4,7 @@
//
// +build php5
package engine
package php
// #cgo CFLAGS: -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM
// #cgo CFLAGS: -I/usr/include/php5/Zend -Iinclude/php5 -Isrc/php5

View File

@ -10,7 +10,7 @@
// +build php7
// +build debian
package engine
package php
// #cgo CFLAGS: -I/usr/include/php/20151012 -Iinclude/php7 -Isrc/php7
// #cgo CFLAGS: -I/usr/include/php/20151012/main -I/usr/include/php/20151012/Zend

View File

@ -4,7 +4,7 @@
//
// +build static
package engine
package php
// #cgo LDFLAGS: -ldl -lm -lssl -lcrypto -lreadline -lresolv -lpcre -lz -lxml2
import "C"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
// #cgo CFLAGS: -Iinclude/php7 -Isrc/php7
// #cgo LDFLAGS: -lphp7

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
// #cgo CFLAGS: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM
// #cgo CFLAGS: -I/usr/include/php/Zend -Iinclude

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
import (
"bytes"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
// #cgo CFLAGS: -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM
// #cgo CFLAGS: -I/usr/include/php/Zend -Iinclude

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package engine
package php
import (
"reflect"