head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2009.02.16.07.18.06; author rse; state Exp; branches; next 1.1; commitid 6eZZZUn1gkXK3DCt; 1.1 date 2009.01.31.11.01.39; author rse; state Exp; branches; next ; commitid aIpT4OYlFBbkOAAt; desc @@ 1.2 log @upgrading package: phc 0.2.0.2 -> 0.2.0.3 @ text @Index: Makefile.in --- Makefile.in.orig 2009-01-14 16:17:21 +0100 +++ Makefile.in 2009-02-15 20:29:24 +0100 @@@@ -568,7 +568,7 @@@@ # 5 or 6 files which require special rules. # -export-dynammic: Special libtool flag for later plugin loading -src_phc_LDFLAGS = -export-dynamic +src_phc_LDFLAGS = -static -export-dynamic src_phc_LDADD = @@gc_lib@@ $(LIBLTDL) libphc.la bin_SCRIPTS = src/phc_compile_plugin libexec_SCRIPTS = libtool Index: src/phc_compile_plugin.in --- src/phc_compile_plugin.in.orig 2009-01-14 15:33:38 +0100 +++ src/phc_compile_plugin.in 2009-02-15 20:29:24 +0100 @@@@ -33,7 +33,7 @@@@ fi # Find the appropriate libtool to use -_ORIGINAL_LIBTOOL="@@libexecdir@@/libtool"; +_ORIGINAL_LIBTOOL="@@libexecdir@@/phc/libtool"; _LIBTOOL=$_ORIGINAL_LIBTOOL # If its not installed there might be a libtool in the current directory if [ ! -x $_LIBTOOL ]; then _LIBTOOL="./libtool"; fi @ 1.1 log @new package: phc 0.2.0.2 (PHP Compiler) @ text @d3 1 a3 1 +++ Makefile.in 2009-01-31 11:10:07 +0100 a12 26 Index: src/embed/embed.cpp --- src/embed/embed.cpp.orig 2009-01-14 15:33:38 +0100 +++ src/embed/embed.cpp 2009-01-31 10:54:50 +0100 @@@@ -269,8 +269,21 @@@@ } void -PHP::set_ini_entry (std::string key, std::string value) +PHP::set_ini_entry (String *key, String *value) { + return; +} + +String_list* +PHP::get_altered_ini_entries () +{ + return (String_list *)0; +} + +String* +PHP::get_ini_entry (String* key) +{ + return (String *)0; } String_list* d15 1 a15 1 +++ src/phc_compile_plugin.in 2009-01-31 11:08:26 +0100 @